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

:root {
    --primary-dark: #041C32;
    --secondary-dark: #04293A;
    --accent-dark: #064663;
    --accent-gold: #ECB365;
    --text-light: #ffffff;
    --text-gray: #e0e0e0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.highlight {
    color: var(--accent-gold);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    min-width: 150px;
}

.btn-primary {
    background: linear-gradient(45deg, var(--accent-gold), #f4d03f);
    color: var(--primary-dark);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(236, 179, 101, 0.4);
}

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

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

.btn-login {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
    padding: 8px 20px;
    font-size: 14px;
    min-width: auto;
}

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

.btn-register {
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 8px 20px;
    font-size: 14px;
    min-width: auto;
}

.btn-register:hover {
    background: #f4d03f;
    transform: translateY(-1px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(4, 28, 50, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

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

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--accent-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-auth {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 50%, var(--accent-dark) 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-image {
    text-align: center;
    animation: fadeInRight 1s ease 0.4s both;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-light);
}

/* Features Section */
.features-section {
    background: var(--secondary-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--accent-dark);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    width: 64px;
    height: 64px;
    color: var(--accent-gold);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon svg {
    color: #f4d03f;
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 10px rgba(236, 179, 101, 0.5));
}

.feature-card h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

/* Login & Register Sections */
.login-section, .register-section {
    background: var(--primary-dark);
}

.login-content, .register-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.login-content h2, .register-content h2 {
    color: var(--accent-gold);
    margin-bottom: 2rem;
}

.login-content p, .register-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Login Timeline Styles */
.login-timeline {
    position: relative;
    margin: 3rem 0;
    text-align: left;
}

.login-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-gold), rgba(236, 179, 101, 0.3));
    border-radius: 2px;
}

.timeline-step {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 80px;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.6s ease forwards;
}

.timeline-step:nth-child(1) { animation-delay: 0.1s; }
.timeline-step:nth-child(2) { animation-delay: 0.2s; }
.timeline-step:nth-child(3) { animation-delay: 0.3s; }
.timeline-step:nth-child(4) { animation-delay: 0.4s; }

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-gold), #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    box-shadow: 0 0 20px rgba(236, 179, 101, 0.4);
    transition: all 0.3s ease;
}

.timeline-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(236, 179, 101, 0.6);
}

.step-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(236, 179, 101, 0.2);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    transition: all 0.3s ease;
}

.timeline-step:hover .step-content {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(236, 179, 101, 0.4);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.step-content h3 {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    text-shadow: 0 0 15px rgba(236, 179, 101, 0.3);
}

.step-content p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

.login-cta, .register-cta {
    margin-top: 3rem;
    text-align: center;
}

.login-note, .register-note {
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--text-gray);
    opacity: 0.8;
    font-style: italic;
}

/* Register Timeline Styles */
.register-timeline {
    position: relative;
    margin: 3rem 0;
    text-align: left;
}

.register-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-gold), rgba(236, 179, 101, 0.3));
    border-radius: 2px;
}

.register-timeline .timeline-step {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 80px;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInRight 0.6s ease forwards;
}

.register-timeline .timeline-step:nth-child(1) { animation-delay: 0.1s; }
.register-timeline .timeline-step:nth-child(2) { animation-delay: 0.2s; }
.register-timeline .timeline-step:nth-child(3) { animation-delay: 0.3s; }
.register-timeline .timeline-step:nth-child(4) { animation-delay: 0.4s; }

.register-timeline .step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-gold), #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    box-shadow: 0 0 20px rgba(236, 179, 101, 0.4);
    transition: all 0.3s ease;
}

.register-timeline .timeline-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(236, 179, 101, 0.6);
}

.register-timeline .step-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(236, 179, 101, 0.2);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    transition: all 0.3s ease;
}

.register-timeline .timeline-step:hover .step-content {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(236, 179, 101, 0.4);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.register-timeline .step-content h3 {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    text-shadow: 0 0 15px rgba(236, 179, 101, 0.3);
}

.register-timeline .step-content p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Responsive Timeline Styles */
@media (max-width: 768px) {
    .login-timeline::before,
    .register-timeline::before {
        left: 25px;
        width: 2px;
    }
    
    .timeline-step {
        padding-left: 70px;
        margin-bottom: 2rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .step-content {
        padding: 1.2rem 1.5rem;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
    
    .step-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .login-timeline::before,
    .register-timeline::before {
        left: 20px;
    }
    
    .timeline-step {
        padding-left: 60px;
        margin-bottom: 1.5rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .step-content {
        padding: 1rem 1.2rem;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
}

/* About Section */
.about-section {
    background: var(--secondary-dark);
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    color: var(--accent-gold);
    margin-bottom: 2rem;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Games Section */
.games-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 50%, var(--accent-dark) 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(236, 179, 101, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(236, 179, 101, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(236, 179, 101, 0.05) 0%, transparent 50%);
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

.games-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23ffffff" opacity="0.02"/><circle cx="25" cy="25" r="0.3" fill="%23ffffff" opacity="0.015"/><circle cx="75" cy="75" r="0.4" fill="%23ffffff" opacity="0.018"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
    opacity: 0.6;
}

.games-section .section-title {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--accent-gold), #f4d03f, #ffd700, var(--accent-gold));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(236, 179, 101, 0.3);
    position: relative;
    z-index: 2;
}

.games-section .section-title::before {
    content: '🎰';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    animation: bounce 2s ease-in-out infinite;
}

.games-section .section-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background: linear-gradient(45deg, var(--accent-gold), #f4d03f, #ffd700);
    margin: 2rem auto;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(236, 179, 101, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

.games-section .section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.game-card {
    background: linear-gradient(145deg, 
        rgba(6, 70, 99, 0.9) 0%, 
        rgba(4, 41, 58, 0.95) 50%, 
        rgba(4, 28, 50, 0.9) 100%);
    border-radius: 30px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(236, 179, 101, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(236, 179, 101, 0.15), 
        rgba(255, 215, 0, 0.1), 
        transparent);
    transition: left 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.game-card:hover::before {
    left: 100%;
}

.game-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(236, 179, 101, 0.05) 50%, 
        transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.game-card:hover::after {
    opacity: 1;
}

.game-card:hover {
    transform: translateY(-20px) scale(1.03) rotateY(5deg);
    box-shadow: 
        0 30px 80px rgba(236, 179, 101, 0.3),
        0 0 0 2px rgba(236, 179, 101, 0.3),
        0 0 40px rgba(236, 179, 101, 0.2);
    border-color: rgba(236, 179, 101, 0.4);
}

.game-card .card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(236, 179, 101, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.6s ease;
    z-index: -1;
}

.game-card:hover .card-glow {
    width: 200px;
    height: 200px;
}

.game-card img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    margin: 0 auto 2rem;
    border-radius: 25px;
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.1), 
        rgba(255, 255, 255, 0.05));
    padding: 1.5rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-card:hover img {
    transform: scale(1.15) rotateY(10deg) rotateZ(5deg);
    background: linear-gradient(145deg, 
        rgba(236, 179, 101, 0.15), 
        rgba(255, 215, 0, 0.1));
    box-shadow: 
        0 15px 40px rgba(236, 179, 101, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(236, 179, 101, 0.3);
}

.game-card h3 {
    color: var(--accent-gold);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, var(--accent-gold), #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.game-card:hover h3 {
    transform: scale(1.05);
    text-shadow: 0 4px 12px rgba(236, 179, 101, 0.4);
}

.game-card p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.game-card:hover p {
    color: var(--text-light);
}

.game-card .play-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, var(--accent-gold), #ffd700);
    color: var(--primary-dark);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(236, 179, 101, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.game-card .play-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.game-card .play-button:hover::before {
    left: 100%;
}

.game-card .play-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 179, 101, 0.5);
}

/* Floating particles animation */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(20px) rotate(240deg); }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes glow {
    0% { box-shadow: 0 0 20px rgba(236, 179, 101, 0.5); }
    100% { box-shadow: 0 0 30px rgba(236, 179, 101, 0.8), 0 0 40px rgba(236, 179, 101, 0.3); }
}

/* Games Section Responsive */
@media (max-width: 1200px) {
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
        padding: 0 1.5rem;
    }
    
    .games-section .section-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .games-section {
        padding: 80px 0;
        min-height: auto;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 2rem;
        padding: 0 1rem;
        margin-top: 3rem;
    }
    
    .game-card {
        padding: 2rem 1.5rem;
    }
    
    .game-card img {
        width: 120px;
        height: 120px;
        padding: 1rem;
    }
    
    .games-section .section-title {
        font-size: 3rem;
    }
    
    .games-section .section-title::before {
        font-size: 1.5rem;
        top: -15px;
    }
    
    .games-section .section-title::after {
        width: 100px;
        margin: 1.5rem auto;
    }
}

@media (max-width: 480px) {
    .games-section {
        padding: 60px 0;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .game-card {
        padding: 1.5rem 1rem;
    }
    
    .game-card img {
        width: 100px;
        height: 100px;
        padding: 0.75rem;
    }
    
    .games-section .section-title {
        font-size: 2.5rem;
    }
    
    .game-card h3 {
        font-size: 1.5rem;
    }
    
    .game-card p {
        font-size: 0.9rem;
    }
    
    .play-button {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
}

/* Enhanced hover effects for touch devices */
@media (hover: none) {
    .game-card:hover {
        transform: none;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    }
    
    .game-card:active {
        transform: translateY(-5px) scale(1.01);
        box-shadow: 0 25px 70px rgba(236, 179, 101, 0.25);
    }
    
    .game-card:active img {
        transform: scale(1.05);
    }
}

/* Benefits Section */
.benefits-section {
    background: var(--secondary-dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-item h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.benefit-item p {
    color: var(--text-gray);
}

/* Testimonials Section */
.testimonials-section {
    background: var(--primary-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--accent-dark);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.testimonial-author {
    color: var(--accent-gold);
    font-weight: 600;
}

/* Stats Section */
.stats-section {
    background: var(--secondary-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    background: var(--primary-dark);
    text-align: center;
}

.cta-section h2 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

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

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--accent-dark);
    color: var(--text-gray);
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-dark);
        flex-direction: column;
        padding: 2rem 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    section {
        padding: 60px 0;
    }

    .feature-card, .game-card, .testimonial-card {
        padding: 1.5rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
.btn:focus, .nav-link:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --text-gray: #ffffff;
        --accent-gold: #ffff00;
    }
}

/* Print styles */
@media print {
    .navbar, .nav-toggle, .btn {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
} 

/* About Page Styles */
.about-story-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(236, 179, 101, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(236, 179, 101, 0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

.about-story-section .container {
    position: relative;
    z-index: 2;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-light);
}

.story-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--accent-gold), #f4d03f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(236, 179, 101, 0.3);
    animation: glow 3s ease-in-out infinite alternate;
}

.story-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.story-content p:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Mission & Vision Section */
.mission-vision-section {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--accent-dark) 100%);
    padding: 120px 0;
    position: relative;
}

.mission-vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(236,179,101,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.mission-card,
.vision-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(236, 179, 101, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(236, 179, 101, 0.1), transparent);
    transition: left 0.6s ease;
}

.mission-card:hover::before,
.vision-card:hover::before {
    left: 100%;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(236, 179, 101, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                0 0 40px rgba(236, 179, 101, 0.2);
}

.mission-card h3,
.vision-card h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
    text-shadow: 0 0 20px rgba(236, 179, 101, 0.5);
}

.mission-card p,
.vision-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    opacity: 0.9;
}

/* Values Section */
.values-section {
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--primary-dark) 100%);
    padding: 120px 0;
    position: relative;
}

.values-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(236, 179, 101, 0.05) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.values-section .section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.value-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(236, 179, 101, 0.15);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(236, 179, 101, 0.05) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card:hover::after {
    opacity: 1;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(236, 179, 101, 0.4);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25),
                0 0 30px rgba(236, 179, 101, 0.15);
}

.value-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
    text-shadow: 0 0 15px rgba(236, 179, 101, 0.4);
}

.value-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    opacity: 0.85;
}

/* Team Section */
.team-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    padding: 120px 0;
    position: relative;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(236,179,101,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(236,179,101,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(236,179,101,0.1)"/><circle cx="90" cy="90" r="1.5" fill="rgba(236,179,101,0.1)"/></svg>');
    animation: float 25s ease-in-out infinite;
}

.team-section .section-title {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-light);
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.team-member {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(236, 179, 101, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(236, 179, 101, 0.1), transparent);
    animation: rotate 10s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-member:hover::before {
    opacity: 1;
}

.team-member:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: rgba(236, 179, 101, 0.5);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3),
                0 0 50px rgba(236, 179, 101, 0.2);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 3px solid rgba(236, 179, 101, 0.3);
    transition: all 0.4s ease;
    object-fit: cover;
}

.team-member:hover img {
    border-color: rgba(236, 179, 101, 0.8);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(236, 179, 101, 0.4);
}

.team-member h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
    text-shadow: 0 0 15px rgba(236, 179, 101, 0.4);
}

.team-member p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    opacity: 0.85;
}

/* Achievements Section */
.achievements-section {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--accent-dark) 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.achievements-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(236, 179, 101, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(236, 179, 101, 0.08) 0%, transparent 50%);
    animation: float 18s ease-in-out infinite;
}

.achievements-section .section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.achievement-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(236, 179, 101, 0.2);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.achievement-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(236, 179, 101, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.achievement-item:hover::after {
    transform: translateX(100%);
}

.achievement-item:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(236, 179, 101, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25),
                0 0 40px rgba(236, 179, 101, 0.2);
}

.achievement-item h3 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--accent-gold), #f4d03f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(236, 179, 101, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

.achievement-item p {
    font-size: 1.1rem;
    color: var(--text-light);
    opacity: 0.9;
    font-weight: 500;
}

/* Additional Animations */
@keyframes glow {
    0% { text-shadow: 0 0 20px rgba(236, 179, 101, 0.3); }
    100% { text-shadow: 0 0 40px rgba(236, 179, 101, 0.6); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive Styles for About Page */
@media (max-width: 768px) {
    .story-content h2 {
        font-size: 2.5rem;
    }
    
    .story-content p {
        font-size: 1.1rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-card,
    .vision-card {
        padding: 2rem 1.5rem;
    }
    
    .mission-card h3,
    .vision-card h3 {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .achievement-item h3 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .about-story-section,
    .mission-vision-section,
    .values-section,
    .team-section,
    .achievements-section {
        padding: 80px 0;
    }
    
    .story-content h2 {
        font-size: 2rem;
    }
    
    .story-content p {
        font-size: 1rem;
    }
    
    .mission-card,
    .vision-card,
    .value-card,
    .team-member,
    .achievement-item {
        padding: 1.5rem 1rem;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .achievement-item h3 {
        font-size: 2rem;
    }
} 

/* Contact Page Styles */
.contact-info-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 75%, rgba(236, 179, 101, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 75% 25%, rgba(236, 179, 101, 0.08) 0%, transparent 50%);
    animation: float 22s ease-in-out infinite;
}

.contact-info-section .section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.contact-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(236, 179, 101, 0.2);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(236, 179, 101, 0.1), transparent);
    transition: left 0.8s ease;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(236, 179, 101, 0.5);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3),
                0 0 50px rgba(236, 179, 101, 0.2);
}

.contact-icon {
    margin-bottom: 2rem;
    position: relative;
}

.contact-icon svg {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(236, 179, 101, 0.1), rgba(236, 179, 101, 0.05));
    border: 2px solid rgba(236, 179, 101, 0.3);
    transition: all 0.4s ease;
    color: var(--accent-gold);
}

.contact-card:hover .contact-icon svg {
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(236, 179, 101, 0.8);
    box-shadow: 0 0 30px rgba(236, 179, 101, 0.4);
    color: #f4d03f;
}

.contact-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
    text-shadow: 0 0 20px rgba(236, 179, 101, 0.4);
}

.contact-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.contact-details {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(236, 179, 101, 0.1);
}

.contact-details p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    opacity: 0.85;
}

.contact-details strong {
    color: var(--accent-gold);
}

/* Contact Form Section */
.contact-form-section {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--accent-dark) 100%);
    padding: 120px 0;
    position: relative;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(236,179,101,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.4;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-form-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.contact-form-container p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--text-light);
    opacity: 0.9;
}

.contact-form {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(236, 179, 101, 0.2);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    color: var(--accent-gold);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(236, 179, 101, 0.2);
    border-radius: 12px;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(236, 179, 101, 0.8);
    box-shadow: 0 0 20px rgba(236, 179, 101, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-light);
    opacity: 0.9;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    accent-color: var(--accent-gold);
}

.checkbox-label a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.checkbox-label a:hover {
    text-shadow: 0 0 10px rgba(236, 179, 101, 0.5);
}

.contact-form .btn {
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* FAQ Preview Section */
.faq-preview-section {
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--primary-dark) 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.faq-preview-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(236, 179, 101, 0.06) 0%, transparent 70%);
    animation: pulse 5s ease-in-out infinite;
}

.faq-preview-section .section-title {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.faq-preview-section > .container > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    color: var(--text-light);
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(236, 179, 101, 0.15);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.faq-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(236, 179, 101, 0.05) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.faq-item:hover::after {
    opacity: 1;
}

.faq-item:hover {
    transform: translateY(-8px);
    border-color: rgba(236, 179, 101, 0.4);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25),
                0 0 30px rgba(236, 179, 101, 0.15);
}

.faq-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
    text-shadow: 0 0 15px rgba(236, 179, 101, 0.4);
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    opacity: 0.85;
}

.faq-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.faq-cta .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Support Team Section */
.support-team-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    padding: 120px 0;
    position: relative;
}

.support-team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagons" width="25" height="25" patternUnits="userSpaceOnUse"><path d="M12.5 0L25 7.5L25 18.75L12.5 25L0 18.75L0 7.5Z" fill="none" stroke="rgba(236,179,101,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagons)"/></svg>');
    opacity: 0.3;
}

.support-team-section .section-title {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.support-team-section > .container > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-light);
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.support-team-section .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.support-team-section .team-member {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(236, 179, 101, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.support-team-section .team-member::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(236, 179, 101, 0.1), transparent);
    animation: rotate 12s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.support-team-section .team-member:hover::before {
    opacity: 1;
}

.support-team-section .team-member:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: rgba(236, 179, 101, 0.5);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3),
                0 0 50px rgba(236, 179, 101, 0.2);
}

.support-team-section .team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 3px solid rgba(236, 179, 101, 0.3);
    transition: all 0.4s ease;
    object-fit: cover;
}

.support-team-section .team-member:hover img {
    border-color: rgba(236, 179, 101, 0.8);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(236, 179, 101, 0.4);
}

.support-team-section .team-member h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
    text-shadow: 0 0 15px rgba(236, 179, 101, 0.4);
}

.support-team-section .team-member p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    opacity: 0.85;
}

/* Responsive Styles for Contact Page */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-card h3 {
        font-size: 1.6rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-container h2 {
        font-size: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .support-team-section .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-info-section,
    .contact-form-section,
    .faq-preview-section,
    .support-team-section {
        padding: 80px 0;
    }
    
    .contact-card {
        padding: 1.5rem 1rem;
    }
    
    .contact-form {
        padding: 1.5rem 1rem;
    }
    
    .contact-form-container h2 {
        font-size: 1.8rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem 1.2rem;
    }
    
    .faq-item {
        padding: 1.5rem 1rem;
    }
    
    .support-team-section .team-member {
        padding: 1.5rem 1rem;
    }
} 

/* FAQ Page Styles */
.faq-search-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.faq-search-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(236, 179, 101, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(236, 179, 101, 0.08) 0%, transparent 50%);
    animation: float 25s ease-in-out infinite;
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.search-input {
    width: 100%;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(236, 179, 101, 0.3);
    border-radius: 50px;
    color: var(--text-light);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.search-input:focus {
    outline: none;
    border-color: rgba(236, 179, 101, 0.8);
    box-shadow: 0 0 30px rgba(236, 179, 101, 0.4),
                0 15px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--accent-gold), #f4d03f);
    border: none;
    border-radius: 50px;
    padding: 1rem 2rem;
    color: var(--primary-dark);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(236, 179, 101, 0.3);
}

.search-btn:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 8px 25px rgba(236, 179, 101, 0.5);
}

/* FAQ Categories Section */
.faq-categories-section {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--accent-dark) 100%);
    padding: 80px 0;
    position: relative;
}

.faq-categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circles" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="rgba(236,179,101,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23circles)"/></svg>');
    opacity: 0.4;
}

.categories-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.category-btn {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(236, 179, 101, 0.2);
    border-radius: 50px;
    padding: 1rem 2rem;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(236, 179, 101, 0.2), transparent);
    transition: left 0.6s ease;
}

.category-btn:hover::before {
    left: 100%;
}

.category-btn:hover,
.category-btn.active {
    background: rgba(236, 179, 101, 0.15);
    border-color: rgba(236, 179, 101, 0.6);
    color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2),
                0 0 20px rgba(236, 179, 101, 0.3);
}

/* FAQ Content Section */
.faq-content-section {
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--primary-dark) 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.faq-content-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(236, 179, 101, 0.05) 0%, transparent 70%);
    animation: pulse 6s ease-in-out infinite;
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-category {
    margin-bottom: 4rem;
}

.faq-category h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--accent-gold);
    text-shadow: 0 0 25px rgba(236, 179, 101, 0.5);
    position: relative;
}

.faq-category h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    border-radius: 2px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(236, 179, 101, 0.15);
    border-radius: 20px;
    margin-bottom: 2rem;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(236, 179, 101, 0.03) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item:hover {
    border-color: rgba(236, 179, 101, 0.4);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25),
                0 0 30px rgba(236, 179, 101, 0.15);
    transform: translateY(-5px);
}

.faq-item h3 {
    background: rgba(255, 255, 255, 0.08);
    padding: 2rem 2.5rem;
    margin: 0;
    font-size: 1.3rem;
    color: var(--accent-gold);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-item h3::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

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

.faq-item:hover h3 {
    background: rgba(255, 255, 255, 0.12);
    color: #f4d03f;
}

.faq-answer {
    padding: 0 2.5rem 2rem;
    color: var(--text-light);
    opacity: 0.9;
    line-height: 1.7;
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer ul,
.faq-answer ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.faq-answer strong {
    color: var(--accent-gold);
}

/* Still Have Questions Section */
.still-have-questions-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    padding: 120px 0;
    position: relative;
    text-align: center;
}

.still-have-questions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M20 0L24.5 15.5L40 20L24.5 24.5L20 40L15.5 24.5L0 20L15.5 15.5Z" fill="rgba(236,179,101,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
}

.still-have-questions-section .container {
    position: relative;
    z-index: 2;
}

.still-have-questions-section h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    text-shadow: 0 0 30px rgba(236, 179, 101, 0.3);
}

.still-have-questions-section p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: var(--text-light);
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-options {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-options .btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    min-width: 200px;
}

/* FAQ Item Animation */
.faq-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

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

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles for FAQ Page */
@media (max-width: 768px) {
    .faq-search-section,
    .faq-categories-section {
        padding: 60px 0;
    }
    
    .faq-content-section {
        padding: 80px 0;
    }
    
    .search-input {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }
    
    .search-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .categories-grid {
        gap: 1rem;
    }
    
    .category-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .faq-category h2 {
        font-size: 2rem;
    }
    
    .faq-item h3 {
        padding: 1.5rem 2rem;
        font-size: 1.2rem;
    }
    
    .faq-answer {
        padding: 0 2rem 1.5rem;
    }
    
    .still-have-questions-section h2 {
        font-size: 2.5rem;
    }
    
    .still-have-questions-section p {
        font-size: 1.1rem;
    }
    
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-options .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .faq-search-section,
    .faq-categories-section,
    .faq-content-section,
    .still-have-questions-section {
        padding: 60px 0;
    }
    
    .search-input {
        padding: 1rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .search-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .category-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .faq-category h2 {
        font-size: 1.8rem;
    }
    
    .faq-item h3 {
        padding: 1.2rem 1.5rem;
        font-size: 1.1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem 1.2rem;
    }
    
    .still-have-questions-section h2 {
        font-size: 2rem;
    }
    
    .still-have-questions-section p {
        font-size: 1rem;
    }
} 

/* Privacy, Terms & Disclaimer Page Styles */
.privacy-content-section,
.terms-content-section,
.disclaimer-content-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.privacy-content-section::before,
.terms-content-section::before,
.disclaimer-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 75%, rgba(236, 179, 101, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 75% 25%, rgba(236, 179, 101, 0.06) 0%, transparent 50%);
    animation: float 28s ease-in-out infinite;
}

.privacy-content,
.terms-content,
.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.privacy-content h2,
.terms-content h2,
.disclaimer-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--accent-gold);
    text-shadow: 0 0 25px rgba(236, 179, 101, 0.4);
    position: relative;
}

.privacy-content h2::after,
.terms-content h2::after,
.disclaimer-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
    border-radius: 2px;
}

.privacy-content h3,
.terms-content h3,
.disclaimer-content h3 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    color: var(--accent-gold);
    text-shadow: 0 0 20px rgba(236, 179, 101, 0.3);
    position: relative;
}

.privacy-content h3::before,
.terms-content h3::before,
.disclaimer-content h3::before {
    content: '◆';
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-gold);
    font-size: 1.2rem;
    opacity: 0.7;
}

.privacy-content p,
.terms-content p,
.disclaimer-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.privacy-content p:hover,
.terms-content p:hover,
.disclaimer-content p:hover {
    opacity: 1;
    transform: translateX(5px);
}

.privacy-content ul,
.terms-content ul,
.disclaimer-content ul,
.privacy-content ol,
.terms-content ol,
.disclaimer-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.privacy-content li,
.terms-content li,
.disclaimer-content li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
    color: var(--text-light);
    opacity: 0.85;
    transition: all 0.3s ease;
}

.privacy-content li:hover,
.terms-content li:hover,
.disclaimer-content li:hover {
    opacity: 1;
    transform: translateX(3px);
}

.privacy-content strong,
.terms-content strong,
.disclaimer-content strong {
    color: var(--accent-gold);
    font-weight: 600;
}

.privacy-content a,
.terms-content a,
.disclaimer-content a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.privacy-content a:hover,
.terms-content a:hover,
.disclaimer-content a:hover {
    color: #f4d03f;
    border-bottom-color: #f4d03f;
    text-shadow: 0 0 10px rgba(236, 179, 101, 0.5);
}

/* Content Cards */
.privacy-content .content-card,
.terms-content .content-card,
.disclaimer-content .content-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(236, 179, 101, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2rem 0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.privacy-content .content-card::before,
.terms-content .content-card::before,
.disclaimer-content .content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(236, 179, 101, 0.1), transparent);
    transition: left 0.8s ease;
}

.privacy-content .content-card:hover::before,
.terms-content .content-card:hover::before,
.disclaimer-content .content-card:hover::before {
    left: 100%;
}

.privacy-content .content-card:hover,
.terms-content .content-card:hover,
.disclaimer-content .content-card:hover {
    transform: translateY(-8px);
    border-color: rgba(236, 179, 101, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25),
                0 0 40px rgba(236, 179, 101, 0.15);
}

/* Section Dividers */
.privacy-content .section-divider,
.terms-content .section-divider,
.disclaimer-content .section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(236, 179, 101, 0.3), transparent);
    margin: 3rem 0;
    border-radius: 1px;
}

/* Highlighted Text */
.privacy-content .highlight-text,
.terms-content .highlight-text,
.disclaimer-content .highlight-text {
    background: linear-gradient(135deg, rgba(236, 179, 101, 0.1), rgba(236, 179, 101, 0.05));
    border-left: 4px solid var(--accent-gold);
    padding: 1.5rem 2rem;
    border-radius: 0 12px 12px 0;
    margin: 2rem 0;
    position: relative;
}

.privacy-content .highlight-text::before,
.terms-content .highlight-text::before,
.disclaimer-content .highlight-text::before {
    content: '💡';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    background: var(--primary-dark);
    padding: 0.5rem;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
}

/* Table Styles */
.privacy-content table,
.terms-content table,
.disclaimer-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.privacy-content th,
.terms-content th,
.disclaimer-content th {
    background: rgba(236, 179, 101, 0.1);
    color: var(--accent-gold);
    padding: 1.2rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid rgba(236, 179, 101, 0.2);
}

.privacy-content td,
.terms-content td,
.disclaimer-content td {
    padding: 1.2rem;
    border-bottom: 1px solid rgba(236, 179, 101, 0.1);
    color: var(--text-light);
    opacity: 0.9;
}

.privacy-content tr:hover,
.terms-content tr:hover,
.disclaimer-content tr:hover {
    background: rgba(236, 179, 101, 0.05);
}

/* Blockquote Styles */
.privacy-content blockquote,
.terms-content blockquote,
.disclaimer-content blockquote {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--accent-gold);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 0 12px 12px 0;
    position: relative;
    font-style: italic;
}

.privacy-content blockquote::before,
.terms-content blockquote::before,
.disclaimer-content blockquote::before {
    content: '"';
    position: absolute;
    left: -10px;
    top: -10px;
    font-size: 3rem;
    color: var(--accent-gold);
    opacity: 0.3;
}

/* Code/Technical Text */
.privacy-content code,
.terms-content code,
.disclaimer-content code {
    background: rgba(236, 179, 101, 0.1);
    color: var(--accent-gold);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    border: 1px solid rgba(236, 179, 101, 0.2);
}

/* Last Updated Section */
.privacy-content .last-updated,
.terms-content .last-updated,
.disclaimer-content .last-updated {
    background: rgba(236, 179, 101, 0.1);
    border: 2px solid rgba(236, 179, 101, 0.3);
    border-radius: 16px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.privacy-content .last-updated::before,
.terms-content .last-updated::before,
.disclaimer-content .last-updated::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(236, 179, 101, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.privacy-content .last-updated:hover::before,
.terms-content .last-updated:hover::before,
.disclaimer-content .last-updated:hover::before {
    transform: translateX(100%);
}

.privacy-content .last-updated h4,
.terms-content .last-updated h4,
.disclaimer-content .last-updated h4 {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(236, 179, 101, 0.4);
}

.privacy-content .last-updated p,
.terms-content .last-updated p,
.disclaimer-content .last-updated p {
    color: var(--text-light);
    opacity: 0.9;
    margin: 0;
}

/* Responsive Styles for Legal Pages */
@media (max-width: 768px) {
    .privacy-content-section,
    .terms-content-section,
    .disclaimer-content-section {
        padding: 80px 0;
    }
    
    .privacy-content h2,
    .terms-content h2,
    .disclaimer-content h2 {
        font-size: 2.2rem;
    }
    
    .privacy-content h3,
    .terms-content h3,
    .disclaimer-content h3 {
        font-size: 1.6rem;
        margin: 2rem 0 1rem;
    }
    
    .privacy-content h3::before,
    .terms-content h3::before,
    .disclaimer-content h3::before {
        left: -20px;
        font-size: 1rem;
    }
    
    .privacy-content .content-card,
    .terms-content .content-card,
    .disclaimer-content .content-card {
        padding: 2rem 1.5rem;
        margin: 1.5rem 0;
    }
    
    .privacy-content p,
    .terms-content p,
    .disclaimer-content p {
        font-size: 1rem;
    }
    
    .privacy-content li,
    .terms-content li,
    .disclaimer-content li {
        font-size: 1rem;
    }
    
    .privacy-content table,
    .terms-content table,
    .disclaimer-content table {
        font-size: 0.9rem;
    }
    
    .privacy-content th,
    .terms-content th,
    .disclaimer-content th,
    .privacy-content td,
    .terms-content td,
    .disclaimer-content td {
        padding: 1rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .privacy-content-section,
    .terms-content-section,
    .disclaimer-content-section {
        padding: 60px 0;
    }
    
    .privacy-content h2,
    .terms-content h2,
    .disclaimer-content h2 {
        font-size: 1.8rem;
    }
    
    .privacy-content h3,
    .terms-content h3,
    .disclaimer-content h3 {
        font-size: 1.4rem;
        margin: 1.5rem 0 1rem;
    }
    
    .privacy-content h3::before,
    .terms-content h3::before,
    .disclaimer-content h3::before {
        left: -18px;
        font-size: 0.9rem;
    }
    
    .privacy-content .content-card,
    .terms-content .content-card,
    .disclaimer-content .content-card {
        padding: 1.5rem 1rem;
        margin: 1rem 0;
    }
    
    .privacy-content p,
    .terms-content p,
    .disclaimer-content p {
        font-size: 0.95rem;
    }
    
    .privacy-content li,
    .terms-content li,
    .disclaimer-content li {
        font-size: 0.95rem;
    }
    
    .privacy-content ul,
    .terms-content ul,
    .disclaimer-content ul,
    .privacy-content ol,
    .terms-content ol,
    .disclaimer-content ol {
        padding-left: 1.5rem;
    }
    
    .privacy-content .highlight-text,
    .terms-content .highlight-text,
    .disclaimer-content .highlight-text {
        padding: 1rem 1.5rem;
        margin: 1.5rem 0;
    }
    
    .privacy-content .last-updated,
    .terms-content .last-updated,
    .disclaimer-content .last-updated {
        padding: 1.5rem;
        margin: 2rem 0;
    }
} 

/* Back to Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-gold), #f4d03f);
    border: none;
    border-radius: 50%;
    color: var(--primary-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(236, 179, 101, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4),
                0 0 30px rgba(236, 179, 101, 0.6);
    background: linear-gradient(135deg, #f4d03f, var(--accent-gold));
}

.back-to-top-btn:active {
    transform: translateY(-2px) scale(1.05);
}

.back-to-top-btn svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.back-to-top-btn:hover svg {
    transform: translateY(-2px);
}

/* Responsive Back to Top Button */
@media (max-width: 768px) {
    .back-to-top-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .back-to-top-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .back-to-top-btn {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
    
    .back-to-top-btn svg {
        width: 18px;
        height: 18px;
    }
} 

/* 404 Error Page Styles */
.error-hero-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 50%, var(--accent-dark) 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.error-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(236, 179, 101, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(236, 179, 101, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(236, 179, 101, 0.05) 0%, transparent 50%);
    pointer-events: none;
    animation: float 25s ease-in-out infinite;
}

.error-hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="error-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M25 0L50 25L25 50L0 25Z" fill="none" stroke="rgba(236,179,101,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23error-pattern)"/></svg>');
    pointer-events: none;
    opacity: 0.4;
}

.error-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.error-number {
    font-size: 12rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-gold), #f4d03f, #e74c3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 50px rgba(236, 179, 101, 0.3);
    margin-bottom: 1rem;
    animation: errorGlow 3s ease-in-out infinite alternate;
    position: relative;
}

.error-number::after {
    content: '404';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(236, 179, 101, 0.1), transparent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: errorShimmer 2s ease-in-out infinite;
    z-index: -1;
}

.error-title {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(236, 179, 101, 0.3);
}

.error-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    opacity: 0.9;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.error-actions .btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    min-width: 200px;
    transition: all 0.3s ease;
}

.error-actions .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Error Content Section */
.error-content-section {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--accent-dark) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.error-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="error-dots" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="rgba(236,179,101,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23error-dots)"/></svg>');
    opacity: 0.3;
}

.error-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.error-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--accent-gold);
    text-shadow: 0 0 25px rgba(236, 179, 101, 0.4);
}

.error-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.error-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(236, 179, 101, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.error-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(236, 179, 101, 0.1), transparent);
    transition: left 0.8s ease;
}

.error-card:hover::before {
    left: 100%;
}

.error-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(236, 179, 101, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                0 0 40px rgba(236, 179, 101, 0.2);
}

.error-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(236, 179, 101, 0.1), rgba(236, 179, 101, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(236, 179, 101, 0.3);
    transition: all 0.4s ease;
}

.error-card:hover .error-card-icon {
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(236, 179, 101, 0.8);
    box-shadow: 0 0 30px rgba(236, 179, 101, 0.4);
}

.error-card-icon svg {
    width: 40px;
    height: 40px;
    color: var(--accent-gold);
    transition: all 0.4s ease;
}

.error-card:hover .error-card-icon svg {
    color: #f4d03f;
}

.error-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
    text-shadow: 0 0 15px rgba(236, 179, 101, 0.4);
}

.error-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    opacity: 0.9;
}

/* Error CTA Section */
.error-cta-section {
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--primary-dark) 100%);
    padding: 100px 0;
    position: relative;
    text-align: center;
}

.error-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="error-stars" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M20 0L24.5 15.5L40 20L24.5 24.5L20 40L15.5 24.5L0 20L15.5 15.5Z" fill="rgba(236,179,101,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23error-stars)"/></svg>');
    opacity: 0.3;
}

.error-cta-section .container {
    position: relative;
    z-index: 2;
}

.error-cta-section h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    text-shadow: 0 0 30px rgba(236, 179, 101, 0.3);
}

.error-cta-section p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: var(--text-light);
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.error-cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.error-cta-buttons .btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    min-width: 200px;
}

/* Error Page Animations */
@keyframes errorGlow {
    0% { text-shadow: 0 0 30px rgba(236, 179, 101, 0.3); }
    100% { text-shadow: 0 0 60px rgba(236, 179, 101, 0.6); }
}

@keyframes errorShimmer {
    0% { opacity: 0.3; transform: translateX(-100%); }
    50% { opacity: 0.6; transform: translateX(0%); }
    100% { opacity: 0.3; transform: translateX(100%); }
}

/* Responsive Styles for 404 Page */
@media (max-width: 768px) {
    .error-hero-section {
        padding: 80px 0;
        min-height: 50vh;
    }
    
    .error-number {
        font-size: 8rem;
    }
    
    .error-title {
        font-size: 2.2rem;
    }
    
    .error-subtitle {
        font-size: 1.1rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .error-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .error-content h2 {
        font-size: 2rem;
    }
    
    .error-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .error-cta-section h2 {
        font-size: 2.5rem;
    }
    
    .error-cta-section p {
        font-size: 1.1rem;
    }
    
    .error-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .error-cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .error-hero-section {
        padding: 60px 0;
        min-height: 40vh;
    }
    
    .error-number {
        font-size: 6rem;
    }
    
    .error-title {
        font-size: 1.8rem;
    }
    
    .error-subtitle {
        font-size: 1rem;
    }
    
    .error-content-section,
    .error-cta-section {
        padding: 80px 0;
    }
    
    .error-content h2 {
        font-size: 1.8rem;
    }
    
    .error-card {
        padding: 2rem 1.5rem;
    }
    
    .error-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .error-card-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .error-cta-section h2 {
        font-size: 2rem;
    }
    
    .error-cta-section p {
        font-size: 1rem;
    }
} 