/* ========================================
   YOUS CASINO - Main Stylesheet
   Brand Colors: Pink (#E91E8C) & Cyan (#00D4D4)
======================================== */

/* CSS Variables */
:root {
    --primary: #d48235;
    --primary-light: #e59366;
    --primary-dark: #e6650f;
    --secondary: #8B4789;
    --secondary-light: #A865A6;
    --secondary-dark: #6D3569;

    --bg-dark: #0D0D12;
    --bg-darker: #08080C;
    --bg-card: #14141C;
    --bg-card-hover: #1C1C28;

    --text-primary: #FFFFFF;
    --text-secondary: #B8B8C8;
    --text-muted: #6E6E7E;

    --gold: #d48235;
    --gold-light: #F4CF57;

    --success: #22C55E;
    --warning: #F59E0B;
    --danger: #EF4444;

    --border-color: rgba(212, 130, 53, 0.15);
    --border-color-light: rgba(212, 130, 53, 0.25);
    --border-color-bright: rgba(212, 130, 53, 0.4);

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-glow-brand: 0 0 30px rgba(212, 130, 53, 0.3);
    --shadow-glow-green: 0 0 30px rgba(212, 130, 53, 0.3);
    --shadow-glow-orange: 0 0 30px rgba(139, 71, 137, 0.3);

    --brand-gradient: linear-gradient(135deg, #d48235 0%, #e59366 50%, #8B4789 100%);
    --brand-gradient-horizontal: linear-gradient(90deg, #d48235 0%, #e59366 50%, #8B4789 100%);
    --brand-gradient-text: linear-gradient(90deg, #d48235, #e59366, #8B4789);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;

    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Playfair Display', serif;
}

/* Ambient Background Glow */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at 0% 0%, rgba(212, 130, 53, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 0%, rgba(139, 71, 137, 0.18) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(229, 147, 102, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 0% 100%, rgba(212, 130, 53, 0.18) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    box-shadow: var(--shadow-glow-pink);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(233, 30, 140, 0.5);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--bg-dark);
    box-shadow: var(--shadow-glow-cyan);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0, 212, 212, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color-light);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-large {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

/* ========================================
   HEADER
======================================== */
.header {
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 13, 18, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.header.scrolled {
    background: rgba(8, 8, 12, 0.98);
    box-shadow: var(--shadow-lg);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    width: auto;
}

.main-nav {
    margin: 0 20px;
    flex-wrap: wrap;
    justify-content: flex-end;
    display: flex;
    gap: 15px;
}

.main-nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width var(--transition-normal);
}

.main-nav a:hover {
    color: var(--text-primary);
}

.main-nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 100;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-fast);
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(13, 13, 18, 0.95) 0%,
            rgba(13, 13, 18, 0.7) 50%,
            rgba(233, 30, 140, 0.2) 100%);
}

.hero-content {
    padding: 80px 20px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-title .highlight {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 600px;
}

.hero-description strong {
    color: var(--gold-light);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ========================================
   GAMES SECTIONS
======================================== */
.games-section {
    padding: 80px 0;
}

.games-section.table-games {
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 600;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.view-all {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.view-all:hover {
    color: var(--secondary-light);
    gap: 12px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
}

.game-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow-pink);
}

.game-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

/* Placeholder styles */
.placeholder {
    background: linear-gradient(135deg, var(--bg-card-hover) 0%, var(--bg-card) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder.dark {
    background: linear-gradient(135deg, #1a1a24 0%, #12121a 100%);
}

.placeholder-content {
    text-align: center;
    color: var(--text-muted);
}

.placeholder-content span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}

.placeholder-content small {
    font-size: 11px;
    opacity: 0.6;
}

.game-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
}

.game-badge.hot {
    background: linear-gradient(135deg, var(--primary), var(--warning));
    color: white;
}

.game-badge.new {
    background: linear-gradient(135deg, var(--secondary), var(--success));
    color: var(--bg-dark);
}

.game-info {
    padding: 16px;
}

.game-info h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.game-provider {
    font-size: 12px;
    color: var(--text-muted);
}

/* ========================================
   PROMOTIONS SECTION
======================================== */
.promotions-section {
    padding: 80px 0;
    background: var(--bg-darker);
}

.promotions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.promo-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.promo-card:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-glow-cyan);
}

.promo-card.featured {
    grid-column: 1;
    height: fit-content;
    grid-row: 1 / 3;
}

.promo-image {
    aspect-ratio: 16/10;
}

.promo-card.featured .promo-image {
    aspect-ratio: 16/9;
}

.promo-content {
    padding: 24px;
}

.promo-badge {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}

.promo-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.promo-card.featured .promo-content h3 {
    font-size: 28px;
}

.promo-content p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 16px;
}

/* ========================================
   ABOUT SECTION
======================================== */
.about-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.about-main {
    display: contents;
}

.about-text h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--secondary);
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.8;
}

.bonus-box {
    position: sticky;
    top: 100px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.bonus-placeholder {
    width: 300px;
    height: 400px;
    background: linear-gradient(135deg, var(--bg-card) 0%, #1a1025 100%);
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-glow-pink);
}

.bonus-placeholder img {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bonus-placeholder.has-image img {
    display: block;
}

.bonus-placeholder.has-image .bonus-placeholder-content {
    display: none;
}

.bonus-placeholder-content {
    text-align: center;
    color: var(--text-muted);
}

.bonus-placeholder-content span {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.bonus-placeholder-content small {
    font-size: 12px;
    opacity: 0.6;
}

/* ========================================
   FAQ SECTION
======================================== */
.faq-section {
    padding: 80px 0;
    background: var(--bg-darker);
}

.faq-section .section-title {
    text-align: center;
    margin-bottom: 48px;
}

.faq-section .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow-pink);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: var(--bg-card);
    border: none;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    background: var(--bg-card-hover);
}

.faq-icon {
    font-size: 24px;
    color: var(--primary);
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 100%;
}

.faq-answer p {
    padding: 24px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.footer-brand img {
    object-fit: contain;
}

.footer-brand {
    display: flex;
    max-width: 150px;
    align-items: center;
}

.footer-logo {
    height: 60px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--secondary);
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    font-size: 14px;
    padding: 6px 0;
    transition: all var(--transition-fast);
}

.footer-column a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.footer-payments {
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

.footer-payments h4 {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 24px;
    text-align: center;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.payment-icon-wrapper {
    flex-shrink: 0;
}

.payment-icon {
    width: 80px;
    height: 50px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    overflow: hidden;
}

.payment-icon:hover {
    border-color: var(--secondary);
    transform: translateY(-2px);
}

.payment-icon.placeholder-icon {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-hover) 100%);
    position: relative;
}

.payment-icon.placeholder-icon::before {
    content: attr(title);
    font-size: 9px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    padding: 4px;
}

.payment-icon.placeholder-icon img {
    display: none;
}

/* When real images are added, hide the placeholder text */
.payment-icon.placeholder-icon.has-image::before {
    display: none;
}

.payment-icon.placeholder-icon.has-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1200px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .bonus-box {
        position: static;
        max-width: 400px;
        margin: 0 auto 40px;
    }

    .bonus-placeholder {
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .promotions-grid {
        grid-template-columns: 1fr;
    }

    .promo-card.featured {
        grid-column: auto;
        grid-row: auto;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .footer-brand {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero-content {
        padding: 40px 20px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .games-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }

    .bonus-amount .amount {
        font-size: 36px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.05) 50%,
            transparent 100%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ========================================
   YOUS CASINO - Login Page Styles
======================================== */

/* Login Section */
.login-section {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 50%, rgba(233, 30, 140, 0.1) 100%);
}

.login-section>.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-wrapper {
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Login Card */
.login-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

.login-header {
    text-align: center;
    margin-bottom: 36px;
}

.login-header h1 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-header p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* Form Styles */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    font-size: 18px;
    opacity: 0.5;
    pointer-events: none;
}

.input-wrapper input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 15px;
    transition: all var(--transition-fast);
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.1);
}

.input-wrapper input::placeholder {
    color: var(--text-muted);
}

.toggle-password {
    position: absolute;
    right: 16px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity var(--transition-fast);
}

.toggle-password:hover {
    opacity: 1;
}

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--text-secondary);
}

.checkbox-wrapper input {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color-light);
    border-radius: 4px;
    position: relative;
    transition: all var(--transition-fast);
}

.checkbox-wrapper input:checked+.checkmark {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: var(--primary);
}

.checkbox-wrapper input:checked+.checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.forgot-link {
    color: var(--secondary);
    transition: color var(--transition-fast);
}

.forgot-link:hover {
    color: var(--secondary-light);
}

/* Login Button */
.login-btn {
    margin-top: 8px;
    padding: 18px 32px;
    font-size: 16px;
}

/* Divider */
.form-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 8px 0;
}

.form-divider::before,
.form-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.form-divider span {
    color: var(--text-muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Social Login */
.social-login {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition-fast);
    border: 1px solid var(--border-color);
}

.social-btn.google {
    background: var(--bg-darker);
    color: var(--text-primary);
}

.social-btn.google:hover {
    background: var(--bg-card-hover);
    border-color: #ea4335;
}

.social-btn.facebook {
    background: #1877f2;
    color: white;
    border-color: #1877f2;
}

.social-btn.facebook:hover {
    background: #166fe5;
}

.social-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.social-btn.google .social-icon {
    background: linear-gradient(135deg, #ea4335, #fbbc05, #34a853, #4285f4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Signup Prompt */
.signup-prompt {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 8px;
}

.signup-prompt a {
    color: var(--primary);
    font-weight: 600;
    transition: color var(--transition-fast);
}

.signup-prompt a:hover {
    color: var(--primary-light);
}

/* SEO Section */
.seo-section {
    padding: 80px 0;
    background: var(--bg-darker);
}

.seo-content {
    max-width: 900px;
    margin: 0 auto;
}

.seo-content h2 {
    font-family: var(--font-display);
    font-size: 32px;
    margin-bottom: 24px;
    position: relative;
}

.seo-content h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.seo-content h3 {
    font-size: 20px;
    color: var(--secondary);
    margin: 32px 0 12px;
}

.seo-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.seo-content ol,
.seo-content ul {
    margin: 16px 0 24px 24px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.seo-content li {
    margin-bottom: 8px;
}

.seo-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.seo-content th,
.seo-content td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.seo-content th {
    background: var(--bg-darker);
    color: var(--secondary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.seo-content td {
    color: var(--text-secondary);
    font-size: 14px;
}

.seo-content tr:last-child td {
    border-bottom: none;
}

.seo-content strong {
    color: var(--text-primary);
}

/* Responsive */
@media (max-width: 1024px) {
    .login-wrapper {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .login-section {
        padding: 100px 0 60px;
    }

    .login-card {
        padding: 32px 24px;
    }

    .login-header h1 {
        font-size: 28px;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }

    .social-login {
        grid-template-columns: 1fr;
    }

    .form-options {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .promo-amount {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .login-card {
        padding: 24px 16px;
    }

    .input-wrapper input {
        padding: 14px 14px 14px 44px;
        font-size: 14px;
    }

    .login-btn {
        padding: 16px 24px;
    }
}

/* ========================================
   YOUS CASINO - Register Page Styles
======================================== */

/* Register Section */
.register-section {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 50%, rgba(0, 212, 212, 0.1) 100%);
}

.register-section>.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.register-wrapper {
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Register Card */
.register-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

.register-header {
    text-align: center;
    margin-bottom: 36px;
}

.register-header h1 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.register-header p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* Form Steps Indicator */
.form-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.4;
    transition: opacity var(--transition-fast);
}

.step-item.active {
    opacity: 1;
}

.step-num {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-darker);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.step-item.active .step-num {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: var(--primary);
    color: white;
}

.step-label {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.step-item.active .step-label {
    color: var(--text-primary);
}

/* Register Form */
.register-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Select Wrapper */
.select-wrapper select {
    width: 100%;
    padding: 16px 16px 16px 48px;
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 15px;
    cursor: pointer;
    appearance: none;
    transition: all var(--transition-fast);
}

.select-wrapper select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.1);
}

.select-wrapper::after {
    content: '▼';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: var(--text-muted);
    pointer-events: none;
}

.input-hint {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Form Agreements */
.form-agreements {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    background: var(--bg-darker);
    border-radius: var(--radius-md);
}

.form-agreements .checkbox-wrapper {
    font-size: 13px;
    line-height: 1.5;
}

.form-agreements a {
    color: var(--secondary);
    text-decoration: underline;
}

.form-agreements a:hover {
    color: var(--secondary-light);
}

/* Register Button */
.register-btn {
    margin-top: 8px;
    padding: 18px 32px;
    font-size: 16px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}

.register-btn:hover {
    box-shadow: 0 0 40px rgba(0, 212, 212, 0.4);
}

/* Login Prompt */
.login-prompt {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 8px;
}

.login-prompt a {
    color: var(--secondary);
    font-weight: 600;
    transition: color var(--transition-fast);
}

.login-prompt a:hover {
    color: var(--secondary-light);
}

/* Responsive */
@media (max-width: 1024px) {
    .register-wrapper {
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .register-section {
        padding: 100px 0 60px;
    }

    .register-card {
        padding: 32px 24px;
    }

    .register-header h1 {
        font-size: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-steps {
        gap: 20px;
    }

    .step-label {
        display: none;
    }
}

@media (max-width: 480px) {
    .register-card {
        padding: 24px 16px;
    }

    .bonus-item {
        grid-template-columns: 1fr;
        gap: 4px;
        text-align: center;
    }

    .register-btn {
        padding: 16px 24px;
    }
}

/* ========================================
   YOUS CASINO - App Page Styles
======================================== */

/* App Hero Section */
.app-hero {
    position: relative;
    padding: 140px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.app-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 40%, rgba(233, 30, 140, 0.15) 70%, rgba(0, 212, 212, 0.1) 100%);
    z-index: -1;
}

.app-hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(233, 30, 140, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.app-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* App Hero Content */
.app-hero-content {
    max-width: 560px;
}

.app-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: var(--radius-xl);
    margin-bottom: 24px;
}

.app-hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.app-hero-content h1 .highlight {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

/* App Features Row */
.app-features {
    display: flex;
    gap: 24px;
    margin-bottom: 36px;
}

.app-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.app-feature .feature-icon {
    font-size: 20px;
}

/* Download Buttons */
.app-download-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.download-btn:hover {
    transform: translateX(8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow-pink);
}

.download-btn.android:hover {
    border-color: #3ddc84;
    box-shadow: 0 0 30px rgba(61, 220, 132, 0.3);
}

.download-btn.ios:hover {
    border-color: #007aff;
    box-shadow: 0 0 30px rgba(0, 122, 255, 0.3);
}

.download-btn.browser:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-glow-cyan);
}

.download-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-darker);
    border-radius: var(--radius-sm);
}

.download-icon svg {
    width: 24px;
    height: 24px;
}

.download-btn.android .download-icon {
    color: #3ddc84;
}

.download-btn.ios .download-icon {
    color: #007aff;
}

.download-btn.browser .download-icon {
    color: var(--secondary);
}

.download-text {
    display: flex;
    flex-direction: column;
}

.download-text small {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.download-text strong {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.app-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.note-icon {
    font-size: 16px;
}

/* Phone Mockup */
.phone-mockup-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    z-index: 1;
}

.phone-frame {
    position: relative;
    width: 280px;
    height: 520px;
    background: linear-gradient(145deg, #2a2a3a 0%, #1a1a24 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.5),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: #0a0a0f;
    border-radius: 0 0 16px 16px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-darker);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.phone-screen .screen-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.screen-logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.6);
    padding: 16px 24px;
    border-radius: 12px;
    backdrop-filter: blur(8px);
}

.screen-logo-overlay img {
    width: 120px;
    height: auto;
    display: block;
}

.screen-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1a0a20 0%, #0a1520 50%, #1a1025 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.screen-placeholder img {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.screen-placeholder.has-image img {
    display: block;
}

.screen-placeholder.has-image .placeholder-content {
    display: none;
}

.screen-placeholder .placeholder-content {
    text-align: center;
    color: var(--text-muted);
    z-index: 1;
}

.screen-placeholder .placeholder-content span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}

.screen-placeholder .placeholder-content small {
    font-size: 11px;
    opacity: 0.6;
}

/* Screen decorative elements */
.screen-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(233, 30, 140, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 212, 0.3) 0%, transparent 40%);
    pointer-events: none;
}

.screen-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(2px);
}

.screen-logo {
    width: 140px;
    filter: drop-shadow(0 4px 20px rgba(233, 30, 140, 0.5));
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.phone-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at center, rgba(233, 30, 140, 0.3) 0%, transparent 60%);
    filter: blur(40px);
    z-index: -1;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    inset: -40px;
    pointer-events: none;
}

.floating-chip {
    position: absolute;
    font-size: 32px;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.chip-1 {
    top: 10%;
    left: -20px;
    animation-delay: 0s;
}

.chip-2 {
    top: 30%;
    right: -30px;
    animation-delay: 1s;
}

.chip-3 {
    bottom: 30%;
    left: -40px;
    animation-delay: 2s;
}

.chip-4 {
    bottom: 10%;
    right: -20px;
    animation-delay: 0.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* App Features Section */
.app-features-section {
    padding: 80px 0;
    background: var(--bg-darker);
}

.app-features-section .section-title {
    text-align: center;
    margin-bottom: 48px;
}

.app-features-section .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.app-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.app-feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition-normal);
}

.app-feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow-pink);
}

.feature-card-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.app-feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.app-feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Download CTA Section */
.download-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, rgba(233, 30, 140, 0.1) 50%, rgba(0, 212, 212, 0.1) 100%);
}

.download-cta-card {
    background: var(--bg-card);
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    box-shadow: var(--shadow-glow-pink);
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 32px;
    margin-bottom: 12px;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 20px;
    max-width: 500px;
}

.cta-bonus {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bonus-amount {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bonus-plus {
    font-size: 24px;
    color: var(--text-muted);
}

.bonus-spins {
    font-size: 18px;
    color: var(--secondary);
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Responsive - App Page */
@media (max-width: 1024px) {
    .app-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .app-hero-content {
        max-width: 100%;
        order: 1;
    }

    .phone-mockup-container {
        order: 0;
    }

    .app-features {
        justify-content: center;
    }

    .app-download-buttons {
        max-width: 400px;
        margin: 0 auto 24px;
    }

    .app-note {
        justify-content: center;
    }

    .app-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .download-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .cta-content p {
        max-width: 100%;
    }

    .cta-bonus {
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .app-hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .phone-frame {
        width: 240px;
        height: 450px;
    }

    .screen-logo-overlay {
        padding: 12px 20px;
    }

    .screen-logo-overlay img {
        width: 100px;
    }

    .app-features {
        flex-wrap: wrap;
        gap: 16px;
    }

    .app-features-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .bonus-amount {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .phone-frame {
        width: 200px;
        height: 380px;
        border-radius: 32px;
        padding: 8px;
    }

    .phone-notch {
        width: 80px;
        height: 20px;
    }

    .phone-screen {
        border-radius: 26px;
    }

    .screen-logo-overlay {
        padding: 10px 16px;
    }

    .screen-logo-overlay img {
        width: 80px;
    }

    .screen-logo {
        width: 100px;
    }

    .floating-chip {
        font-size: 24px;
    }

    .download-btn {
        padding: 12px 16px;
    }

    .download-cta-card {
        padding: 32px 20px;
    }

    .cta-content h2 {
        font-size: 24px;
    }
}

/* ========================================
   YOUS CASINO - Bonus Page Styles
======================================== */

/* Bonus Hero Section */
.bonus-hero {
    position: relative;
    padding: 160px 0 100px;
    text-align: center;
    overflow: hidden;
}

.bonus-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 30%, rgba(233, 30, 140, 0.2) 60%, rgba(0, 212, 212, 0.15) 100%);
    z-index: -1;
}

.bonus-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(233, 30, 140, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.bonus-hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 200% center;
    }
}

.bonus-hero-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Section Header Centered */
.section-header.centered {
    text-align: center;
    margin-bottom: 48px;
}

.section-header.centered .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 16px;
    margin-top: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Welcome Bonus Section */
.welcome-bonus-section {
    padding: 80px 0;
    background: var(--bg-darker);
}

.welcome-bonus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.welcome-bonus-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.welcome-bonus-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow-pink);
}

.bonus-card-image {
    height: 160px;
    background: linear-gradient(135deg, var(--bg-card-hover) 0%, var(--bg-darker) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.bonus-card-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(233, 30, 140, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(0, 212, 212, 0.2) 0%, transparent 50%);
}

.bonus-card-content {
    padding: 24px;
}

.bonus-deposit-label {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}

.bonus-card-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.bonus-value-highlight {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.bonus-extra {
    color: var(--secondary);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}

.bonus-description {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Welcome Bonus Total */
.welcome-bonus-total {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--bg-card) 0%, #1a1025 100%);
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glow-pink);
}

.total-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.total-value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.total-amount {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.total-plus {
    font-size: 32px;
    color: var(--text-muted);
}

.total-spins {
    font-size: 24px;
    color: var(--secondary);
    font-weight: 600;
}

/* Current Promotions Section */
.promotions-grid-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.promotions-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.promo-bonus-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.promo-bonus-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary);
    box-shadow: var(--shadow-glow-cyan);
}

.promo-card-image {
    height: 180px;
    background: linear-gradient(135deg, var(--bg-card-hover) 0%, var(--bg-darker) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.promo-card-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(0, 212, 212, 0.15) 0%, transparent 60%);
}

.promo-card-content {
    padding: 24px;
    position: relative;
}

.promo-card-icon {
    position: absolute;
    top: -24px;
    left: 24px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(233, 30, 140, 0.4);
}

.promo-card-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 8px;
}

.promo-card-content p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Bonus CTA Section */
.bonus-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-darker) 0%, rgba(233, 30, 140, 0.1) 50%, rgba(0, 212, 212, 0.1) 100%);
}

.bonus-cta-card {
    background: var(--bg-card);
    border: 2px solid var(--secondary);
    border-radius: var(--radius-lg);
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    box-shadow: var(--shadow-glow-cyan);
}

.bonus-cta-content h2 {
    font-family: var(--font-display);
    font-size: 32px;
    margin-bottom: 12px;
}

.bonus-cta-content p {
    color: var(--text-secondary);
    font-size: 16px;
    max-width: 500px;
}

.bonus-cta-buttons {
    display: flex;
    gap: 16px;
}

/* Responsive - Bonus Page */
@media (max-width: 1200px) {
    .welcome-bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .promotions-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bonus-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .bonus-cta-content p {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .bonus-hero {
        padding: 120px 0 60px;
    }

    .welcome-bonus-grid {
        grid-template-columns: 1fr;
    }

    .promotions-cards-grid {
        grid-template-columns: 1fr;
    }

    .total-value {
        flex-direction: column;
        gap: 8px;
    }

    .total-amount {
        font-size: 42px;
    }

    .bonus-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .bonus-cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .bonus-hero-content h1 {
        font-size: 32px;
    }

    .welcome-bonus-total {
        padding: 32px 20px;
    }

    .total-amount {
        font-size: 36px;
    }

    .total-spins {
        font-size: 18px;
    }

    .bonus-cta-card {
        padding: 32px 20px;
    }

    .bonus-cta-content h2 {
        font-size: 24px;
    }
}

/* ========================================
   STATIC PAGES - Page Hero
======================================== */
.page-hero {
    position: relative;
    padding: 140px 0 80px;
    min-height: 300px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 50%, var(--bg-card) 100%);
    z-index: 0;
}

.page-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(233, 30, 140, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(0, 212, 212, 0.1) 0%, transparent 50%);
}

.page-hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--bg-dark), transparent);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-content h1 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero-content p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================
   STATIC PAGES - Content Section
======================================== */
.content-section {
    padding: 80px 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-block {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border-color);
}

.content-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.content-block h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.content-block p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-block p:last-child {
    margin-bottom: 0;
}

.content-block p strong {
    color: var(--text-primary);
    font-weight: 600;
}

.content-block a {
    color: var(--primary);
    transition: color var(--transition-fast);
}

.content-block a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

.content-meta {
    display: inline-block;
    font-size: 14px;
    color: var(--text-muted);
    background: var(--bg-card);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
}

.content-cta {
    margin-top: 32px;
    text-align: center;
}

/* ========================================
   CONTACT PAGE - Contact Section
======================================== */
.contact-section {
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

/* Contact Form Card */
.contact-form-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 48px;
    border: 1px solid var(--border-color);
}

.contact-form-header {
    margin-bottom: 32px;
}

.contact-form-header h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.contact-form-header p {
    font-size: 15px;
    color: var(--text-secondary);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 24px;
}

.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.contact-form .input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.contact-form .input-icon {
    position: absolute;
    left: 16px;
    font-size: 16px;
    opacity: 0.6;
    z-index: 1;
}

.contact-form input,
.contact-form select {
    width: 100%;
    padding: 14px 16px 14px 48px;
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 15px;
    transition: all var(--transition-fast);
}

.contact-form input:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.15);
}

.contact-form input::placeholder {
    color: var(--text-muted);
}

.contact-form select {
    appearance: none;
    cursor: pointer;
}

.select-wrapper::after {
    content: '▼';
    position: absolute;
    right: 16px;
    font-size: 10px;
    color: var(--text-muted);
    pointer-events: none;
}

.textarea-wrapper {
    position: relative;
}

.contact-form textarea {
    width: 100%;
    padding: 16px;
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 15px;
    resize: vertical;
    min-height: 120px;
    transition: all var(--transition-fast);
}

.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.15);
}

.contact-form textarea::placeholder {
    color: var(--text-muted);
}

.contact-form .checkbox-group {
    margin-bottom: 32px;
}

.contact-form .checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
}

.contact-form .checkbox-wrapper input[type="checkbox"] {
    width: auto;
    padding: 0;
    margin-top: 2px;
}

.contact-form .checkbox-wrapper a {
    color: var(--primary);
}

.contact-form .checkbox-wrapper a:hover {
    text-decoration: underline;
}

.contact-submit-btn {
    margin-top: 8px;
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border-color);
}

.contact-info-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.contact-method {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-method:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-method:first-of-type {
    padding-top: 0;
}

.contact-method-icon {
    font-size: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-darker);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.contact-method-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.contact-method-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.contact-status {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.contact-status.online {
    background: rgba(34, 197, 94, 0.15);
    color: var(--success);
}

.contact-response {
    font-size: 12px;
    color: var(--text-muted);
}

.quick-help-links {
    list-style: none;
}

.quick-help-links li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.quick-help-links li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.quick-help-links li:first-child {
    padding-top: 0;
}

.quick-help-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.quick-help-links a::after {
    content: '→';
    opacity: 0;
    transform: translateX(-8px);
    transition: all var(--transition-fast);
}

.quick-help-links a:hover {
    color: var(--primary);
}

.quick-help-links a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* VIP Card */
.contact-info-card.vip-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(212, 130, 53, 0.1) 100%);
    border-color: rgba(212, 130, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.vip-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--bg-dark);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 40px;
    transform: rotate(45deg);
}

.contact-info-card.vip-card h3 {
    color: var(--gold);
}

.contact-info-card.vip-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* ========================================
   STATIC PAGES - Responsive
======================================== */
@media (max-width: 1200px) {
    .contact-wrapper {
        grid-template-columns: 1fr 350px;
    }
}

@media (max-width: 992px) {
    .page-hero {
        padding: 120px 0 60px;
        min-height: 250px;
    }

    .page-hero-content h1 {
        font-size: 36px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info-sidebar {
        order: -1;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .contact-form-card {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 50px;
    }

    .page-hero-content h1 {
        font-size: 32px;
    }

    .page-hero-content p {
        font-size: 16px;
    }

    .content-section {
        padding: 60px 0;
    }

    .content-block h2 {
        font-size: 24px;
    }

    .content-block {
        margin-bottom: 36px;
        padding-bottom: 36px;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-info-sidebar {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 24px;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 480px) {
    .page-hero-content h1 {
        font-size: 28px;
    }

    .content-block h2 {
        font-size: 22px;
    }

    .content-block p {
        font-size: 15px;
    }

    .contact-form-header h2 {
        font-size: 24px;
    }

    .contact-info-card {
        padding: 24px;
    }
}

/* Bonus Banner Overlay Styles */
.bonus-banner-overlay {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.bonus-banner-overlay img {
    width: 100%;
    height: auto;
    display: block;
}

.bonus-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    z-index: 2;
}

.bonus-overlay-text .bonus-amount {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.bonus-overlay-text .bonus-spins {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

@media (max-width: 768px) {
    .bonus-overlay-text .bonus-amount {
        font-size: 22px;
    }

    .bonus-overlay-text .bonus-spins {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .bonus-overlay-text .bonus-amount {
        font-size: 18px;
    }

    .bonus-overlay-text .bonus-spins {
        font-size: 14px;
    }
}

/* ========================================
   ABOUT SECTION - Full Width (no sidebar)
======================================== */
.about-text.about-text-full {
    width: 100%;
    max-width: 100%;
    grid-column: 1 / -1;
    /* Span all columns */
}

/* When about-text-full is used, change grid to single column */
.about-content:has(.about-text-full) {
    grid-template-columns: 1fr;
}

/* Fallback for browsers without :has() support */
.about-content--full-width {
    grid-template-columns: 1fr;
}

.about-text-full h3 {
    font-size: 22px;
    margin-top: 32px;
}

.about-text-full h3:first-child {
    margin-top: 0;
}

/* SEO content formatting */
.about-text-full p {
    margin-bottom: 20px;
}

.about-text-full ol,
.about-text-full ul {
    margin: 16px 0 24px 24px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-text-full li {
    margin-bottom: 8px;
}

.about-text-full table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.about-text-full th,
.about-text-full td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.about-text-full th {
    background: var(--bg-darker);
    color: var(--secondary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-text-full td {
    color: var(--text-secondary);
    font-size: 14px;
}

.about-text-full tr:last-child td {
    border-bottom: none;
}

.about-text-full strong {
    color: var(--text-primary);
}

/* ========================================
   ANIMATIONS (moved from 441vvkyrxlbc.js)
======================================== */

/* Scroll Animation - элементы появляются при прокрутке */
.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ========================================
   PLAY OVERLAY (moved from 441vvkyrxlbc.js)
======================================== */
.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.game-card:hover .play-overlay {
    opacity: 1;
}

.play-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    border-radius: var(--radius-xl);
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transform: scale(0.9);
    transition: transform var(--transition-normal);
}

.game-card:hover .play-btn {
    transform: scale(1);
}

.play-btn:hover {
    box-shadow: var(--shadow-glow-pink);
}

.play-btn span {
    font-size: 12px;
}

/* ========================================
   BUTTON RIPPLE EFFECT (moved from 441vvkyrxlbc.js)
======================================== */
.btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: translate(-50%, -50%) scale(20);
        opacity: 0;
    }
}

/* ========================================
   MOBILE MENU (moved from 441vvkyrxlbc.js)
======================================== */
@media (max-width: 992px) {
    .main-nav.mobile-open {
        display: block;
        align-items: flex-start;
        margin: 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(13, 13, 18, 0.98);
        padding: 80px 24px 40px 24px;
        gap: 24px;
        z-index: 99;
        animation: slideIn 0.3s ease;
        width: 100vw;
        height: 100vh;
        overflow-y: auto;
        padding-bottom: 80px;
    }

    .main-nav.mobile-open a {
        display: block;
        margin: 0 0 20px;
        width: 100%;
        font-size: 18px;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    body.menu-open {
        overflow: hidden;
    }

    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

table {
    display: block;
    overflow-x: auto !important;
}

main {
    overflow: hidden;
}

.logo {
    position: relative;
    z-index: 100;
    max-width: 150px;
}

@media (min-width: 768px) {
    .header-actions {
        flex-direction: row;
    }
}

/* ========================================
   DROPDOWN MENU (DESKTOP)
======================================== */
.main-nav {
    align-items: center;
}

.nav-dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.dropdown-toggle {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color var(--transition-fast);
}

.dropdown-toggle:hover {
    color: var(--text-primary);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    min-width: 200px;

    /* Фиксированная высота и прокрутка */
    max-height: 250px;
    overflow-y: auto;

    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    padding: 8px 0;
    margin-top: 20px;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    padding: 12px 20px;
    font-size: 13px;
    white-space: nowrap;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a::after {
    display: none !important;
}

.dropdown-menu a:hover {
    background: var(--bg-card-hover);
    color: var(--primary);
}

/* Стилизация скроллбара внутри подменю */
.dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: var(--bg-card);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: var(--border-color-bright);
    border-radius: 4px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ========================================
   DROPDOWN MENU (MOBILE)
======================================== */
@media (max-width: 992px) {
    .nav-dropdown {
        width: 100%;
    }

    .dropdown-toggle {
        font-size: 18px;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        justify-content: space-between;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        display: none;
        /* Скрыто по умолчанию, управляется JS */
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0 0 0 16px;
        margin-top: 8px;

        /* Сброс ограничений десктопной версии */
        max-height: none;
    }

    .dropdown-menu.mobile-active {
        display: flex;
    }

    .dropdown-menu a {
        font-size: 16px;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        white-space: normal;
    }
}

@media (min-width: 993px) {
    .nav-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.header-actions.mob {
    margin-top: 70px;
    flex-direction: column;
}

.header-actions.mob a {
    text-align: center;
    color: #fff;
}

.header-actions.desk {
    display: none;
}

@media (min-width: 993px) {
    .header-actions.desk {
        display: block;
    }

    .header-actions.mob {
        display: none;
    }
}

.hero-content-wrap {
    max-width: 800px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

@media (min-width: 768px) {
    .hero-content {
        flex-direction: row;
    }
}

.hero-content-img {
    flex: 0 0 auto;
    max-width: 400px;
}

/* ========================================
   PRELOADER
======================================== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-color);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ========================================
   SCROLL TO TOP BUTTON
======================================== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    z-index: 990;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-normal);
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-glow-brand);
}

@media (max-width: 768px) {
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
}





section {
    position: relative;
}

.section-shape {
    position: absolute;
    width: 120px;
    height: 120px;
    z-index: 0;
    pointer-events: none;
    object-fit: contain;
    animation: floatShape 6s ease-in-out infinite;
}

@keyframes floatShape {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@media (max-width: 768px) {
    .section-shape {
        width: 40px;
        height: 40px;
    }
}

.container {
    position: relative;
    z-index: 1;
}

.age-verification-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 13, 18, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: all var(--transition-normal);
}

.age-verification-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.age-verification-card {
    background: var(--bg-card);
    border: 1px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-glow-pink);
    transform: translateY(0);
    transition: transform var(--transition-normal);
}

.age-verification-overlay.hidden .age-verification-card {
    transform: translateY(20px);
}

.age-logo {
    max-width: 150px;
    margin: 0 auto 24px;
}

.age-verification-card h2 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.age-verification-card p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 14px;
}

.age-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bonus-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 13, 18, 0.85);
    backdrop-filter: blur(5px);
    z-index: 9995;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--transition-normal);
}

.bonus-popup-overlay.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.bonus-popup-card {
    background: var(--bg-card);
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-glow-pink);
    transform: scale(0.9);
    transition: transform var(--transition-normal);
    position: relative;
}

.bonus-popup-overlay.visible .bonus-popup-card {
    transform: scale(1);
}

.bonus-popup-card h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.bonus-popup-card p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 16px;
}

.bonus-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.bonus-popup-close:hover {
    color: var(--primary);
}

/* ========================================
   CONTENT SPLIT BLOCK
======================================== */
.content-split-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin: 40px 0;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.content-split-block:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow-pink);
    border-color: var(--primary);
}

.split-text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.split-text-col h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.split-text-col p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.split-image-col {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.split-image-col img {
    max-width: 300px;
    margin: 0 auto;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform var(--transition-slow);
}

.content-split-block:hover .split-image-col img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .content-split-block {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px;
    }
}

@media (max-width: 480px) {
    .content-split-block {
        padding: 24px;
        gap: 24px;
    }

    .split-text-col h3 {
        font-size: 24px;
    }

    .split-text-col p {
        font-size: 15px;
    }
}

.content-navigation {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
    margin: 50px auto 0;
    z-index: 10;
}

.navigation-title {
    display: block;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.toc-link {
    display: block;
    color: var(--text-secondary);
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: color var(--transition-fast), padding-left var(--transition-fast);
    line-height: 1.4;
}

.toc-link:last-child {
    border-bottom: none;
}

.toc-link:hover,
.toc-link.active {
    color: var(--primary-light);
    padding-left: 8px;
}

@media (max-width: 992px) {
    .content-navigation {
        position: relative;
        top: 0;
        max-width: 100%;
    }
}

/* ========================================
   SEO LAYOUT GRID (TOC + CONTENT)
======================================== */
.seo-layout-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 60px;
}

.seo-content {
    min-width: 0; /* Предотвращает разлом грида длинными ссылками/таблицами */
}

.content-navigation {
    position: sticky;
    top: 100px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
    z-index: 10;
}

.navigation-title {
    display: block;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.toc-link {
    display: block;
    color: var(--text-secondary);
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: color var(--transition-fast), padding-left var(--transition-fast);
    line-height: 1.4;
}

.toc-link:last-child {
    border-bottom: none;
}

.toc-link:hover,
.toc-link.active {
    color: var(--primary-light);
    padding-left: 8px;
}

/* ========================================
   CONTENT SPLIT BLOCK (PROMO INJECTION)
======================================== */
.content-split-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin: 40px 0;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.content-split-block:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow-pink);
    border-color: var(--primary);
}

.split-text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.split-text-col h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.split-text-col p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.split-image-col {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.split-image-col img {
    max-width: 300px;
    margin: 0 auto;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform var(--transition-slow);
}

.content-split-block:hover .split-image-col img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .seo-layout-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .content-navigation {
        position: relative;
        top: 0;
        margin-bottom: 20px;
    }
    .content-split-block {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px;
    }
    .split-image-col {
        order: -1; /* Картинка сверху на мобильных */
    }
}

@media (max-width: 480px) {
    .content-split-block {
        padding: 24px;
        gap: 24px;
    }
    .split-text-col h3 { font-size: 24px; }
    .split-text-col p { font-size: 15px; }
}
/* Универсальное правило для всех полноразмерных картинок */
img.attachment-full.size-full {
    width: auto;         /* Сбрасываем жесткую ширину из HTML, картинка берет свой естественный размер */
    height: auto;        /* Всегда сохраняем правильные пропорции */
    max-width: 100%;     /* Главное правило: картинка НИКОГДА не будет шире экрана (идеально для телефонов) */
    display: block;      /* Делаем блоком для выравнивания */
    margin: 0 auto;      /* Выравниваем строго по центру */
}

/* Ограничитель для слишком больших оригиналов на ПК */
@media (min-width: 768px) {
    img.attachment-full.size-full {
        /* Если вы загрузили картинку шириной 2000px, на ПК она будет огромной. 
           Этот параметр ставит "потолок" ширины. 
           Можете поменять 800px на любой комфортный для вашего дизайна размер (например, 600px или 900px). 
           Если оригинал меньше 800px, он останется своим (маленьким). */
        max-width: 800px; 
    }
}

/* 3. Центрирование кнопки */
button.button-link {
    display: block;
    margin: 25px auto; /* 20px - отступ сверху и снизу, auto - выравнивает по центру */
    width: fit-content;
}
.dropdown-menu {
    /* Убираем внешний отступ, чтобы не было разрыва */
    margin-top: 0; 
    padding-top: 10px;
}

main {
    padding-top: 15px; 
}