/* ===================================
   TONEENGEL - PREMIUM STYLE
   Dark Burgundy + Gold + Anthracite
   =================================== */

/* CSS Variables */
:root {
    --primary-color: #d4af37;
    --secondary-color: #8b1538;
    --accent-color: #c9a961;
    --success-color: #00ff88;
    --danger-color: #ff0055;
    --warning-color: #ffaa00;
    
    --bg-dark: #1a1a1a;
    --bg-secondary: #2d2d2d;
    --bg-card: #252525;
    --bg-overlay: rgba(26, 26, 26, 0.95);
    
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --text-dark: #1a1a1a;
    
    --border-color: rgba(212, 175, 55, 0.3);
    --glow-color: rgba(212, 175, 55, 0.5);
    
    --header-height: 70px;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    
    --shadow-sm: 0 2px 10px rgba(212, 175, 55, 0.1);
    --shadow-md: 0 4px 20px rgba(212, 175, 55, 0.2);
    --shadow-lg: 0 8px 30px rgba(212, 175, 55, 0.3);
    --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.6);
    
    --transition: all 0.3s ease;
}

@media (max-width: 768px) {
    :root {
        --header-height: 60px;
        --spacing-lg: 1.5rem;
        --spacing-xl: 2rem;
        --spacing-xxl: 2.5rem;
    }
}

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

html {
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden !important;
    width: 100% !important;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
    margin-bottom: var(--spacing-sm);
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--bg-overlay);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--border-color);
    z-index: 1000;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
    z-index: 1002;
    flex-shrink: 0;
    white-space: nowrap;
    margin-right: 0;
    margin-left: -4rem;
}

.logo-icon {
    font-size: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.logo-text {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.free-badge {
    background: linear-gradient(135deg, var(--success-color), #00cc66);
    color: var(--text-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    animation: bounce 3s infinite;
    box-shadow: 0 0 15px var(--success-color);
    white-space: nowrap;
    flex-shrink: 0;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Desktop Navigation */
.desktop-nav {
    display: none;
    flex: 1;
    justify-content: flex-end;
    align-items: center;
    min-width: 0;
    max-width: 100%;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    flex-wrap: nowrap;
    justify-content: flex-end;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

.nav-menu a {
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    color: var(--text-light);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
    white-space: nowrap;
    display: block;
    font-size: clamp(0.85rem, 1.2vw, 1rem);
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}

.btn-account {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color)) !important;
    color: var(--text-dark) !important;
    padding: var(--spacing-xs) var(--spacing-md) !important;
    border-radius: 25px !important;
    font-weight: 700;
    box-shadow: var(--shadow-glow);
    transition: all 0.3s ease !important;
    position: relative;
}

.btn-account::before {
    display: none !important;
}

.btn-account:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 0 30px var(--primary-color) !important;
    color: var(--text-dark) !important;
}

.btn-account:hover::before {
    display: none !important;
}

@media (min-width: 769px) {
    .desktop-nav {
        display: flex;
        flex: 1 1 auto;
        justify-content: flex-end;
        align-items: center;
        margin-left: 6rem;
        min-width: 0;
    }
    
    .logo {
        flex: 0 0 auto;
        margin-right: 6rem;
        margin-left: -4rem;
    }
    
    .header-content {
        padding: 0;
    }
    
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .mobile-nav {
        display: none !important;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
    flex-shrink: 0;
    margin-left: auto;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
    box-shadow: 0 0 5px var(--primary-color);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: calc(var(--header-height) - 1px);
    left: 0;
    right: 0;
    background: var(--bg-overlay);
    backdrop-filter: blur(20px);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    border-bottom: 2px solid var(--border-color);
}

.mobile-nav.active {
    transform: translateY(0);
}

.mobile-menu {
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.mobile-menu a {
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
}

.mobile-menu a:hover,
.mobile-menu a:active {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-dark);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .header-content {
        gap: var(--spacing-xs);
        padding: 0 var(--spacing-sm);
    }
    
    .logo {
        font-size: 1.2rem;
        gap: 4px;
    }
    
    .logo-icon {
        font-size: 1.5rem;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .free-badge {
        font-size: 0.6rem;
        padding: 3px 8px;
    }
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--secondary-color) 100%);
    background-attachment: scroll;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/assets../images/hero_desktop_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: var(--spacing-xxl) var(--spacing-md);
}

.hero-title {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.hero-subtitle {
    color: var(--text-gray);
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: var(--spacing-xl);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: var(--spacing-sm) var(--spacing-xl);
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-dark);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--primary-color);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-dark);
}

.hero-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--bg-dark), transparent);
    z-index: 1;
}

@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
        min-height: calc(100vh - var(--header-height));
    }
    
    .hero-background {
        background-image: url('/assets../images/hero_mobile_bg.png');
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

/* ===================================
   FEATURES SECTION
   =================================== */

.features {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-secondary);
}

.section-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xl);
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: var(--spacing-xl);
}

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

.feature-card {
    background: var(--bg-card);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    color: var(--text-gray);
}

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

/* ===================================
   GAMES SECTION
   =================================== */

.games-section {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-dark);
}

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

.game-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.game-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--bg-secondary);
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-overlay {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
}

.game-tag {
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
}

.game-info {
    padding: var(--spacing-lg);
}

.game-info h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.game-info p {
    color: var(--text-gray);
    margin-bottom: var(--spacing-md);
    font-size: 0.9rem;
}

.game-meta {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    font-size: 0.85rem;
    color: var(--text-gray);
}

.btn-play {
    display: inline-block;
    width: 100%;
    padding: var(--spacing-sm);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-dark);
    border-radius: var(--radius-md);
    font-weight: 700;
    text-align: center;
    transition: var(--transition);
}

.btn-play:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

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

/* ===================================
   FAQ SECTION
   =================================== */

.faq-section {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-secondary);
}

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

.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 var(--spacing-md);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: var(--spacing-md);
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */

.testimonials {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-dark);
}

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

.testimonial-card {
    background: var(--bg-card);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.testimonial-rating {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
}

.testimonial-text {
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-name {
    font-weight: 600;
    color: var(--primary-color);
}

.author-date {
    font-size: 0.85rem;
    color: var(--text-gray);
}

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

/* ===================================
   LEADERBOARD SECTION
   =================================== */

.leaderboard {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-secondary);
}

.leaderboard-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    justify-content: center;
    margin-top: var(--spacing-xl);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.leaderboard-card {
    background: var(--bg-card);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    min-width: 250px;
    flex: 1 1 250px;
    transition: var(--transition);
}

.leaderboard-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.rank-badge {
    font-size: 2rem;
}

.rank-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 30px;
}

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

.player-score {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.rank-1 {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.rank-2,
.rank-3 {
    border-color: var(--accent-color);
}

@media (max-width: 768px) {
    .leaderboard-grid {
        flex-direction: column;
    }
    
    .leaderboard-card {
        width: 100%;
    }
}

/* ===================================
   DISCLAIMER SECTION
   =================================== */

.disclaimer-section {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: var(--spacing-lg) 0;
    border-top: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.disclaimer-content {
    text-align: center;
}

.disclaimer-content h3 {
    color: white;
    margin-bottom: var(--spacing-md);
}

.disclaimer-content p {
    color: white;
    margin-bottom: var(--spacing-sm);
}

.disclaimer-badges {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-md);
}

.disclaimer-badges .badge {
    background: rgba(255, 255, 255, 0.2);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-md);
    font-weight: 700;
    border: 1px solid white;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: var(--bg-dark);
    border-top: 2px solid var(--border-color);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.footer-section p {
    color: var(--text-gray);
    line-height: 1.8;
}

.footer-free-notice {
    color: var(--success-color) !important;
    font-weight: 700;
    margin-top: var(--spacing-sm);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: var(--text-gray);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.compliance-logos {
    margin-top: var(--spacing-md);
}

.age-section {
    margin-bottom: var(--spacing-md);
}

.age-restriction {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.2rem;
}

.compliance-logos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.compliance-logo {
    height: 35px !important;
    width: auto !important;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px;
    border-radius: 8px;
    opacity: 0.9;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    max-width: 120px !important;
}

.compliance-logo:hover {
    opacity: 1;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px var(--glow-color);
}

.help-resources {
    margin-top: var(--spacing-md);
    font-size: 0.9rem;
    color: var(--text-gray);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-color);
    color: var(--text-gray);
}

.footer-bottom a {
    color: var(--primary-color);
}

.footer-address {
    margin-top: var(--spacing-xs);
    font-size: 0.9rem;
}

.footer-disclaimer {
    margin-top: var(--spacing-sm);
    color: var(--success-color);
    font-weight: 700;
}

/* ===================================
   AGE POPUP
   =================================== */

.age-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.age-popup-content {
    background: var(--bg-card);
    padding: var(--spacing-xxl);
    border-radius: var(--radius-lg);
    border: 2px solid var(--primary-color);
    text-align: center;
    max-width: 500px;
    margin: var(--spacing-md);
    box-shadow: var(--shadow-glow);
}

.age-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
}

.age-popup-content h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.age-popup-content p {
    color: var(--text-gray);
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
}

.age-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-top: var(--spacing-xl);
}

.btn-yes,
.btn-no,
.btn-ok {
    padding: var(--spacing-sm) var(--spacing-xl);
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn-yes {
    background: linear-gradient(135deg, var(--success-color), #00cc66);
    color: var(--text-dark);
}

.btn-yes:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--success-color);
}

.btn-no,
.btn-ok {
    background: var(--bg-secondary);
    color: var(--text-light);
    border: 2px solid var(--border-color);
}

.btn-no:hover,
.btn-ok:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* ===================================
   COOKIE BANNER
   =================================== */

.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 350px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-secondary) 100%);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: var(--spacing-md);
    z-index: 9999;
    display: none;
    box-shadow: var(--shadow-glow);
}

.cookie-content p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
}

.cookie-buttons {
    display: flex;
    gap: var(--spacing-sm);
}

.btn-accept,
.btn-learn-more {
    flex: 1;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
}

.btn-accept {
    background: linear-gradient(135deg, var(--success-color), #00cc66);
    color: var(--text-dark);
}

.btn-accept:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--success-color);
}

.btn-learn-more {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-learn-more:hover {
    background: var(--primary-color);
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 0;
        left: 0;
        right: 0;
        max-width: 100%;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}
