* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #1a0f0a 0%, #2d1a10 25%, #3d2415 50%, #4a2d1a 75%, #5a351f 100%);
    background-attachment: fixed;
    min-height: 100vh;
    color: #fff;
    overflow-x: hidden;
}

.pjsk-navigation-top {
    background: rgba(15, 8, 4, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(218, 165, 32, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

.pjsk-nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.pjsk-nav-start {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pjsk-menu-toggle {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 3px;
    cursor: pointer;
    padding: 8px;
}

.pjsk-toggle-line {
    width: 20px;
    height: 2px;
    background: #FFD700;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.pjsk-brand-logo {
    display: flex;
    align-items: center;
}

.pjsk-brand-image {
    height: 32px;
    filter: brightness(1.1);
}

.pjsk-nav-center {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    max-width: 600px;
    margin: 0 20px;
}

.pjsk-search-wrapper {
    position: relative;
    flex: 1;
    max-width: 300px;
}

.pjsk-search-trigger {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #FFD700;
    font-size: 16px;
    cursor: pointer;
    z-index: 2;
}

.pjsk-search-field {
    width: 100%;
    padding: 10px 16px 10px 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.pjsk-search-field:focus {
    border-color: #FFD700;
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.pjsk-bonus-claim-button {
    background: linear-gradient(45deg, #8B4513, #D2691E);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(139, 69, 19, 0.4);
    letter-spacing: 0.5px;
}

.pjsk-bonus-claim-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.6);
}

.pjsk-nav-end {
    display: flex;
    gap: 12px;
}

.pjsk-action-button {
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.pjsk-login-action {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.pjsk-login-action:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #FFD700;
}

.pjsk-signup-action {
    background: linear-gradient(45deg, #DAA520, #FFD700);
    color: #2D1810;
    font-weight: 800;
}

.pjsk-signup-action:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(218, 165, 32, 0.4);
}

.pjsk-app-container {
    display: flex;
    min-height: calc(100vh - 70px);
    position: relative;
}

.pjsk-backdrop-overlay {
    display: none;
    position: fixed;
    inset: 0;
    top: 70px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 999;
}

.pjsk-backdrop-overlay.pjsk-active {
    opacity: 1;
    pointer-events: auto;
}

.pjsk-side-navigation {
    width: 200px;
    background: linear-gradient(180deg, #0f0804 0%, #1a0f0a 50%, #2d1a10 100%);
    border-right: 1px solid rgba(218, 165, 32, 0.25);
    flex-shrink: 0;
    position: relative;
    transition: width 0.3s ease;
    overflow: visible;
    z-index: 100;
}

.pjsk-side-navigation.pjsk-minimized {
    width: 60px;
}

.pjsk-nav-collapse-toggle {
    position: absolute;
    top: 15px;
    right: -15px;
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #DAA520, #FFD700);
    border: 2px solid rgba(255, 215, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 200;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.pjsk-nav-collapse-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(218, 165, 32, 0.4);
}

.pjsk-side-nav-close {
    display: none;
}

.pjsk-collapse-arrow {
    font-size: 12px;
    color: #2D1810;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.pjsk-side-navigation.pjsk-minimized .pjsk-collapse-arrow {
    transform: rotate(180deg);
}

.pjsk-side-menu-list {
    display: flex;
    flex-direction: column;
    padding: 50px 0 10px 0;
}

.pjsk-nav-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
    white-space: nowrap;
    z-index: 50;
}

.pjsk-nav-option:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
}

.pjsk-nav-option.pjsk-active-option {
    background: rgba(218, 165, 32, 0.2);
    color: #FFD700;
    border-left: 3px solid #FFD700;
}

.pjsk-option-symbol {
    font-size: 16px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.pjsk-option-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    opacity: 1;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.pjsk-side-navigation.pjsk-minimized .pjsk-option-label {
    opacity: 0;
    pointer-events: none;
    width: 0;
    overflow: hidden;
    margin: 0;
}

.pjsk-side-navigation.pjsk-minimized .pjsk-nav-option {
    justify-content: center;
    padding: 14px 12px;
    position: relative;
}

.pjsk-side-navigation.pjsk-minimized .pjsk-nav-option::after {
    content: attr(data-hint);
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 8, 4, 0.95);
    color: #DAA520;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    margin-left: 10px;
    border: 1px solid rgba(218, 165, 32, 0.4);
    backdrop-filter: blur(10px);
}

.pjsk-side-navigation.pjsk-minimized .pjsk-nav-option:hover::after {
    opacity: 1;
    visibility: visible;
}

.pjsk-content-area {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.2);
}

.pjsk-promotion-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.pjsk-promo-card {
    position: relative;
    border-radius: 15px;
    padding: 25px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pjsk-promo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pjsk-welcome-offer {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 50%, #CD853F 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.pjsk-cashback-offer {
    background: linear-gradient(135deg, #4682B4 0%, #5F9EA0 50%, #87CEEB 100%);
    border: 2px solid rgba(135, 206, 235, 0.3);
}

.pjsk-highroller-offer {
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 50%, #FFA500 100%);
    border: 2px solid rgba(255, 215, 0, 0.5);
}

.pjsk-promo-details {
    flex: 1;
    z-index: 2;
    max-width: 55%;
}

.pjsk-promo-category {
    font-size: 12px;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.pjsk-promo-headline {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.pjsk-promo-action-btn {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    letter-spacing: 0.5px;
}

.pjsk-promo-action-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.pjsk-promo-hero {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 42%;
    height: 110%;
    pointer-events: none;
    opacity: 0.95;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    margin-left: 0;
}

.pjsk-hero-character {
    width: auto;
    height: 100%;
    object-fit: contain;
    object-position: right bottom;
    border-radius: 0;
    filter: drop-shadow(0 6px 16px rgba(0,0,0,0.4));
}

.pjsk-victory-showcase {
    margin-bottom: 30px;
}

.pjsk-content-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.pjsk-content-title {
    font-size: 24px;
    font-weight: 800;
    color: #FFD700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pjsk-victory-carousel {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 215, 0, 0.3) transparent;
}

.pjsk-victory-carousel::-webkit-scrollbar {
    height: 6px;
}

.pjsk-victory-carousel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.pjsk-victory-carousel::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.3);
    border-radius: 3px;
}

.pjsk-victory-item {
    background: rgba(26, 15, 10, 0.8);
    border: 1px solid rgba(218, 165, 32, 0.3);
    border-radius: 12px;
    padding: 15px;
    min-width: 140px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
}

.pjsk-victory-item:hover {
    transform: translateY(-3px);
    background: rgba(26, 15, 10, 0.9);
    border-color: rgba(218, 165, 32, 0.5);
}

.pjsk-victory-sum {
    font-size: 16px;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 10px;
}

.pjsk-victory-game {
    margin-bottom: 10px;
}

.pjsk-victory-game img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.pjsk-victory-player {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.pjsk-gaming-collection {
    margin-bottom: 40px;
}

.pjsk-gaming-collection .pjsk-content-title::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FFD700;
    margin-right: 8px;
}

.pjsk-content-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pjsk-control-btn {
    background: rgba(26, 15, 10, 0.8);
    border: 1px solid rgba(218, 165, 32, 0.4);
    color: #DAA520;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.pjsk-control-btn:hover {
    background: rgba(218, 165, 32, 0.3);
    border-color: #DAA520;
}

.pjsk-show-all-btn {
    background: linear-gradient(45deg, #DAA520, #FFD700);
    color: #2D1810;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.pjsk-show-all-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(218, 165, 32, 0.4);
}

.pjsk-game-collection {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.pjsk-game-tile {
    background: rgba(26, 15, 10, 0.8);
    border: 1px solid rgba(218, 165, 32, 0.3);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
}

.pjsk-game-tile:hover {
    transform: translateY(-5px);
    background: rgba(26, 15, 10, 0.9);
    border-color: rgba(218, 165, 32, 0.5);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.pjsk-game-preview {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pjsk-game-tile:hover .pjsk-game-preview {
    transform: scale(1.05);
}

.pjsk-game-name {
    padding: 12px 15px 8px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.pjsk-game-studio {
    padding: 0 15px 12px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Article/content section (NL content) */
.pjsk-article-section {
    background: rgba(26, 15, 10, 0.8);
    border: 1px solid rgba(218, 165, 32, 0.3);
    border-radius: 16px;
    padding: 24px;
    margin: 30px 0 20px;
    backdrop-filter: blur(10px);
}

.pjsk-article-section h1,
.pjsk-article-section h2,
.pjsk-article-section h3,
.pjsk-article-section h4,
.pjsk-article-section h5,
.pjsk-article-section h6 {
    line-height: 1.2;
    margin: 14px 0 12px;
}

.pjsk-article-section h1,
.pjsk-article-section h2 { color: #FFD700; }
.pjsk-article-section h3 { color: #DAA520; }

.pjsk-article-section p {
    margin: 12px 0 16px;
    color: rgba(255, 255, 255, 0.92);
}

.pjsk-article-section ul,
.pjsk-article-section ol {
    margin: 12px 0 16px 20px;
    padding-left: 18px;
}

.pjsk-article-section li { margin: 6px 0; }

.pjsk-article-section a {
    color: #FFD700;
    text-decoration: none;
}

.pjsk-article-section a:hover { text-decoration: underline; }

.pjsk-article-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    border: 1px solid rgba(218, 165, 32, 0.25);
    background: rgba(15, 8, 4, 0.6);
    table-layout: auto;
}

.pjsk-article-section thead th {
    background: linear-gradient(45deg, #DAA520, #FFD700);
    color: #2D1810;
    font-weight: 800;
}

.pjsk-article-section th,
.pjsk-article-section td {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(218, 165, 32, 0.2);
    font-size: 13px;
}

.pjsk-article-section tbody tr:nth-child(odd) {
    background: rgba(255, 215, 0, 0.05);
}

.pjsk-article-section strong { color: #FFD700; }

.pjsk-site-footer {
    margin-top: 40px;
    border-top: 1px solid rgba(218, 165, 32, 0.3);
    background: rgba(15, 8, 4, 0.9);
    backdrop-filter: blur(15px);
}

.pjsk-footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.pjsk-footer-start {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pjsk-footer-brand {
    height: 26px;
    filter: brightness(1.1);
}

.pjsk-footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.pjsk-footer-navigation {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.pjsk-footer-nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.pjsk-footer-nav-link:hover {
    color: #FFD700;
    text-decoration: underline;
}

.pjsk-footer-brands {
    padding: 10px 20px 25px;
    border-top: 1px solid rgba(218, 165, 32, 0.15);
}

.pjsk-brand-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.pjsk-brand-tag {
    background: rgba(26, 15, 10, 0.8);
    border: 1px solid rgba(218, 165, 32, 0.3);
    color: rgba(255, 255, 255, 0.85);
    border-radius: 14px;
    padding: 6px 10px;
    font-size: 11px;
}

@media (max-width: 1200px) {
    .pjsk-promotion-showcase {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .pjsk-game-collection {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .pjsk-app-container {
        flex-direction: column;
    }
    
    .pjsk-side-navigation {
        width: 100vw;
        order: 2;
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        z-index: 1001;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
    }
    
    .pjsk-side-navigation.pjsk-mobile-active {
        transform: translateX(0);
    }
    
    .pjsk-side-navigation.pjsk-minimized {
        width: 100vw;
    }
    
    .pjsk-nav-collapse-toggle {
        display: none;
    }

    .pjsk-side-nav-close {
        position: absolute;
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid rgba(255, 215, 0, 0.4);
        background: rgba(15, 8, 4, 0.8);
        color: #FFD700;
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1100;
    }
    
    .pjsk-backdrop-overlay {
        display: block;
        top: 0;
        inset: 0;
    }
    
    .pjsk-nav-wrapper {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .pjsk-nav-center {
        order: 3;
        width: 100%;
        margin: 10px 0 0 0;
    }

    .pjsk-side-navigation .pjsk-option-label {
        opacity: 1 !important;
        width: auto !important;
        pointer-events: auto !important;
        overflow: visible !important;
        margin: 0;
    }
    .pjsk-side-navigation .pjsk-nav-option {
        justify-content: flex-start !important;
        padding: 14px 16px !important;
    }
    
    .pjsk-promotion-showcase {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .pjsk-promo-card {
        min-height: 180px;
        padding: 20px;
    }
    
    .pjsk-promo-headline {
        font-size: 18px;
    }

    .pjsk-promo-details {
        max-width: 60%;
    }

    .pjsk-promo-hero {
        width: 40%;
        height: 100%;
        right: 0;
        bottom: 0;
    }
    
    .pjsk-game-collection {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 12px;
    }
    .pjsk-game-preview {
        height: 180px;
    }
    
    .pjsk-victory-carousel {
        gap: 10px;
    }
    
    .pjsk-victory-item {
        min-width: 120px;
    }
    
    .pjsk-footer-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .pjsk-no-scroll {
        overflow: hidden;
        height: 100vh;
    }
}

@media (max-width: 480px) {
    .pjsk-nav-wrapper {
        padding: 10px 15px;
    }
    
    .pjsk-content-area {
        padding: 15px;
    }
    
    .pjsk-action-button {
        padding: 8px 16px;
        font-size: 11px;
    }
    
    .pjsk-promo-headline {
        font-size: 16px;
    }
    
    .pjsk-promo-details {
        max-width: 65%;
    }

    .pjsk-promo-hero {
        width: 45%;
        height: 100%;
        right: 0;
        bottom: 0;
    }
    
    .pjsk-game-collection {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    .pjsk-game-preview {
        height: 150px;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pjsk-slide-in {
    animation: slideInUp 0.6s ease-out forwards;
    opacity: 0;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 215, 0, 0.5);
}

/* Scoped styles for inserted SK article content */
.pjsk-content-article {
    background: rgba(26, 15, 10, 0.8);
    border: 1px solid rgba(218, 165, 32, 0.3);
    border-radius: 16px;
    padding: 24px;
    margin: 30px 0 20px;
    backdrop-filter: blur(10px);
}

.pjsk-content-article .pjsk-article-body {
    max-width: 100%;
    overflow-x: auto;
}

.pjsk-content-article h1,
.pjsk-content-article h2,
.pjsk-content-article h3,
.pjsk-content-article h4,
.pjsk-content-article h5,
.pjsk-content-article h6 {
    line-height: 1.2;
    margin: 14px 0 12px;
}

.pjsk-content-article h1,
.pjsk-content-article h2 { color: #FFD700; }
.pjsk-content-article h3 { color: #DAA520; }

.pjsk-content-article p {
    margin: 12px 0 16px;
    color: rgba(255, 255, 255, 0.92);
}

.pjsk-content-article ul,
.pjsk-content-article ol {
    margin: 12px 0 16px 20px;
    padding-left: 18px;
}

.pjsk-content-article li { margin: 6px 0; }

.pjsk-content-article a {
    color: #FFD700;
    text-decoration: none;
}

.pjsk-content-article a:hover { text-decoration: underline; }

.pjsk-content-article code {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 4px;
    padding: 0 4px;
    color: #FFD700;
}

.pjsk-content-article table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    border: 1px solid rgba(218, 165, 32, 0.25);
    background: rgba(15, 8, 4, 0.6);
    table-layout: auto;
}

.pjsk-content-article thead th {
    background: linear-gradient(45deg, #DAA520, #FFD700);
    color: #2D1810;
    font-weight: 800;
}

.pjsk-content-article th,
.pjsk-content-article td {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(218, 165, 32, 0.2);
    font-size: 13px;
}

.pjsk-content-article tbody tr:nth-child(odd) {
    background: rgba(255, 215, 0, 0.05);
}

@media (max-width: 768px) {
    .content-article { padding: 20px; }
    .content-article th,
    .content-article td { font-size: 12px; }
}

@media (max-width: 480px) {
    .content-article { padding: 16px; }
}
