/* Critical CSS - Above the fold styles */
/* CSS Variables - Dark Purple Yellow Theme */
:root {
    /* Colors - Dark Purple Yellow Theme */
    --header-background: rgba(42, 10, 26, 0.95); /* #2a0a1a */
    --body-background: #2a0a1a;
    --footer-background: #1f0713;
    --card-background: rgba(62, 14, 36, 0.95); /* #3e0e24 */
    --overlay-background: rgba(42, 10, 26, 0.98);

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #e2e8f0;
    --text-muted: #94a3b8;

    /* Brand Colors */
    --primary-yellow: #ffff00;
    --yellow-dark: #e6e600;
    --yellow-light: #ffff33;
    
    --primary-purple: #3e0e24;
    --purple-light: #5a1a36;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #ffff00 0%, #fde047 100%);
    --gradient-text: linear-gradient(135deg, #ffff00, #fde047);
    --gradient-dark: linear-gradient(135deg, #3e0e24 0%, #2a0a1a 100%);

    /* Borders */
    --border-primary: rgba(255, 255, 0, 0.3);
    --border-secondary: rgba(255, 255, 0, 0.1);
    --border-light: rgba(255, 255, 255, 0.1);

    /* Shadows */
    --shadow-primary: 0 0 20px rgba(255, 255, 0, 0.2);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 15px 40px rgba(255, 255, 0, 0.15);
    
    /* Font Sizes */
    --font-size-h1: 52px;
    --font-size-h2: 38px;
    --font-size-h3: 26px;
    --font-size-h4: 22px;
    --font-size-body: 16px;
    --font-size-small: 14px;
    
    /* Spacing */
    --spacing-xs: 10px;
    --spacing-sm: 18px;
    --spacing-md: 26px;
    --spacing-lg: 36px;
    --spacing-xl: 52px;
    --spacing-xxl: 72px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;
    
    /* Header specific */
    --header-height: 85px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--body-background);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    padding-top: var(--header-height);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

/* ================= HEADER ================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--header-background);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-primary);
    z-index: 1000;
    height: var(--header-height);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    transition: transform 0.3s ease-in-out;
    transform: translateY(0);
}

.header.header-hidden {
    transform: translateY(-100%);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

/* Логотип */
.logo a {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-yellow) !important;
    -webkit-text-fill-color: var(--primary-yellow) !important;
    text-decoration: none;
    letter-spacing: 1px;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    background: transparent;
    border: 2px solid var(--primary-yellow);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.3);
    position: relative;
    overflow: hidden;
    animation: logoPulse 2s ease-in-out infinite;
}

.logo-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 0, 0.3), transparent);
    animation: logoShine 3s ease-in-out infinite;
}

.logo-text:hover {
    background: var(--primary-yellow);
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
    text-decoration: none;
    box-shadow: 0 0 30px rgba(255, 255, 0, 0.6), 0 0 60px rgba(255, 255, 0, 0.3);
    transform: scale(1.05);
    animation: none;
}

.logo-text:hover::before {
    animation: none;
    left: 100%;
}

@keyframes logoPulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(255, 255, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 255, 0, 0.5), 0 0 40px rgba(255, 255, 0, 0.2);
    }
}

@keyframes logoShine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

/* Навигация */
.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.nav-menu ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: var(--spacing-lg);
    margin: 0;
    padding: 0;
    position: relative;
}

.nav-menu ul li a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-body);
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
    white-space: nowrap;
}

.nav-menu ul li a:hover {
    color: var(--primary-yellow);
}

/* Подчеркивание при наведении */
.nav-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-yellow);
    transition: width 0.3s ease;
}

.nav-menu ul li a:hover::after {
    width: 100%;
}

/* Выпадающие меню (Dropdown) */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-arrow {
    font-size: 8px;
    transition: transform 0.3s ease;
    display: inline-block;
    margin-left: 5px;
    opacity: 0.7;
}

@media (min-width: 1025px) {
    .nav-dropdown:hover .dropdown-arrow {
        opacity: 1;
        transform: rotate(180deg);
    }
}

.nav-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background: var(--card-background);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    min-width: 220px;
    padding: 10px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 1px solid var(--border-primary);
    list-style: none;
    display: block;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
}

@media (min-width: 1025px) {
    .dropdown-menu {
        max-height: 0;
        padding: 0;
    }
    
    .nav-dropdown:hover .dropdown-menu {
        max-height: 500px;
        padding: 10px 0;
    }
}

@media (min-width: 1025px) {
    .nav-dropdown:hover .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        pointer-events: auto !important;
    }
    
    .nav-dropdown:hover > a {
        color: var(--primary-yellow);
    }
    
    .nav-dropdown:not(:hover) .dropdown-menu {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
}

@media (max-width: 1024px) {
    .nav-dropdown.active .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        pointer-events: auto !important;
    }
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 0, 0.1);
    color: var(--primary-yellow);
    border-left-color: var(--primary-yellow);
    padding-left: 25px;
}

.dropdown-menu a::after {
    display: none;
}

/* Кнопки в шапке */
.header-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-signup, .btn-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-decoration: none;
    height: 46px;
}

.btn-signup {
    background: var(--primary-yellow) !important;
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 255, 0, 0.3);
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 0, 0.5);
    background: var(--yellow-dark);
}

.btn-login {
    background: transparent;
    color: var(--primary-yellow);
    border: 2px solid var(--primary-yellow);
}

.btn-login:hover {
    background: rgba(255, 255, 0, 0.1);
    color: var(--primary-yellow);
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.burger-menu span {
    width: 100%;
    height: 3px;
    background: var(--primary-yellow);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ================= MOBILE ADAPTATION ================= */
@media (max-width: 1024px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        height: calc(100vh - var(--header-height));
        background: var(--header-background);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        gap: 30px;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        opacity: 0;
        visibility: hidden;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        display: flex;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }

    .nav-menu ul > li {
        width: 100%;
        border-bottom: 1px solid var(--border-light);
    }

    .nav-menu ul li a {
        font-size: 18px;
        color: var(--text-primary);
        padding: 15px 0;
        display: block;
        width: 100%;
    }
    
    .nav-menu ul li a::after {
        display: none;
    }

    .nav-dropdown {
        width: 100%;
    }
    
    .nav-dropdown > a {
        justify-content: space-between;
        width: 100%;
        padding: 15px 0;
    }

    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        display: block !important;
        pointer-events: auto !important;
        min-width: auto !important;
        background: transparent !important;
        width: 100%;
    }

    .nav-dropdown.active .dropdown-menu {
        max-height: 500px;
        padding-top: 10px !important;
    }

    .dropdown-menu li {
        border-bottom: none;
    }

    .dropdown-menu a {
        padding: 12px 20px;
        font-size: 16px;
        color: var(--text-secondary);
    }
    
    .dropdown-menu a:hover {
        background: rgba(255, 255, 0, 0.1);
    }
    
    .dropdown-arrow {
        transition: transform 0.3s ease;
        font-size: 12px;
    }
    
    .nav-dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }

    .header-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        gap: 15px;
        margin-top: 30px;
    }

    .btn-signup, .btn-login {
        width: 100%;
    }

    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

/* ================= HERO SECTION ================= */
.hero {
    margin-top: 0;
    padding: var(--spacing-xxl) 0;
    background: radial-gradient(circle at 50% 50%, rgba(62, 14, 36, 1) 0%, rgba(42, 10, 26, 1) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 7s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -8%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 9s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-25px) translateX(12px);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInUp 0.8s ease-out;
}

.hero-text h1 {
    margin-bottom: var(--spacing-md);
}

.hero-text p {
    margin-bottom: var(--spacing-lg);
    font-size: 18px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .hero {
        padding: var(--spacing-lg) 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
}

.hero-text h1 {
    font-size: var(--font-size-h1);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    color: var(--primary-yellow);
    line-height: 1.15;
    background: none;
    -webkit-text-fill-color: var(--primary-yellow);
}

.hero-text p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

/* ================= BONUS CARD ================= */
.bonus-card {
    background: var(--card-background);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xxl) var(--spacing-xl);
    box-shadow: 0 0 30px rgba(255, 255, 0, 0.1);
    position: relative;
    overflow: hidden;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 420px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.bonus-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.bonus-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 1;
    gap: var(--spacing-lg);
    padding: 0;
    margin: 0;
    flex: 1;
}

.bonus-content h3 {
    font-size: 22px;
    margin: 0;
    color: var(--primary-yellow);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    display: block;
    width: 100%;
}

.bonus-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    margin: 0;
    flex-wrap: wrap;
    width: 100%;
    text-align: center;
    padding: var(--spacing-sm) 0;
}

.percentage {
    font-size: 60px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 0, 0.3);
    line-height: 1;
    letter-spacing: -2px;
    display: inline-block;
    text-align: center;
}

.plus {
    font-size: 42px;
    color: var(--primary-yellow);
    line-height: 1;
    margin: 0 8px;
    font-weight: 700;
    display: inline-block;
    text-align: center;
}

.freespins {
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 255, 0, 0.3);
    display: inline-block;
    text-align: center;
    letter-spacing: 0.5px;
}

.btn-claim {
    width: 100%;
    max-width: 300px;
    padding: 18px 32px;
    background: var(--primary-yellow) !important;
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
    border: none;
    border-radius: var(--radius-xl);
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 255, 0, 0.3);
    margin: 0;
    text-align: center;
    text-decoration: none;
    display: block;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-claim::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn-claim:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(255, 255, 0, 0.5);
    background: var(--yellow-dark);
}

.btn-claim:hover::before {
    width: 300px;
    height: 300px;
}

.btn-claim:active {
    transform: translateY(-1px) scale(0.98);
}

.bonus-terms {
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: 0.3px;
    width: 100%;
    display: block;
}

/* ================= BREADCRUMBS ================= */
.breadcrumbs {
    padding: 16px 0;
    font-size: 14px;
    color: var(--text-muted);
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid var(--border-light);
}

.breadcrumbs ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    margin: 0;
}

.breadcrumb-separator {
    margin: 0 8px;
    color: var(--text-muted);
}

.breadcrumb-current {
    color: var(--primary-yellow);
    font-weight: 600;
}

.breadcrumbs a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--primary-yellow);
    text-decoration: underline;
}

.breadcrumbs span {
    margin: 0 8px;
    color: var(--text-muted);
}

/* ================= CONTENT GENERAL ================= */
.content {
    padding: var(--spacing-xl) 0;
    max-width: 100%;
    position: relative;
}

.content .container {
    max-width: 1140px;
}

.content h1 {
    font-size: var(--font-size-h1);
    color: var(--primary-yellow);
    margin-bottom: 32px;
    margin-top: 0;
    font-weight: 800;
    background: none;
    -webkit-text-fill-color: var(--primary-yellow);
    text-align: center;
}

.content h2 {
    font-size: var(--font-size-h2);
    color: var(--primary-yellow);
    margin-bottom: 22px;
    margin-top: 45px;
}

.content h2:first-of-type {
    margin-top: 0;
}

.content p {
    margin-bottom: 22px;
    color: var(--text-secondary);
    line-height: 1.85;
    text-align: justify;
    text-justify: inter-word;
}

.content ul, .content ol {
    margin-bottom: 22px;
    padding-left: 28px;
    color: var(--text-secondary);
    line-height: 1.85;
}

.content li {
    margin-bottom: 12px;
    position: relative;
}

.content ul li::marker {
    color: var(--primary-yellow);
}

.content ol li {
    padding-left: 6px;
}

.content ul li::before {
    content: '◆';
    color: var(--primary-yellow);
    font-weight: bold;
    position: absolute;
    left: -22px;
    font-size: 10px;
}

/* ================= TABLES ================= */
.content table {
    width: 100%;
    border-collapse: collapse;
    margin: 35px auto;
    background: var(--card-background);
    box-shadow: var(--shadow-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
    border: 1px solid var(--border-light);
}

.content thead {
    background: rgba(0, 0, 0, 0.3);
}

.content th {
    background: transparent;
    color: var(--primary-yellow);
    padding: 20px 16px;
    text-align: left;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: none;
    border-bottom: 1px solid var(--border-light);
}

.content th:first-child {
    border-top-left-radius: var(--radius-lg);
}

.content th:last-child {
    border-top-right-radius: var(--radius-lg);
}

.content td {
    padding: 18px 16px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-secondary);
    vertical-align: top;
}

.content tbody tr {
    transition: all 0.3s ease;
}

.content tbody tr:hover {
    background: rgba(255, 255, 0, 0.05);
    transform: scale(1.01);
}

.content tbody tr:last-child td {
    border-bottom: none;
}

.content tbody tr:last-child:hover {
    border-bottom-left-radius: var(--radius-lg);
    border-bottom-right-radius: var(--radius-lg);
}

/* ================= FOOTER ================= */
.footer {
    background: var(--footer-background);
    padding: 65px 0 35px;
    border-top: 1px solid var(--border-primary);
    margin-top: 90px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--primary-yellow);
    opacity: 0.3;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 45px;
    margin-bottom: 45px;
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.footer-links h4 {
    color: var(--primary-yellow);
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 10px;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--primary-yellow);
}

.footer-logo-text {
    font-size: 20px;
    font-weight: 900;
    color: var(--primary-yellow) !important;
    -webkit-text-fill-color: var(--primary-yellow) !important;
    text-decoration: none;
    letter-spacing: 1px;
    display: inline-block;
    text-transform: uppercase;
    background: transparent;
    border: 2px solid var(--primary-yellow);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    box-shadow: 0 0 10px rgba(255, 255, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: logoPulse 2.5s ease-in-out infinite;
}

.footer-logo-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 0, 0.3), transparent);
    animation: logoShine 4s ease-in-out infinite;
}

.footer-logo-text:hover {
    background: var(--primary-yellow);
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
    box-shadow: 0 0 25px rgba(255, 255, 0, 0.5), 0 0 50px rgba(255, 255, 0, 0.25);
    transform: scale(1.03);
    animation: none;
}

.footer-logo-text:hover::before {
    animation: none;
}

.footer-about {
    color: var(--text-secondary);
    line-height: 1.85;
    text-align: justify;
}

@media (max-width: 768px) {
    .footer-about {
        text-align: left;
    }
}

.footer-disclaimer {
    margin-top: 45px;
    padding-top: 35px;
    border-top: 1px solid var(--border-light);
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ================= BUTTONS ================= */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 16px 36px;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-decoration: none !important;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before, .btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn-primary:hover::before, .btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--primary-yellow) !important;
    color: #000000 !important;
    box-shadow: 0 4px 15px rgba(255, 255, 0, 0.3);
    -webkit-text-fill-color: #000000 !important;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 0, 0.4);
    background: var(--yellow-dark) !important;
}

.btn-secondary {
    background: transparent;
    color: #ffffff !important;
    border: 2px solid var(--primary-yellow);
    box-shadow: none;
    -webkit-text-fill-color: #ffffff !important;
}

.btn-secondary:hover {
    background: var(--primary-yellow);
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 255, 0, 0.2);
}

.content-buttons {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    margin: 35px 0;
    justify-content: center;
}

.hero-buttons {
    justify-content: flex-start;
}

@media (max-width: 768px) {
    .hero-buttons {
        justify-content: center;
    }
}

/* ================= FAQ ================= */
.faq {
    padding: var(--spacing-xxl) 0;
    background: rgba(0, 0, 0, 0.2);
    margin-top: 0;
}

.section-title {
    font-size: var(--font-size-h2);
    color: var(--primary-yellow);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    margin-top: 0;
    font-weight: 800;
    position: relative;
    padding-bottom: 22px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 4px;
    background: var(--primary-yellow);
    border-radius: 2px;
}

.faq-container {
    max-width: 920px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-background);
    border-radius: var(--radius-lg);
    margin-bottom: 18px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.faq-question {
    padding: 22px 26px 14px 26px;
}

.faq-question h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.faq-toggle {
    display: none;
}

.faq-answer {
    padding: 0 26px 22px 26px;
    display: block;
}

.faq-answer p {
    padding: 0;
    margin: 0 0 14px 0;
    color: var(--text-secondary);
    line-height: 1.75;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer a {
    color: var(--primary-yellow);
    text-decoration: underline;
}

.faq-answer a:hover {
    color: var(--yellow-light);
}

/* ================= CONTENT NAVIGATION ================= */
.content-navigation {
    background: var(--card-background);
    border-radius: var(--radius-lg);
    padding: 16px var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-primary);
    animation: fadeInUp 0.5s ease-out;
    position: relative !important;
    z-index: 1;
    transition: all 0.3s ease-in-out;
    width: 100%;
    box-sizing: border-box;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    cursor: default;
    overflow: hidden;
}

.content-navigation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-yellow);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.content-navigation:not(.collapsed)::before {
    opacity: 1;
}

.content-navigation:not(.collapsed) {
    padding: var(--spacing-lg);
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.3);
    margin-bottom: var(--spacing-xl);
    background: var(--card-background);
    border-color: var(--primary-yellow);
}

.content-navigation.collapsed {
    padding: 16px var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.content-navigation.collapsed:hover {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-yellow);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .content-navigation {
        position: static !important;
        padding: var(--spacing-md);
        top: auto !important;
        transform: none !important;
    }
    
    .content-navigation:not(.collapsed) {
        padding: var(--spacing-md);
    }
}

.content-nav-header {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    user-select: none;
    padding: 16px 20px;
    margin: -14px -20px 0 -20px;
    min-height: 58px;
    transition: all 0.2s ease;
    border-radius: var(--radius-md);
    position: relative;
    gap: 14px;
}

.content-nav-header:hover {
    background: rgba(255, 255, 0, 0.05);
}

.content-nav-header:hover .content-nav-title::before {
    opacity: 1;
    transform: scale(1.15);
}

.content-navigation.collapsed .content-nav-header:hover .content-nav-title::before {
    transform: rotate(-90deg) scale(1.15);
}

.content-navigation.collapsed .content-nav-header {
    margin-bottom: 0;
}

.content-nav-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--primary-yellow);
    background: none;
    -webkit-text-fill-color: var(--primary-yellow);
    margin: 0;
    line-height: 1.4;
    letter-spacing: -0.2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
}

.content-nav-title::before {
    content: '▼';
    font-size: 16px;
    color: var(--primary-yellow);
    opacity: 0.8;
    -webkit-text-fill-color: initial;
    font-weight: bold;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    display: inline-block;
    transform: rotate(0deg);
    line-height: 1;
}

.content-navigation.collapsed .content-nav-title::before {
    transform: rotate(-90deg);
    opacity: 0.6;
}

.content-navigation.collapsed .content-nav-title {
    font-size: 17px;
}

.content-navigation.collapsed .content-nav-title::before {
    font-size: 14px;
}

@media (max-width: 768px) {
    .content-nav-title {
        font-size: 17px;
        gap: 10px;
    }
    
    .content-nav-title::before {
        font-size: 14px;
    }
    
    .content-navigation.collapsed .content-nav-title {
        font-size: 16px;
    }
    
    .content-navigation.collapsed .content-nav-title::before {
        font-size: 13px;
    }
    
    .content-nav-header {
        padding: 14px 18px;
        margin: -14px -18px 0 -18px;
        min-height: 54px;
        gap: 10px;
    }
    
    .content-nav-list a {
        padding: 12px 18px;
        margin-left: -18px;
        padding-left: 18px;
        font-size: 14px;
    }
    
    .content-nav-list a:hover {
        padding-left: 22px;
    }
}

.content-nav-toggle {
    display: none;
    visibility: hidden;
}

.content-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    display: none;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.3s ease-in-out, 
                margin 0.3s ease-in-out, 
                padding 0.3s ease-in-out,
                visibility 0s linear 0.4s;
}

.content-navigation:not(.collapsed) .content-nav-list {
    display: block !important;
    padding: var(--spacing-md) 0 0 0;
    margin: var(--spacing-md) 0 0 0;
    max-height: 1000px;
    opacity: 1;
    visibility: visible;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.3s ease-in-out 0.1s, 
                margin 0.3s ease-in-out, 
                padding 0.3s ease-in-out,
                visibility 0s linear 0s;
}

.content-navigation.collapsed .content-nav-list {
    max-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 0 !important;
    overflow: hidden !important;
    visibility: hidden !important;
    display: none !important;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.2s ease-in-out, 
                margin 0.3s ease-in-out, 
                padding 0.3s ease-in-out,
                visibility 0s linear 0.3s;
}

.content-nav-list li {
    margin-bottom: 10px;
}

.content-nav-list li:last-child {
    margin-bottom: 0;
}

.content-nav-list a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 14px 20px;
    display: block;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 3px solid transparent;
    border-radius: var(--radius-sm);
    margin-left: -20px;
    padding-left: 20px;
    position: relative;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.5;
}

.content-nav-list a::before {
    content: '◆';
    color: var(--primary-yellow);
    font-weight: bold;
    position: absolute;
    left: 2px;
    opacity: 0;
    transition: all 0.25s ease;
    transform: translateX(-5px);
    font-size: 10px;
}

.content-nav-list a:hover {
    color: var(--primary-yellow);
    background: rgba(255, 255, 0, 0.05);
    border-left-color: var(--primary-yellow);
    transform: translateX(5px);
    padding-left: 24px;
    font-weight: 600;
}

.content-nav-list a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.content-nav-list a:active {
    transform: translateX(3px);
}

/* ================= REVIEWS ================= */
.reviews {
    padding: var(--spacing-xxl) 0;
    background: rgba(0, 0, 0, 0.2);
    margin-top: 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.review-card {
    background: var(--card-background);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--border-primary);
}

.review-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.avatar {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-full);
    background: var(--primary-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.review-header-info {
    flex: 1;
}

.reviewer-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.stars {
    color: var(--primary-yellow);
    font-size: 16px;
    margin-bottom: 4px;
}

.review-date {
    font-size: 12px;
    color: var(--text-muted);
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.75;
    margin: 0;
}

/* ================= MOBILE ADAPTATION - ENHANCED ================= */
@media (max-width: 1024px) {
    .hero-content {
        gap: var(--spacing-lg);
    }
    
    .content-navigation {
        padding: var(--spacing-md);
    }
    
    .reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --font-size-h1: 38px;
        --font-size-h2: 30px;
        --font-size-h3: 22px;
        --spacing-xl: 36px;
        --spacing-xxl: 52px;
    }
    
    .hero-text h1 {
        font-size: 34px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .content h1 {
        font-size: 34px;
        text-align: left;
    }
    
    .content h2 {
        font-size: 26px;
        margin-top: 38px;
        margin-bottom: 18px;
    }
    
    .content h2:first-of-type {
        margin-top: 0;
    }
    
    .content p {
        text-align: left;
        text-justify: none;
        margin-bottom: 18px;
        line-height: 1.75;
    }
    
    .content h3 {
        font-size: 20px;
    }
    
    .bonus-card {
        padding: var(--spacing-lg);
        min-height: 360px;
        text-align: center;
    }
    
    .bonus-content {
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .bonus-content h3 {
        font-size: 20px;
        margin: 0;
        text-align: center;
        letter-spacing: 1px;
    }
    
    .bonus-amount {
        gap: 6px;
        margin: 0;
        text-align: center;
        justify-content: center;
    }
    
    .percentage {
        font-size: 48px;
        text-align: center;
    }
    
    .plus {
        font-size: 32px;
        margin: 0 4px;
        text-align: center;
    }
    
    .freespins {
        font-size: 26px;
        text-align: center;
    }
    
    .btn-claim {
        padding: 16px 26px;
        font-size: 15px;
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }
    
    .bonus-terms {
        text-align: center;
        width: 100%;
    }
    
    .content table {
        font-size: 14px;
        display: block;
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
    }
    
    .content thead {
        display: none;
    }
    
    .content tbody {
        display: block;
        width: 100%;
    }
    
    .content tr {
        display: block;
        width: 100%;
        margin-bottom: 22px;
        border: 1px solid var(--border-light);
        border-radius: var(--radius-lg);
        padding: 18px;
        background: var(--card-background);
        box-shadow: var(--shadow-card);
        box-sizing: border-box;
    }
    
    .content td {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 14px 0;
        text-align: left;
        border: none;
        border-bottom: 1px solid var(--border-light);
        position: relative;
        box-sizing: border-box;
    }
    
    .content td:first-child {
        padding-top: 0;
        font-weight: 700;
        color: var(--primary-yellow);
        font-size: 16px;
        border-bottom: 2px solid var(--border-primary);
        margin-bottom: 12px;
        padding-bottom: 12px;
    }
    
    .content td:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .content td::before {
        content: attr(data-label);
        display: block;
        font-weight: 600;
        color: var(--primary-yellow);
        margin-bottom: 6px;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.6px;
        opacity: 0.8;
    }
    
    .content td:first-child::before {
        display: none;
    }
    
    .content th,
    .content td {
        font-size: 14px;
        line-height: 1.65;
    }
    
    .content tr:last-child td:last-child {
        border-bottom: none;
    }
    
    .content-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        padding: 16px 26px;
        font-size: 14px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-item {
        margin-bottom: 14px;
    }
    
    .faq-question {
        padding: 18px 22px;
    }
    
    .faq-question h3 {
        font-size: 16px;
        padding-right: 14px;
    }
    
    .faq-toggle {
        font-size: 20px;
        width: 20px;
        height: 20px;
    }
    
    .faq-answer {
        padding: 0 22px 18px 22px;
    }
    
    .faq-answer p {
        font-size: 14px;
        line-height: 1.65;
        margin-bottom: 12px;
    }
    
    .content-navigation {
        margin-bottom: var(--spacing-lg);
    }
    
    .content-nav-title {
        font-size: 17px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .bonus-amount {
        flex-direction: row;
        gap: 6px;
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .bonus-card {
        padding: var(--spacing-md);
        min-height: 340px;
        text-align: center;
    }
    
    .bonus-content {
        gap: var(--spacing-sm);
        text-align: center;
    }
    
    .bonus-content h3 {
        font-size: 18px;
        letter-spacing: 1px;
    }
    
    .bonus-amount {
        gap: 5px;
        justify-content: center;
        text-align: center;
    }
    
    .percentage {
        font-size: 42px;
    }
    
    .plus {
        font-size: 28px;
        margin: 0 4px;
    }
    
    .freespins {
        font-size: 22px;
    }
    
    .btn-claim {
        padding: 15px 22px;
        font-size: 14px;
        max-width: 100%;
    }
    
    .bonus-terms {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 18px;
    }
    
    .hero {
        padding: 32px 0;
    }
    
    .hero::before,
    .hero::after {
        display: none;
    }
    
    .content {
        padding: 32px 0;
    }
    
    .content .container {
        padding: 0 18px;
    }
    
    .hero-text h1 {
        font-size: 30px;
        line-height: 1.25;
    }
    
    .content h1 {
        font-size: 30px;
        line-height: 1.25;
    }
    
    .content h2 {
        font-size: 24px;
        line-height: 1.35;
    }
    
    .bonus-card {
        padding: var(--spacing-md);
        min-height: 320px;
        text-align: center;
    }
    
    .bonus-content {
        gap: var(--spacing-sm);
        text-align: center;
    }
    
    .bonus-content h3 {
        font-size: 17px;
        text-align: center;
    }
    
    .bonus-amount {
        gap: 4px;
        justify-content: center;
        text-align: center;
    }
    
    .percentage {
        font-size: 40px;
        text-align: center;
    }
    
    .plus {
        font-size: 28px;
        margin: 0 3px;
        text-align: center;
    }
    
    .freespins {
        font-size: 22px;
        text-align: center;
    }
    
    .btn-claim {
        padding: 14px 20px;
        font-size: 14px;
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }
    
    .bonus-terms {
        font-size: 11px;
        text-align: center;
    }
    
    .content table {
        font-size: 13px;
        display: block;
        width: 100%;
        margin: 22px 0;
    }
    
    .content thead {
        display: none;
    }
    
    .content tbody {
        display: block;
        width: 100%;
    }
    
    .content tr {
        display: block;
        margin-bottom: 18px;
        border: 1px solid var(--border-light);
        border-radius: var(--radius-lg);
        padding: 16px;
        background: var(--card-background);
        box-shadow: var(--shadow-card);
        width: 100%;
        box-sizing: border-box;
    }
    
    .content td {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 12px 0;
        text-align: left;
        border: none;
        border-bottom: 1px solid var(--border-light);
        box-sizing: border-box;
    }
    
    .content td:first-child {
        padding-top: 0;
        font-weight: 700;
        color: var(--primary-yellow);
        font-size: 15px;
        border-bottom: 2px solid var(--border-primary);
        margin-bottom: 12px;
        padding-bottom: 12px;
    }
    
    .content td:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .content td::before {
        content: attr(data-label);
        display: block;
        font-weight: 600;
        color: var(--primary-yellow);
        margin-bottom: 6px;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        opacity: 0.8;
    }
    
    .content td:first-child::before {
        display: none;
    }
    
    .content th,
    .content td {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .nav-menu ul {
        gap: 15px;
    }
    
    .nav-menu ul li a {
        font-size: 16px;
    }
    
    .header-buttons {
        gap: 10px;
    }
    
    .btn-signup, .btn-login {
        font-size: 12px;
        padding: 10px 18px;
        height: 40px;
    }
    
    .content-buttons {
        gap: 16px;
        margin: 28px 0;
    }
    
    .btn-primary, .btn-secondary {
        font-size: 14px;
        padding: 14px 22px;
        width: 100%;
        text-align: center;
    }
    
    .content-buttons a {
        flex: 1;
        min-width: 0;
    }
}

/* ================= ANIMATIONS ================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 255, 0, 0.35);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 6px 25px rgba(255, 255, 0, 0.5);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.hero-content {
    animation: fadeInUp 0.6s ease-out;
}

.bonus-card {
    animation: fadeInUp 0.8s ease-out;
}

.review-card {
    animation: fadeInUp 0.5s ease-out;
}

.review-card {
    opacity: 0;
}

.review-card:nth-child(1) { animation-delay: 0.1s; }
.review-card:nth-child(2) { animation-delay: 0.2s; }
.review-card:nth-child(3) { animation-delay: 0.3s; }
.review-card:nth-child(4) { animation-delay: 0.4s; }
.review-card:nth-child(5) { animation-delay: 0.5s; }
.review-card:nth-child(6) { animation-delay: 0.6s; }

.review-card.active {
    opacity: 1;
    animation: fadeInUp 0.5s ease-out forwards;
}

/* Image enhancements */
.content img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 35px auto;
}

.content img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

/* Enhanced table hover effects */
.content tbody tr {
    transition: all 0.3s ease;
}

.content tbody tr:hover {
    background: rgba(255, 255, 0, 0.04);
    transform: translateX(5px);
}

/* Link enhancements */
.content a {
    color: var(--primary-yellow);
    text-decoration: underline;
    transition: all 0.3s ease;
    font-weight: 500;
}

.content a:hover {
    color: var(--yellow-light);
    text-decoration: none;
}

.content a:focus {
    outline: 2px solid var(--primary-yellow);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Author section */
.author-section {
    padding: var(--spacing-xl) 0;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    margin: var(--spacing-xl) 0 0 0;
}

.author-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    background: var(--card-background);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.author-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.author-avatar {
    width: 105px;
    height: 105px;
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 3px solid var(--primary-yellow);
    flex-shrink: 0;
    box-shadow: var(--shadow-card);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-full);
    margin: 0;
}

.author-info h3 {
    color: var(--primary-yellow);
    margin-bottom: 8px;
    font-size: 24px;
}

.author-title {
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 16px;
}

.author-bio {
    color: var(--text-secondary);
    margin: 0 0 12px 0;
    line-height: 1.75;
}

.author-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.author-separator {
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .author-card {
        flex-direction: column;
        text-align: center;
    }
    
    .author-avatar {
        width: 85px;
        height: 85px;
    }
    
    .author-info h3 {
        font-size: 20px;
    }
    
    .author-meta {
        justify-content: center;
    }
}

/* Enhanced scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Loading state for images */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Focus states for accessibility */
a:focus,
button:focus {
    outline: 3px solid var(--primary-yellow);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Enhanced bonus card animation */
.bonus-card {
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    animation: pulse 3.5s ease-in-out infinite;
    pointer-events: none;
}

.bonus-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 4s infinite;
}

/* Smooth transitions for interactive elements */
a, button, input, select, textarea {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scroll reveal animation */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Additional content styling */
.content h3 {
    font-size: var(--font-size-h3);
    color: var(--primary-yellow);
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 700;
}

.content h4 {
    font-size: var(--font-size-h4);
    color: var(--text-primary);
    margin-top: 22px;
    margin-bottom: 14px;
    font-weight: 600;
}

/* Enhanced breadcrumbs */
.breadcrumbs {
    position: relative;
}

.breadcrumbs::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-primary), transparent);
}
