/* Critical CSS - Above the fold styles */
/* CSS Variables - Purple Gold Theme */
:root {
    /* Colors - Purple Gold Theme */
    --header-background: rgba(255, 255, 255, 0.98);
    --body-background: linear-gradient(135deg, #faf9ff 0%, #fff9f0 50%, #faf5ff 100%);
    --footer-background: rgba(255, 255, 255, 0.95);
    --card-background: rgba(255, 255, 255, 0.9);
    --overlay-background: rgba(255, 255, 255, 0.95);

    /* Text Colors */
    --text-primary: #1a0a2e;
    --text-secondary: #4a5568;
    --text-muted: #718096;

    /* Brand Colors - Purple Gold */
    --primary-purple: #7C3AED;
    --purple-dark: #6B46C1;
    --purple-light: #A78BFA;
    --purple-lighter: #C4B5FD;
    --gold-primary: #F59E0B;
    --gold-secondary: #D97706;
    --gold-light: #FCD34D;
    --gold-lighter: #FDE68A;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #7C3AED 0%, #8B5CF6 50%, #A78BFA 100%);
    --gradient-gold: linear-gradient(135deg, #F59E0B 0%, #FCD34D 50%, #FBBF24 100%);
    --gradient-purple-gold: linear-gradient(135deg, #7C3AED 0%, #F59E0B 100%);
    --gradient-text: linear-gradient(135deg, #6B46C1, #7C3AED);
    --gradient-text-gold: linear-gradient(135deg, #D97706, #F59E0B);

    /* Borders */
    --border-primary: rgba(124, 58, 237, 0.2);
    --border-secondary: rgba(124, 58, 237, 0.1);
    --border-light: rgba(124, 58, 237, 0.05);

    /* Shadows */
    --shadow-primary: 0 0 20px rgba(124, 58, 237, 0.2);
    --shadow-gold: 0 0 20px rgba(245, 158, 11, 0.3);
    --shadow-card: 0 10px 30px rgba(124, 58, 237, 0.15);
    --shadow-hover: 0 15px 40px rgba(124, 58, 237, 0.25);
    
    /* Font Sizes */
    --font-size-h1: 48px;
    --font-size-h2: 36px;
    --font-size-h3: 28px;
    --font-size-h4: 24px;
    --font-size-body: 16px;
    --font-size-small: 14px;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-xxl: 64px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;
    
    /* Header specific */
    --header-height: 90px;
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--body-background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    padding-top: var(--header-height); /* Компенсация фиксированной шапки */
}

.container {
    max-width: 1320px;
    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(124, 58, 237, 0.1);
    display: flex; /* 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;
    background: var(--gradient-purple-gold);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    letter-spacing: -0.5px;
    display: block;
    transition: opacity 0.3s ease;
    text-transform: uppercase;
}

.logo-text:hover {
    opacity: 0.9;
    text-decoration: none;
}

/* Навигация */
.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-purple);
}

/* Подчеркивание при наведении */
.nav-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-purple-gold);
    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: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-hover);
    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;
}

/* На десктопе показываем через max-height для плавности */
@media (min-width: 1025px) {
    .dropdown-menu {
        max-height: 0;
        padding: 0;
    }
    
    .nav-dropdown:hover .dropdown-menu {
        max-height: 500px;
        padding: 10px 0;
    }
}

/* Desktop hover - только для экранов больше 1024px */
@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-purple);
    }
    
    /* Убеждаемся, что по умолчанию скрыто */
    .nav-dropdown:not(:hover) .dropdown-menu {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
}

/* Active state для мобильных */
@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(124, 58, 237, 0.05);
    color: var(--primary-purple);
    border-left-color: var(--primary-purple);
    padding-left: 25px;
}

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

/* Кнопки в шапке (Header Buttons) */
.header-buttons {
    display: flex;
    align-items: center; /* Выравнивание по центру */
    gap: 15px;
}

/* Исправленные стили кнопок */
.btn-signup, .btn-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px; /* Уменьшил паддинги, были слишком большими на скрине */
    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: 44px; /* Фиксированная высота для одинакового размера */
}

/* Кнопка регистрации */
.btn-signup {
    background: var(--gradient-gold);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
}

/* Кнопка входа */
.btn-login {
    background: transparent;
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
}

.btn-login:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--purple-dark);
}

/* 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-purple);
    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: rgba(255, 255, 255, 0.98);
        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;
    }
    
    /* Класс для открытия меню (добавляется JS) */
    .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;
    }

    /* Мобильная версия dropdown */
    .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(124, 58, 237, 0.05);
    }
    
    .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);
    }
}

/* ================= REST OF THE STYLES (Content, Footer, etc.) ================= */

/* Hero Section */
.hero {
    margin-top: 0;
    padding: var(--spacing-xxl) 0;
    background: radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.15) 0%, rgba(245, 158, 11, 0.1) 50%, transparent 80%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

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

.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);
    background: var(--gradient-purple-gold);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.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(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xxl) var(--spacing-xl);
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.3), 0 4px 16px rgba(124, 58, 237, 0.2);
    position: relative;
    overflow: hidden;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    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, 255, 0.15) 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(245, 158, 11, 0.2) 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: 24px;
    margin: 0;
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    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: 56px;
    font-weight: 900;
    color: var(--gold-light);
    text-shadow: 0 0 30px rgba(252, 211, 77, 0.6), 0 4px 12px rgba(0, 0, 0, 0.3);
    line-height: 1;
    letter-spacing: -1px;
    display: inline-block;
    text-align: center;
}

.plus {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1;
    margin: 0 6px;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    display: inline-block;
    text-align: center;
}

.freespins {
    font-size: 28px;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
    text-shadow: 0 0 20px rgba(252, 211, 77, 0.5), 0 2px 8px rgba(0, 0, 0, 0.2);
    display: inline-block;
    text-align: center;
    letter-spacing: 0.5px;
}

.btn-claim {
    width: 100%;
    max-width: 280px;
    padding: 18px 28px;
    background: var(--gradient-gold);
    color: white;
    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 6px 20px rgba(245, 158, 11, 0.5), 0 2px 8px rgba(0, 0, 0, 0.2);
    margin: 0;
    text-align: center;
    text-decoration: none;
    display: block;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

.btn-claim:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.7), 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

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

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

/* Breadcrumbs (Исправлено) */
.breadcrumbs {
    padding: 15px 0;
    font-size: 14px;
    color: var(--text-muted);
    background: rgba(124, 58, 237, 0.03);
    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-purple);
    font-weight: 600;
}

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

.breadcrumbs a:hover {
    color: var(--primary-purple);
    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: 1200px;
}

.content h1 {
    font-size: var(--font-size-h1);
    color: var(--primary-purple);
    margin-bottom: 30px;
    margin-top: 0;
    font-weight: 800;
    background: var(--gradient-purple-gold);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.content h2 {
    font-size: var(--font-size-h2);
    color: var(--primary-purple);
    margin-bottom: 20px;
    margin-top: 40px;
}

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

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

.content ul, .content ol {
    margin-bottom: 20px;
    padding-left: 25px;
    color: var(--text-secondary);
    line-height: 1.8;
}

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

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

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

.content ul li::before {
    content: '▸';
    color: var(--gold-primary);
    font-weight: bold;
    position: absolute;
    left: -20px;
}

/* Tables */
.content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px auto;
    background: white;
    box-shadow: var(--shadow-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
}

.content thead {
    background: var(--gradient-primary);
}

.content th {
    background: transparent;
    color: white;
    padding: 18px 15px;
    text-align: left;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

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

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

.content td {
    padding: 18px 15px;
    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(124, 58, 237, 0.05);
    transform: scale(1.01);
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.1);
}

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

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

/* Footer */
.footer {
    background: var(--footer-background);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-primary);
    margin-top: 80px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-purple-gold);
}

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

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

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

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

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

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

.footer-logo-text {
    font-size: 20px;
    font-weight: 900;
    background: var(--gradient-purple-gold);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    letter-spacing: -0.5px;
    display: block;
    text-transform: uppercase;
}

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

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

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

/* ================= BUTTONS ================= */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    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: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.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.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

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

.btn-primary {
    background: var(--gradient-gold);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    box-shadow: none;
}

.btn-secondary:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--purple-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.content-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 30px 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: linear-gradient(135deg, rgba(124, 58, 237, 0.03) 0%, rgba(245, 158, 11, 0.02) 100%);
    margin-top: 0;
}

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

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

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

.faq-item {
    background: white;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    border: 1px solid var(--border-primary);
}

.faq-question {
    padding: 20px 24px 12px 24px;
}

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

.faq-toggle {
    display: none;
}

.faq-answer {
    padding: 0 24px 20px 24px;
    display: block;
}

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

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

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

.faq-answer a:hover {
    color: var(--primary-purple-dark);
}

/* ================= CONTENT NAVIGATION ================= */
.content-navigation {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(250, 245, 255, 1) 100%);
    border-radius: var(--radius-lg);
    padding: 14px var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.1), 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 2px 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(--gradient-purple-gold);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

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

.content-navigation:not(.collapsed) {
    padding: var(--spacing-lg);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: var(--spacing-xl);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(252, 250, 255, 1) 100%);
    border-color: var(--purple-light);
}

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

.content-navigation.collapsed:hover {
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.2), 0 2px 6px rgba(0, 0, 0, 0.08);
    border-color: var(--purple-light);
    transform: translateY(-1px);
}

@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: 14px 18px;
    margin: -12px -18px 0 -18px;
    min-height: 56px;
    transition: all 0.2s ease;
    border-radius: var(--radius-md);
    position: relative;
    gap: 12px;
}

.content-nav-header:hover {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.12) 0%, rgba(124, 58, 237, 0.06) 100%);
}

.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: 20px;
    font-weight: 800;
    background: var(--gradient-text);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    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: 18px;
    color: var(--primary-purple);
    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.7;
}

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

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

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

.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: 8px;
}

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

.content-nav-list a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 12px 18px;
    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: -18px;
    padding-left: 18px;
    position: relative;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.5;
}

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

.content-nav-list a:hover {
    color: var(--primary-purple);
    background: linear-gradient(90deg, rgba(124, 58, 237, 0.08) 0%, rgba(124, 58, 237, 0.02) 100%);
    border-left-color: var(--primary-purple);
    transform: translateX(4px);
    padding-left: 22px;
    font-weight: 600;
}

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

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

/* ================= REVIEWS ================= */
.reviews {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.03) 0%, rgba(124, 58, 237, 0.02) 100%);
    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: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

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

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

.avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: var(--gradient-purple-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    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(--gold-primary);
    font-size: 16px;
    margin-bottom: 4px;
}

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

.review-text {
    color: var(--text-secondary);
    line-height: 1.7;
    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: 36px;
        --font-size-h2: 28px;
        --font-size-h3: 22px;
        --spacing-xl: 32px;
        --spacing-xxl: 48px;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .content h1 {
        font-size: 32px;
        text-align: left;
    }
    
    .content h2 {
        font-size: 24px;
        margin-top: 35px;
        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.7;
    }
    
    .content h3 {
        font-size: 20px;
    }
    
    .bonus-card {
        padding: var(--spacing-lg);
        min-height: 340px;
        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: 44px;
        text-align: center;
    }
    
    .plus {
        font-size: 30px;
        margin: 0 4px;
        text-align: center;
    }
    
    .freespins {
        font-size: 24px;
        text-align: center;
    }
    
    .btn-claim {
        padding: 16px 24px;
        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: 20px;
        border: 1px solid var(--border-light);
        border-radius: var(--radius-md);
        padding: 15px;
        background: white;
        box-shadow: var(--shadow-card);
        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);
        position: relative;
        box-sizing: border-box;
    }
    
    .content td:first-child {
        padding-top: 0;
        font-weight: 700;
        color: var(--primary-purple);
        font-size: 16px;
        border-bottom: 2px solid var(--border-primary);
        margin-bottom: 10px;
        padding-bottom: 10px;
    }
    
    .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-purple);
        margin-bottom: 6px;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        opacity: 0.8;
    }
    
    .content td:first-child::before {
        display: none;
    }
    
    .content th,
    .content td {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .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 24px;
        font-size: 14px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-item {
        margin-bottom: 12px;
    }
    
    .faq-question {
        padding: 16px 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
        padding-right: 12px;
    }
    
    .faq-toggle {
        font-size: 20px;
        width: 20px;
        height: 20px;
    }
    
    .faq-answer {
        padding: 0 20px 16px 20px;
    }
    
    .faq-answer p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 10px;
    }
    
    .content-navigation {
        margin-bottom: var(--spacing-lg);
    }
    
    .content-nav-title {
        font-size: 18px;
    }
    
    .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: 320px;
        text-align: center;
    }
    
    .bonus-content {
        gap: var(--spacing-sm);
        text-align: center;
    }
    
    .bonus-content h3 {
        font-size: 18px;
        letter-spacing: 1px;
    }
    
    .bonus-amount {
        gap: 4px;
        justify-content: center;
        text-align: center;
    }
    
    .percentage {
        font-size: 38px;
    }
    
    .plus {
        font-size: 26px;
        margin: 0 3px;
    }
    
    .freespins {
        font-size: 20px;
    }
    
    .btn-claim {
        padding: 14px 20px;
        font-size: 14px;
        max-width: 100%;
    }
    
    .bonus-terms {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 30px 0;
    }
    
    .hero::before,
    .hero::after {
        display: none;
    }
    
    .content {
        padding: 30px 0;
    }
    
    .content .container {
        padding: 0 16px;
    }
    
    .hero-text h1 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .content h1 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .content h2 {
        font-size: 22px;
        line-height: 1.4;
    }
    
    .bonus-card {
        padding: var(--spacing-md);
        min-height: 300px;
        text-align: center;
    }
    
    .bonus-content {
        gap: var(--spacing-sm);
        text-align: center;
    }
    
    .bonus-content h3 {
        font-size: 18px;
        text-align: center;
    }
    
    .bonus-amount {
        gap: 4px;
        justify-content: center;
        text-align: center;
    }
    
    .percentage {
        font-size: 38px;
        text-align: center;
    }
    
    .plus {
        font-size: 26px;
        margin: 0 3px;
        text-align: center;
    }
    
    .freespins {
        font-size: 20px;
        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: 20px 0;
    }
    
    .content thead {
        display: none;
    }
    
    .content tbody {
        display: block;
        width: 100%;
    }
    
    .content tr {
        display: block;
        margin-bottom: 15px;
        border: 1px solid var(--border-light);
        border-radius: var(--radius-md);
        padding: 15px;
        background: white;
        box-shadow: var(--shadow-card);
        width: 100%;
        box-sizing: border-box;
    }
    
    .content td {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 10px 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-purple);
        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-purple);
        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: 8px 16px;
        height: 38px;
    }
    
    .content-buttons {
        gap: 15px;
        margin: 25px 0;
    }
    
    .btn-primary, .btn-secondary {
        font-size: 14px;
        padding: 14px 20px;
        width: 100%;
        text-align: center;
    }
    
    .content-buttons a {
        flex: 1;
        min-width: 0;
    }
}

/* ================= ADDITIONAL ENHANCEMENTS & ANIMATIONS ================= */

/* Smooth animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 6px 25px rgba(245, 158, 11, 0.6);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.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: 30px 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(124, 58, 237, 0.05);
    transform: translateX(5px);
}

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

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

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

/* Author section */
.author-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.02) 0%, rgba(245, 158, 11, 0.02) 100%);
    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: white;
    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: 100px;
    height: 100px;
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 3px solid var(--primary-purple);
    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-purple);
    margin-bottom: 8px;
    font-size: 24px;
}

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

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

.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: 80px;
        height: 80px;
    }
    
    .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(--gold-primary);
    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.2) 0%, transparent 70%);
    animation: pulse 3s 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.3), transparent);
    animation: shimmer 3s infinite;
}

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

/* 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);
    }
}

/* Intersection Observer для анимаций при скролле */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    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-purple);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.content h4 {
    font-size: var(--font-size-h4);
    color: var(--text-primary);
    margin-top: 20px;
    margin-bottom: 12px;
    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);
}