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

:root {
    /* ColorHunt Palette - ONLY these 4 colors allowed */
    --primary-color: #635985;      /* Muted Purple - CTAs, buttons, links */
    --secondary-color: #443C68;    /* Deep Slate Purple - Cards, section backgrounds */
    --accent-color: #393053;       /* Dark Plum - Accents, interactive elements */
    --background-color: #18122B;   /* Near-Black Navy - Main background */
    
    /* Text colors - White for high contrast */
    --text-light: #ffffff;
    --text-dark: #ffffff;
    --text-muted: #cccccc;
    
    /* Border and shadow colors using palette */
    --border-color: #635985;
    --shadow: 0 4px 6px rgba(99, 89, 133, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(99, 89, 133, 0.4);
    --shadow-xl: 0 20px 25px -5px rgba(99, 89, 133, 0.5);
    
    /* Other properties */
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --transition: all 0.3s ease;
    --success-color: #635985;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-color);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

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

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Skip to content link for screen readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
}

.skip-link:focus {
    top: 6px;
}

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

/* Header and Navigation */
.header {
    background: linear-gradient(135deg, var(--accent-color), var(--background-color));
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.logo-container h2 {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
}

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

.nav-item {
    margin: 0;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    display: block;
}

.nav-link:hover,
.nav-link:focus {
    background-color: rgba(99, 89, 133, 0.1);
    color: var(--primary-color);
}

.nav-link.active {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.login-btn {
    background-color: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    transition: var(--transition);
    font-weight: 500;
    margin-left: 1rem;
}

.login-btn:hover,
.login-btn:focus {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* New Header Structure Styles */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 {
    color: var(--text-light);
    font-size: 1.8rem;
    margin: 0;
    font-weight: 700;
}

.logo p {
    color: var(--text-light);
    opacity: 0.8;
    margin: 0;
    font-size: 0.9rem;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
    min-width: 120px;
}

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

.btn-primary:hover,
.btn-primary:focus {
    background: #7a6b9a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-login {
    background: var(--accent-color);
    color: var(--text-light);
}

.btn-login:hover,
.btn-login:focus {
    background: #4a3a5e;
}

.btn-register {
    background: var(--primary-color);
    color: var(--text-light);
}

.btn-register:hover,
.btn-register:focus {
    background: #7a6b9a;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    min-width: 180px;
}

/* Hero Section - Enhanced Modern Design */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--background-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    color: var(--text-light);
    padding: 6rem 0 8rem;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(99, 89, 133, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(68, 60, 104, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(57, 48, 83, 0.1) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 89, 133, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.15; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.25; transform: translate(-50%, -50%) scale(1.1); }
}

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

.hero-content {
    text-align: left;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(99, 89, 133, 0.3);
    animation: badgeFloat 3s ease-in-out infinite;
}

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

.hero-title {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title-main {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 20px rgba(99, 89, 133, 0.3);
    animation: titleSlideIn 1s ease-out;
}

.hero-title-sub {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-light);
    opacity: 0.8;
    animation: titleSlideIn 1s ease-out 0.2s both;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    opacity: 0.9;
    animation: subtitleFadeIn 1s ease-out 0.4s both;
}

@keyframes subtitleFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    animation: statsSlideUp 1s ease-out 0.6s both;
}

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

.hero-stat {
    text-align: center;
}

.hero-stat .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(99, 89, 133, 0.3);
}

.hero-stat .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: ctaSlideUp 1s ease-out 0.8s both;
    flex-wrap: wrap;
}

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

.hero-cta .btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.hero-cta .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

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

.hero-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(99, 89, 133, 0.4);
}

.btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.hero-cta .btn:hover .btn-icon {
    transform: scale(1.1);
}

.hero-trust {
    animation: trustFadeIn 1s ease-out 1s both;
}

@keyframes trustFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trust-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Hero Visual Section - Updated with Image */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: visualSlideIn 1s ease-out 0.3s both;
}

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

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-main-image {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(99, 89, 133, 0.4);
    transition: all 0.4s ease;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.hero-main-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 80px rgba(99, 89, 133, 0.6);
}

.hero-image-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(24, 18, 43, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-stats-overlay {
    display: flex;
    gap: 20px;
    align-items: center;
}

.overlay-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.overlay-stat:hover {
    transform: translateY(-3px);
}

.stat-icon {
    font-size: 1.5rem;
    display: block;
    animation: iconFloat 3s ease-in-out infinite;
}

.overlay-stat:nth-child(2) .stat-icon {
    animation-delay: 1s;
}

.overlay-stat:nth-child(3) .stat-icon {
    animation-delay: 2s;
}

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

.stat-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

/* Responsive Design for Hero Image */
@media (max-width: 1024px) {
    .hero-visual {
        height: 400px;
    }
    
    .hero-main-image {
        max-height: 350px;
    }
    
    .hero-stats-overlay {
        gap: 15px;
    }
    
    .overlay-stat {
        gap: 6px;
    }
    
    .stat-icon {
        font-size: 1.3rem;
    }
    
    .stat-text {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .hero-visual {
        height: 300px;
    }
    
    .hero-main-image {
        max-height: 250px;
    }
    
    .hero-image-overlay {
        bottom: 15px;
        padding: 15px;
    }
    
    .hero-stats-overlay {
        gap: 12px;
    }
    
    .overlay-stat {
        gap: 5px;
    }
    
    .stat-icon {
        font-size: 1.1rem;
    }
    
    .stat-text {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .hero-visual {
        height: 250px;
    }
    
    .hero-main-image {
        max-height: 200px;
    }
    
    .hero-image-overlay {
        bottom: 10px;
        padding: 12px;
    }
    
    .hero-stats-overlay {
        gap: 10px;
    }
    
    .overlay-stat {
        gap: 4px;
    }
    
    .stat-icon {
        font-size: 1rem;
    }
    
    .stat-text {
        font-size: 0.6rem;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    /* Floating card styles removed - replaced with hero image */
}

@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0 6rem;
    }
    
    .hero-title-main {
        font-size: 3rem;
    }
    
    .hero-title-sub {
        font-size: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .hero-stat .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    /* Floating card styles removed - replaced with hero image */
}

@media (max-width: 480px) {
    .hero-section {
        padding: 3rem 0 5rem;
    }
    
    .hero-title-main {
        font-size: 2.5rem;
    }
    
    .hero-title-sub {
        font-size: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-visual {
        height: 250px;
    }
    
    /* Floating card styles removed - replaced with hero image */
}

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

.features-section,
.about-section,
.games-section,
.registration-section,
.trust-section {
    padding: 4rem 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

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

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--text-light);
}

.feature-card h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* About Section */
.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.game-card {
    background: var(--secondary-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

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

.game-card h3 {
    padding: 1rem 1rem 0.5rem;
    color: var(--text-light);
}

.game-card p {
    padding: 0 1rem 1rem;
    color: var(--text-light);
}

/* Registration Steps */
.registration-steps {
    max-width: 800px;
    margin: 3rem auto;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--text-light);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.step-number {
    background: var(--primary-color);
    color: var(--text-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-muted);
    line-height: 1.6;
}

.cta-buttons {
    text-align: center;
    margin-top: 3rem;
}

/* Trust Section */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.trust-item {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.trust-item h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.trust-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--accent-color);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

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

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

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

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

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

.footer-section a:hover,
.footer-section a:focus {
    color: var(--primary-color);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    font-size: 18px;
}

.social-links a:hover,
.social-links a:focus {
    background: var(--accent-color);
    transform: translateY(-2px);
    color: var(--text-light);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.5rem;
    border: none;
    border-radius: 5px;
    color: var(--text-dark);
    background: var(--secondary-color);
}

.newsletter-form button {
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover,
.newsletter-form button:focus {
    background: #7a6b9a;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--background-color);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: var(--shadow);
        border-top: 1px solid var(--accent-color);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-item {
        margin: 0;
        width: 100%;
    }
    
    .nav-link {
        padding: 1rem 2rem;
        border-radius: 0;
        margin: 0;
        text-align: center;
    }
    
    .login-btn {
        margin: 1rem 2rem;
        text-align: center;
    }
    
    .hamburger {
        display: flex;
    }
    
    .main-nav {
        display: none;
    }
    
    .header-actions {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .features-grid,
    .games-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .social-links {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Hero section responsive styles handled in dedicated hero media queries above */
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        min-width: 100px;
        padding: 0.5rem 1rem;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* Loading and Performance Optimizations */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy-load.loaded {
    opacity: 1;
}

/* Smooth Scrolling Enhancements */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Account for fixed header */
}

/* Enhanced scroll behavior for better performance */
body {
    scroll-behavior: smooth;
}

/* Ensure sections have proper scroll margins */
section[id] {
    scroll-margin-top: 120px; /* Account for fixed header + extra space */
}

/* Section highlight effect for navigation */
.section-highlight {
    animation: sectionPulse 2s ease-in-out;
}

@keyframes sectionPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(99, 89, 133, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(99, 89, 133, 0.3);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(99, 89, 133, 0);
    }
}

/* Ensure smooth scrolling works on all devices */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
    
    /* Enhanced smooth scrolling for better performance */
    * {
        scroll-behavior: smooth;
    }
}

/* Navigation link hover effects for better UX */
.nav-link:hover,
.footer-section a:hover {
    transform: translateY(-1px);
    transition: transform 0.2s ease;
}

/* Fallback for devices that don't support smooth scrolling */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 20px rgba(99, 89, 133, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
}

.scroll-to-top:hover,
.scroll-to-top:focus {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(99, 89, 133, 0.4);
}

.scroll-to-top.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.scroll-to-top i {
    transition: transform 0.3s ease;
}

.scroll-to-top:hover i {
    transform: translateY(-2px);
}

/* Responsive adjustments for scroll-to-top button */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .btn {
        display: none;
    }
    
    body {
        background: var(--background-color);
        color: var(--text-dark);
    }
    
    .hero-section {
        background: var(--background-color);
        color: var(--text-dark);
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000000;
        --secondary-color: #333333;
        --accent-color: #666666;
        --background-color: #000000;
        --text-light: #ffffff;
        --text-dark: #ffffff;
        --text-muted: #cccccc;
        --border-color: #ffffff;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --primary-color: #635985;
        --secondary-color: #443C68;
        --accent-color: #393053;
        --background-color: #18122B;
        --text-light: #ffffff;
        --text-dark: #ffffff;
        --text-muted: #cccccc;
        --border-color: #635985;
    }
    
    body {
        background-color: var(--background-color);
    }
    
    .feature-card,
    .game-card,
    .step,
    .trust-item {
        background: var(--secondary-color);
        color: var(--text-light);
    }
}

/* Golf Challenge Section */
.golf-challenge-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
}

.golf-challenge-section .section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.golf-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.golf-text h3 {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.golf-text p {
    margin-bottom: 25px;
    line-height: 1.7;
    color: var(--text-light);
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.golf-strategies h3 {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.strategy-cards {
    display: grid;
    gap: 30px;
}

.strategy-card {
    background: var(--background-color);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--primary-color);
}

.strategy-card h4 {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.strategy-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.strategy-card li {
    padding: 8px 0;
    border-bottom: 1px solid var(--primary-color);
    color: var(--text-light);
}

.strategy-card li:last-child {
    border-bottom: none;
}

.strategy-card p {
    color: var(--text-muted);
    font-style: italic;
    margin: 0;
}

/* Games Categories */
.games-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.game-category {
    background: var(--secondary-color);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 1px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.game-category h3 {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.game-category p {
    color: var(--text-light);
    line-height: 1.6;
}

.games-cta {
    text-align: center;
    margin-top: 20px;
}

/* Call to Action Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    text-align: center;
    color: var(--text-light);
}

/* How to Register/Login Section */
.how-to-section {
    padding: 80px 0;
    background: var(--background-color);
}

.how-to-section.login-section {
    background: var(--accent-color);
}

.how-to-section .section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 35px;
    padding: 25px;
    background: var(--secondary-color);
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--primary-color);
    transition: var(--transition);
}

.step-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.step-item:nth-child(odd) {
    border-left: 4px solid var(--primary-color);
}

.step-item:nth-child(even) {
    border-right: 4px solid var(--accent-color);
}

.step-item:last-child {
    border-bottom: 4px solid var(--primary-color);
}

.step-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.step-icon .icon {
    font-size: 1.8rem;
    color: var(--text-light);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: var(--text-light);
    margin-bottom: 12px;
    font-size: 1.3rem;
    line-height: 1.4;
}

.step-content h3 strong {
    color: var(--primary-color);
    font-weight: 700;
}

.step-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.step-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.step-link:hover,
.step-link:focus {
    color: var(--accent-color);
    text-decoration: underline;
}

.forgot-password {
    text-align: center;
    margin: 40px 0;
    padding: 25px;
    background: var(--background-color);
    border-radius: 12px;
    border: 1px solid var(--primary-color);
}

.forgot-password p {
    color: var(--text-light);
    margin: 0;
    font-size: 1.1rem;
}

.forgot-password a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.forgot-password a:hover,
.forgot-password a:focus {
    color: var(--accent-color);
    text-decoration: underline;
}

.cta-buttons {
    text-align: center;
    margin-top: 40px;
}

.cta-buttons .btn {
    margin: 0 10px 10px;
    display: inline-block;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--secondary-color);
}

.contact-section .section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Old contact styles removed - replaced with enhanced modern design above */

.contact-info h3 {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .section-title {
    color: var(--text-light);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-section .btn {
    margin: 0 10px;
}

/* Responsive Design for Golf Section */
@media (max-width: 768px) {
    .golf-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .golf-challenge-section {
        padding: 60px 0;
    }
    
    .strategy-cards {
        grid-template-columns: 1fr;
    }
    
    .games-categories {
        grid-template-columns: 1fr;
    }
    
    .cta-section .btn {
        display: block;
        margin: 10px auto;
        max-width: 250px;
    }
    
    .contact-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-actions .btn {
        margin: 10px auto;
        max-width: 250px;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto;
    }
    
    .step-icon .icon {
        font-size: 1.5rem;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
    
    .cta-buttons .btn {
        display: block;
        margin: 10px auto;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .golf-challenge-section {
        padding: 40px 0;
    }
    
    .golf-text h3,
    .golf-strategies h3 {
        font-size: 1.3rem;
    }
    
    .strategy-card {
        padding: 20px;
    }
    
    .how-to-section {
        padding: 60px 0;
    }
    
    .step-item {
        padding: 15px;
        margin-bottom: 25px;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.95rem;
    }
}

/* Inner Pages Styling for Better Readability */
.main-content {
    min-height: 100vh;
    padding-top: 80px;
}

/* Page Hero Section */
.page-hero {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 16px;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 400;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.page-date {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin-top: 8px;
    opacity: 0.8;
}

.page-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin-top: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Content Sections */
.about-content,
.mission-vision,
.values-section,
.achievements-section,
.team-section,
.privacy-content,
.terms-content,
.disclaimer-content,
.faq-content,
.contact-content {
    padding: 40px 0;
    margin-bottom: 40px;
}

/* About Us Page Specific Styles */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 24px;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.about-text-section p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.about-image-section {
    text-align: center;
}

.about-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* Mission Vision Section */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.mission-card,
.vision-card {
    background: var(--secondary-color);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 20px;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.mission-card p,
.vision-card p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: var(--secondary-color);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--primary-color);
    padding: 15px;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 16px;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.value-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Achievements Section */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.achievement-item {
    background: var(--secondary-color);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.achievement-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 16px;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.achievement-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background: var(--secondary-color);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 3px solid var(--primary-color);
}

.team-member h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.team-member .position {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 500;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.team-member p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Commitment Section */
.commitment-section {
    padding: 40px 0;
    margin-bottom: 40px;
}

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

.commitment-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.commitment-buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.commitment-buttons .btn {
    min-width: 200px;
}

.team-intro {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Privacy Policy, Terms, Disclaimer, FAQ Pages */
.privacy-content,
.terms-content,
.disclaimer-content,
.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-intro {
    background: var(--secondary-color);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.privacy-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.privacy-intro p:last-child {
    margin-bottom: 0;
}

.policy-section {
    background: var(--secondary-color);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.policy-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 24px;
    margin-top: 0;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.policy-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 20px;
    margin-top: 32px;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.policy-section p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.policy-section ul {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
    padding-left: 30px;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.policy-section li {
    margin-bottom: 12px;
}

.policy-section strong {
    color: var(--primary-color);
    font-weight: 600;
}

.terms-section {
    background: var(--secondary-color);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.terms-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 24px;
    margin-top: 0;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.terms-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 20px;
    margin-top: 32px;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.terms-section p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.terms-section ul {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
    padding-left: 30px;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.terms-section li {
    margin-bottom: 12px;
}

.terms-section strong {
    color: var(--primary-color);
    font-weight: 600;
}

.disclaimer-section {
    background: var(--secondary-color);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.disclaimer-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 24px;
    margin-top: 0;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.disclaimer-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 20px;
    margin-top: 32px;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.disclaimer-section p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.disclaimer-section ul {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
    padding-left: 30px;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.disclaimer-section li {
    margin-bottom: 12px;
}

.disclaimer-section strong {
    color: var(--primary-color);
    font-weight: 600;
}

.content-section {
    background: var(--secondary-color);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.content-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 24px;
    margin-top: 0;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.content-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 20px;
    margin-top: 32px;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.content-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 16px;
    margin-top: 24px;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.content-section p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.content-section ul,
.content-section ol {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
    padding-left: 30px;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.content-section strong {
    color: var(--primary-color);
    font-weight: 600;
}

.content-section a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid var(--primary-color);
    transition: var(--transition);
}

.content-section a:hover {
    color: var(--text-light);
    border-bottom-color: var(--text-light);
}

/* FAQ Specific Styles */
.faq-item {
    background: var(--secondary-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 16px;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.faq-answer {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* FAQ Search and Categories */
.faq-search {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.search-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    background: var(--background-color);
    color: var(--text-light);
    font-size: 16px;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 89, 133, 0.1);
}

.search-btn {
    padding: 12px 24px;
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.search-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.faq-categories {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.category-btn {
    padding: 10px 20px;
    background: var(--accent-color);
    color: var(--text-light);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.faq-toggle {
    float: right;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.faq-toggle:hover {
    color: var(--text-light);
}

/* Contact Page Specific Styles */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-info-item {
    background: var(--secondary-color);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.contact-info-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 16px;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.contact-info-item p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-light);
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Contact form styles - Enhanced above */

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 24px;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 8px;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    background: var(--background-color);
    color: var(--text-light);
    font-size: 16px;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 89, 133, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Contact Grid Layout - Enhanced styles above */

/* Old contact styles removed - replaced with enhanced modern design above */

/* Games Page Specific Styles */
.games-overview {
    padding: 60px 0;
    margin-bottom: 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    border-radius: 20px;
    margin: 0 20px 60px;
}

.games-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.games-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 30px;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.games-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    opacity: 0.95;
}

.games-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 50px;
    padding: 0 20px;
}

.stat-card {
    background: var(--primary-color);
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(99, 89, 133, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

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

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

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 48px rgba(99, 89, 133, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.stat-card .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 12px;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-card .stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    opacity: 0.9;
}

/* Enhanced Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.game-card {
    background: var(--secondary-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
}

.game-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(99, 89, 133, 0.4);
}

.game-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.game-image-container {
    position: relative;
    overflow: hidden;
}

.game-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.game-card:hover .game-image {
    transform: scale(1.05);
}

.game-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.game-type {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.game-popularity {
    background: var(--accent-color);
    color: var(--text-light);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.game-content {
    padding: 25px;
}

.game-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 15px;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.game-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
    opacity: 0.9;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.game-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.feature {
    background: var(--accent-color);
    color: var(--text-light);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.game-actions .btn {
    flex: 1;
    min-width: 120px;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

/* Live Games Section */
.live-games-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    margin: 0 20px 60px;
    border-radius: 20px;
}

.live-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.live-game-card {
    background: var(--secondary-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.live-game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.live-game-image {
    position: relative;
    overflow: hidden;
}

.live-game-image .game-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.live-game-card:hover .game-image {
    transform: scale(1.05);
}

.live-indicator {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff4757;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 71, 87, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 71, 87, 0); }
}

.live-game-content {
    padding: 25px;
}

.live-game-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 15px;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.live-game-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
    opacity: 0.9;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.live-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.live-features .feature {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Game Features Section */
.game-features-section {
    padding: 60px 0;
    background: var(--secondary-color);
    margin: 0 20px 60px;
    border-radius: 20px;
}

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

.feature-card {
    background: var(--accent-color);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--accent-color);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 15px;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    opacity: 0.9;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Section Titles and Subtitles */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 40px;
    opacity: 0.8;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    margin: 0 20px 60px;
    border-radius: 20px;
    text-align: center;
}

.cta-section .section-title {
    color: var(--text-light);
    margin-bottom: 25px;
}

.cta-section .section-subtitle {
    color: var(--text-light);
    opacity: 0.95;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 12px;
    min-width: 200px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: var(--text-light);
    color: var(--primary-color);
    border: 2px solid var(--text-light);
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.cta-buttons .btn-secondary:hover {
    background: var(--text-light);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Responsive Design for Games Page */
@media (max-width: 768px) {
    .games-overview,
    .live-games-section,
    .game-features-section,
    .cta-section {
        margin: 0 15px 40px;
        padding: 40px 0;
    }

    .games-intro h2 {
        font-size: 2rem;
    }

    .games-intro p {
        font-size: 1.1rem;
    }

    .games-stats {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }

    .stat-card {
        padding: 25px 20px;
    }

    .stat-card .stat-number {
        font-size: 2.5rem;
    }

    .games-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .live-games-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }

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

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

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

    .cta-buttons .btn {
        min-width: 250px;
    }
}

@media (max-width: 480px) {
    .games-overview,
    .live-games-section,
    .game-features-section,
    .cta-section {
        margin: 0 10px 30px;
        padding: 30px 0;
    }

    .games-intro h2 {
        font-size: 1.8rem;
    }

    .games-intro p {
        font-size: 1rem;
    }

    .games-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-card {
        padding: 20px 15px;
    }

    .stat-card .stat-number {
        font-size: 2rem;
    }

    .game-content {
        padding: 20px;
    }

    .game-actions {
        flex-direction: column;
    }

    .game-actions .btn {
        min-width: 100%;
    }

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

    .cta-buttons .btn {
        min-width: 200px;
        padding: 14px 24px;
        font-size: 1rem;
    }
}

/* Game Emoji Styling */
.game-emoji {
    font-size: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--text-light);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.game-emoji::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.game-card:hover .game-emoji::before {
    transform: translateX(100%);
}

.game-card:hover .game-emoji {
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
}

/* Feature Emoji Styling */
.feature-emoji {
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--text-light);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-emoji::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.feature-card:hover .feature-emoji::before {
    transform: translateX(100%);
}

.feature-card:hover .feature-emoji {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    box-shadow: 0 8px 25px rgba(99, 89, 133, 0.4);
}

/* Live Game Emoji Styling */
.live-game-image .game-emoji {
    height: 250px;
    font-size: 4.5rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
}

.live-game-card:hover .game-emoji {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
}

/* Responsive Emoji Sizing */
@media (max-width: 768px) {
    .game-emoji {
        font-size: 3.5rem;
        height: 200px;
    }
    
    .live-game-image .game-emoji {
        font-size: 4rem;
        height: 220px;
    }
    
    .feature-emoji {
        font-size: 2.5rem;
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .game-emoji {
        font-size: 3rem;
        height: 180px;
    }
    
    .live-game-image .game-emoji {
        font-size: 3.5rem;
        height: 200px;
    }
    
    .feature-emoji {
        font-size: 2rem;
        width: 60px;
        height: 60px;
    }
}

/* Enhanced Contact Page Styles */
.contact-content {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--background-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
    align-items: start;
}

/* Contact Info Section - Enhanced */
.contact-info-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    padding: 40px;
    border-radius: 24px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

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

.contact-info-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 24px;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.contact-info-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.contact-info-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    opacity: 0.9;
}

/* Enhanced Contact Methods */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

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

.contact-method:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(99, 89, 133, 0.3);
}

/* Enhanced Contact Icons with Emojis */
.contact-icon {
    flex-shrink: 0;
    position: relative;
}

.contact-emoji {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(99, 89, 133, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-emoji::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;
}

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

.contact-method:hover .contact-emoji {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(99, 89, 133, 0.6);
}

/* Contact Details Enhancement */
.contact-details h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 18px;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.contact-details p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 10px;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.contact-method:hover .contact-details p {
    opacity: 1;
}

.contact-details strong {
    color: var(--primary-color);
    font-weight: 600;
    text-shadow: 0 1px 5px rgba(99, 89, 133, 0.3);
}

/* Enhanced Support Features */
.support-features {
    background: rgba(255, 255, 255, 0.05);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.support-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(99, 89, 133, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.support-features:hover::before {
    transform: translateX(100%);
}

.support-features h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 25px;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
}

.support-features h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

.support-features ul {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    padding-left: 25px;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.support-features li {
    margin-bottom: 15px;
    position: relative;
    transition: transform 0.3s ease;
}

.support-features li:hover {
    transform: translateX(5px);
}

.support-features li::before {
    content: '✨';
    position: absolute;
    left: -25px;
    top: 0;
    font-size: 0.9rem;
    opacity: 0.7;
}

.support-features strong {
    color: var(--primary-color);
    font-weight: 600;
    text-shadow: 0 1px 5px rgba(99, 89, 133, 0.3);
}

/* Enhanced Contact Form Section */
.contact-form-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    padding: 40px;
    border-radius: 24px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite reverse;
}

.contact-form-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 16px;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.contact-form-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.contact-form-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 35px;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    opacity: 0.9;
}

/* Enhanced Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(99, 89, 133, 0.05) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.contact-form:hover::before {
    transform: translateX(100%);
}

.contact-form h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 30px;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Enhanced Form Groups */
.form-group {
    margin-bottom: 28px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 10px;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    transition: color 0.3s ease;
}

.form-group:focus-within label {
    color: var(--primary-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    font-size: 1rem;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99, 89, 133, 0.2);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

/* Enhanced Submit Button */
.contact-form .btn {
    width: 100%;
    padding: 18px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

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

.contact-form .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 89, 133, 0.4);
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

.contact-form .btn:active {
    transform: translateY(-1px);
}

/* Form Note Enhancement */
.form-note {
    margin-top: 25px;
    padding: 20px;
    background: rgba(99, 89, 133, 0.1);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.form-note p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
    opacity: 0.8;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-note strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* FAQ Preview Enhancement */
.faq-preview {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--background-color) 0%, var(--secondary-color) 100%);
}

.faq-preview .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 16px;
    text-align: center;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.faq-preview .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 50px;
    text-align: center;
    opacity: 0.8;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.faq-item:hover::before {
    transform: scaleX(1);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(99, 89, 133, 0.3);
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 16px;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
    opacity: 0.9;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Responsive Design for Contact Page */
@media (max-width: 1024px) {
    .contact-grid {
        gap: 50px;
    }
    
    .contact-info-section,
    .contact-form-section {
        padding: 30px;
    }
    
    .contact-info-section h2,
    .contact-form-section h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .contact-content {
        padding: 40px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-section,
    .contact-form-section {
        padding: 25px;
    }
    
    .contact-info-section h2,
    .contact-form-section h2 {
        font-size: 2rem;
    }
    
    .contact-method {
        padding: 20px;
        gap: 15px;
    }
    
    .contact-emoji {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-item {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .contact-content {
        padding: 30px 0;
    }
    
    .contact-info-section,
    .contact-form-section {
        padding: 20px;
        margin: 0 15px;
    }
    
    .contact-info-section h2,
    .contact-form-section h2 {
        font-size: 1.8rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-emoji {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        margin: 0 auto;
    }
    
    .contact-details h3 {
        text-align: center;
    }
    
    .faq-item {
        padding: 20px;
        margin: 0 15px;
    }
    
    .faq-item h3 {
        font-size: 1.2rem;
    }
}
