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

/* Smooth Scrolling for All Browsers */
html {
    scroll-behavior: smooth;
}

/* For browsers that don't support scroll-behavior: smooth */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Enhanced mobile smooth scrolling */
@media (max-width: 768px) {
    .about, .registration-steps, .hero, .login {
        scroll-margin-top: 80px; /* Smaller offset for mobile */
    }
    
    /* Touch-friendly navigation */
    .nav-menu a,
    .footer-section ul li a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Section highlight effect for smooth scrolling */
.about:target,
.registration-steps:target,
.hero:target,
.login:target {
    animation: sectionHighlight 2s ease-out;
}

@keyframes sectionHighlight {
    0% {
        background: linear-gradient(135deg, #000000 0%, #FF0000 50%, #000000 100%);
    }
    100% {
        background: linear-gradient(135deg, #000000 0%, #3D0000 50%, #000000 100%);
    }
}

/* Section visibility effect */
.section-visible {
    animation: sectionVisible 0.5s ease-out;
}

@keyframes sectionVisible {
    0% {
        opacity: 0.8;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #FFFFFF;
    background-color: #000000;
    overflow-x: hidden;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #FF0000;
    color: #FFFFFF;
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 4px;
    font-weight: 600;
}

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

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

/* Header */
.header {
    background: linear-gradient(135deg, #000000 0%, #3D0000 100%);
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #950101;
}

.navbar {
    padding: 1rem 0;
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.nav-logo h2 {
    color: #FFFFFF;
    font-size: 1.8rem;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    letter-spacing: 1px;
    margin: 0;
}

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

.nav-menu a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a:focus {
    background: #3D0000;
    color: #FF0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #FF0000;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover::after {
    width: 80%;
}

/* Active navigation state */
.nav-menu a.active,
.footer-section ul li a.active {
    color: #FF0000;
    background: #3D0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}

.nav-menu a.active::after {
    width: 80%;
}

.login-btn {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #950101;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.login-btn:hover,
.login-btn:focus {
    background-color: #950101;
    color: #FFFFFF;
    box-shadow: 0 0 15px rgba(149, 1, 1, 0.6);
    transform: translateY(-2px);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.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;
}

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

.btn-login {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #950101;
    margin-right: 1rem;
}

.btn-login:hover,
.btn-login:focus {
    background-color: #950101;
    color: #FFFFFF;
    box-shadow: 0 0 20px rgba(149, 1, 1, 0.6);
    transform: translateY(-2px);
}

.btn-register {
    background-color: #FF0000;
    color: #FFFFFF;
    border: 2px solid #FF0000;
}

.btn-register:hover,
.btn-register:focus {
    background-color: #950101;
    border-color: #950101;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.7);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #FFFFFF;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #000000 0%, #3D0000 50%, #000000 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    scroll-margin-top: 100px; /* Ensure proper scroll positioning with fixed header */
}

.hero::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="%233D0000" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 0, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(149, 1, 1, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

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

.hero h1 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #FFFFFF;
    text-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
    letter-spacing: 2px;
    background: linear-gradient(45deg, #FFFFFF, #FF0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h1 span {
    color: #FF0000;
    display: block;
    margin-top: 0.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #FFFFFF;
    line-height: 1.6;
    opacity: 0.9;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #FFFFFF;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}

.hero-buttons .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 ease;
}

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

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.5);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(255, 0, 0, 0.4);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.hero-main-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #FF0000, #950101, #FF0000);
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-main-image:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 35px 70px rgba(255, 0, 0, 0.6);
}

.hero-main-image:hover::before {
    opacity: 0.3;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #000000;
    position: relative;
    scroll-margin-top: 100px; /* Ensure proper scroll positioning with fixed header */
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #950101, transparent);
}

.about h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-align: center;
    color: #FFFFFF;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.about-card {
    background: linear-gradient(145deg, #000000, #3D0000);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #3D0000;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #950101, #FF0000, #950101);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
    border-color: #950101;
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FF0000;
}

.about-card p {
    color: #FFFFFF;
    line-height: 1.7;
}

/* Registration Steps */
.registration-steps {
    padding: 5rem 0;
    background: linear-gradient(135deg, #3D0000 0%, #000000 100%);
    position: relative;
    scroll-margin-top: 100px; /* Ensure proper scroll positioning with fixed header */
}

.registration-steps h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-align: center;
    color: #FFFFFF;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

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

.step {
    background: #000000;
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid #3D0000;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.step:hover::before {
    transform: translateX(100%);
}

.step:hover {
    transform: translateY(-5px);
    border-color: #950101;
    box-shadow: 0 15px 40px rgba(149, 1, 1, 0.3);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #950101, #FF0000);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.3));
}

.login-note {
    background: linear-gradient(145deg, #000000, #3D0000);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #950101;
    margin-top: 2rem;
    text-align: center;
}

.login-note h3 {
    color: #FF0000;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.login-note p {
    color: #FFFFFF;
    line-height: 1.6;
}

.section-intro {
    font-size: 1.25rem;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FF0000;
}

.step p {
    color: #FFFFFF;
    line-height: 1.7;
}

/* Game Features */
.game-features {
    padding: 5rem 0;
    background: #000000;
}

.game-features h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-align: center;
    color: #FFFFFF;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(145deg, #000000, #3D0000);
    border-radius: 12px;
    border: 1px solid #3D0000;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: #950101;
    box-shadow: 0 10px 30px rgba(149, 1, 1, 0.3);
}

.feature-item i {
    font-size: 3rem;
    color: #FF0000;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.feature-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.feature-item p {
    color: #FFFFFF;
    line-height: 1.6;
}

/* Call to Action */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #3D0000 0%, #000000 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::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="%23FF0000" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 0, 0, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(149, 1, 1, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: #FFFFFF;
    text-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
    letter-spacing: 2px;
    background: linear-gradient(45deg, #FFFFFF, #FF0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.cta p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #FFFFFF;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    opacity: 0.95;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Enhanced CTA Buttons */
.cta .hero-buttons {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.cta .hero-buttons .btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
    border: 2px solid transparent;
}

.cta .hero-buttons .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.6s ease;
}

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

.cta .hero-buttons .btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.6);
    border-color: #FF0000;
}

.cta .hero-buttons .btn-register {
    background: linear-gradient(135deg, #950101, #FF0000);
    color: #FFFFFF;
}

.cta .hero-buttons .btn-register:hover {
    background: linear-gradient(135deg, #FF0000, #950101);
}

.cta .hero-buttons .btn-login {
    background: linear-gradient(135deg, #3D0000, #950101);
    color: #FFFFFF;
    border: 2px solid #950101;
}

.cta .hero-buttons .btn-login:hover {
    background: linear-gradient(135deg, #950101, #3D0000);
    border-color: #FF0000;
}

/* Responsive CTA Styling */
@media (max-width: 768px) {
    .cta {
        padding: 4rem 0;
    }
    
    .cta h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .cta p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .cta .hero-buttons {
        gap: 1rem;
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .cta .hero-buttons .btn {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cta h2 {
        font-size: 1.8rem;
    }
    
    .cta p {
        font-size: 1rem;
    }
    
    .cta .hero-buttons .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #000000 0%, #3D0000 100%);
    padding: 3rem 0 1rem;
    border-top: 2px solid #950101;
}

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

.footer-section h3 {
    color: #FF0000;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.footer-section p,
.footer-section a {
    color: #FFFFFF;
    line-height: 1.6;
}

.footer-section a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FF0000;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #3D0000;
}

.footer-bottom p {
    color: #FFFFFF;
}

/* Footer Quick Links Enhanced Styling */
.footer-section ul li a {
    transition: all 0.3s ease;
    position: relative;
}

.footer-section ul li a:hover {
    color: #FF0000;
    transform: translateX(5px);
}

.footer-section ul li a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #FF0000;
}

.footer-section ul li a:hover::before {
    opacity: 1;
    left: -20px;
}

/* 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-color: #950101;
    color: #FFFFFF;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    background-color: #FF0000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.newsletter-form input[type="email"] {
    padding: 0.75rem;
    border: 2px solid #3D0000;
    border-radius: 6px;
    background-color: #000000;
    color: #FFFFFF;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: #950101;
    box-shadow: 0 0 10px rgba(149, 1, 1, 0.3);
}

.newsletter-form input[type="email"]::placeholder {
    color: #FFFFFF;
    opacity: 0.7;
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    background-color: #950101;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newsletter-form button:hover {
    background-color: #FF0000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, #000000 0%, #3D0000 100%);
    padding: 4rem 0;
    text-align: center;
    border-bottom: 2px solid #950101;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 900;
    color: #FFFFFF;
    text-shadow: 0 0 25px rgba(255, 0, 0, 0.4);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    color: #FFFFFF;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Sections */
.content-section {
    padding: 4rem 0;
    background: #000000;
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #FF0000;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.content-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: #FF0000;
}

.content-section p,
.content-section li {
    color: #FFFFFF;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.content-section ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-section a {
    color: #FF0000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.content-section a:hover {
    color: #950101;
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    background: linear-gradient(145deg, #000000, #3D0000);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #3D0000;
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #3D0000;
    border-radius: 6px;
    background: #000000;
    color: #FFFFFF;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #950101;
    box-shadow: 0 0 15px rgba(149, 1, 1, 0.4);
}

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

/* FAQ Styles */
.faq-item {
    background: linear-gradient(145deg, #000000, #3D0000);
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid #3D0000;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #950101;
    box-shadow: 0 5px 20px rgba(149, 1, 1, 0.2);
}

.faq-question {
    background: #000000;
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #3D0000;
}

.faq-question h3 {
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.faq-toggle {
    color: #FF0000;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #000000;
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: #FFFFFF;
    line-height: 1.6;
    margin: 0;
}

/* 404 Page */
.error-page {
    text-align: center;
    padding: 6rem 0;
    background: #000000;
}

.error-number {
    font-size: 8rem;
    font-weight: 900;
    color: #FF0000;
    text-shadow: 0 0 40px rgba(255, 0, 0, 0.6);
    margin-bottom: 1rem;
    line-height: 1;
}

.error-page h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 2rem;
}

.error-page p {
    font-size: 1.25rem;
    color: #FFFFFF;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-info {
    background: linear-gradient(145deg, #000000, #3D0000);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #3D0000;
    text-align: center;
}

.contact-info h3 {
    color: #FF0000;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #FF0000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #950101;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #000000;
        flex-direction: column;
        padding: 1rem;
        border-top: 1px solid #3D0000;
        box-shadow: 0 4px 20px rgba(255, 0, 0, 0.2);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        padding: 1rem;
        border-radius: 8px;
        margin-bottom: 0.5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

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

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

    .btn {
        width: 100%;
        max-width: 300px;
        margin: 0.5rem 0;
    }

    .about-content,
    .steps-container,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-logo h2 {
        font-size: 1.5rem;
    }
    
    .logo-container {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .logo-image {
        width: 40px;
        height: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .error-number {
        font-size: 5rem;
    }
}

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

    .hero {
        padding: 4rem 0;
    }

    .hero-content {
        gap: 30px;
        padding: 0 15px;
    }

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

    .hero-main-image {
        border-radius: 10px;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .about h2,
    .registration-steps h2,
    .game-features h2,
    .cta h2 {
        font-size: 2rem;
    }

    .step,
    .about-card,
    .feature-item {
        padding: 1.5rem;
    }

    .error-number {
        font-size: 4rem;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .btn {
        border-width: 3px;
    }

    .nav-menu a {
        border: 1px solid #FFFFFF;
    }
}

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

    html {
        scroll-behavior: auto;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .btn,
    .hamburger {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .hero,
    .about,
    .registration-steps,
    .game-features {
        background: white;
        color: black;
    }
}

/* Focus Styles for Accessibility */
*:focus {
    outline: 2px solid #FF0000;
    outline-offset: 2px;
}

/* Selection Styles */
::selection {
    background: #950101;
    color: #FFFFFF;
}

::-moz-selection {
    background: #950101;
    color: #FFFFFF;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: #950101;
    border-radius: 6px;
    border: 2px solid #000000;
}

::-webkit-scrollbar-thumb:hover {
    background: #FF0000;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #3D0000;
    border-radius: 50%;
    border-top-color: #FF0000;
    animation: spin 1s ease-in-out infinite;
}

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

/* Glow Effects */
.glow {
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.glow:hover {
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.8);
}

/* Pulse Animation for CTAs */
.pulse {
    animation: pulse 2s infinite;
}

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

/* Enhanced Hover Effects */
.nav-menu a:hover,
.nav-menu a:focus {
    background: #3D0000;
    color: #FF0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
    transform: translateY(-2px);
}

.about-card:hover,
.step:hover,
.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(149, 1, 1, 0.3);
    border-color: #950101;
}

.btn:hover,
.btn:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

/* Intense Glow Effects */
.hero h1,
.page-header h1 {
    text-shadow: 0 0 30px rgba(255, 0, 0, 0.5), 0 0 60px rgba(255, 0, 0, 0.3);
}

.nav-logo h1 {
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5), 0 0 40px rgba(255, 0, 0, 0.3);
}

/* Edgy Border Effects */
.about-card::before,
.step::before {
    background: linear-gradient(90deg, #950101, #FF0000, #950101);
    height: 4px;
}

/* Modern Card Shadows */
.about-card,
.step,
.feature-item,
.contact-info {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.about-card:hover,
.step:hover,
.feature-item:hover,
.contact-info:hover {
    box-shadow: 0 15px 40px rgba(149, 1, 1, 0.3), 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* Games Section Styles */
.games-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #000000 0%, #3D0000 100%);
    position: relative;
    overflow: hidden;
}

.games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 0, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(149, 1, 1, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.games-section h2 {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #FFFFFF, #FF0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 0, 0, 0.3);
}

.games-section .section-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #FFFFFF;
    opacity: 0.9;
}

/* Featured Games */
.featured-games {
    margin-bottom: 4rem;
}

.featured-games h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #FF0000;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.games-grid {
    display: grid;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.game-card.featured {
    background: linear-gradient(135deg, #3D0000 0%, #950101 100%);
    border: 2px solid #FF0000;
    border-radius: 20px;
    padding: 2rem;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.game-card.featured::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.game-card.featured:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.game-card.featured:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(255, 0, 0, 0.3);
    border-color: #FFFFFF;
}

.game-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.game-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.game-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #FF0000, #950101);
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.game-info h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.game-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    opacity: 0.9;
}

.game-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: #FF0000;
    transform: translateY(-2px);
}

.game-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-play {
    background: linear-gradient(45deg, #FF0000, #950101);
    color: #FFFFFF;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-play:hover {
    background: linear-gradient(45deg, #950101, #FF0000);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.4);
    border-color: #FFFFFF;
}

.btn-learn {
    background: transparent;
    color: #FFFFFF;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-learn:hover {
    background: #FFFFFF;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Game Categories */
.game-categories {
    margin-bottom: 4rem;
}

.game-categories h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #FF0000;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    background: linear-gradient(135deg, #3D0000 0%, #950101 100%);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-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 ease;
}

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

.category-card:hover {
    transform: translateY(-10px);
    border-color: #FF0000;
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.3);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.category-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.category-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    opacity: 0.9;
}

.category-games {
    list-style: none;
    padding: 0;
    text-align: left;
}

.category-games li {
    color: #FFFFFF;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.category-games li:before {
    content: '🎯';
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.category-games li:last-child {
    border-bottom: none;
}

/* New Releases */
.new-releases {
    margin-bottom: 4rem;
}

.new-releases h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #FF0000;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.release-card {
    background: linear-gradient(135deg, #3D0000 0%, #950101 100%);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.release-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 50px 50px 0;
    border-color: transparent #FF0000 transparent transparent;
    transition: all 0.3s ease;
}

.release-card:hover::after {
    border-width: 0 60px 60px 0;
}

.release-card:hover {
    transform: translateY(-5px);
    border-color: #FF0000;
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.3);
}

.release-date {
    background: linear-gradient(45deg, #FF0000, #950101);
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.release-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.release-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    opacity: 0.9;
}

.release-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Game Statistics */
.game-stats {
    margin-bottom: 4rem;
}

.game-stats h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #FF0000;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    background: linear-gradient(135deg, #3D0000 0%, #950101 100%);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: #FF0000;
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #FF0000;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: #FFFFFF;
    color: #FFFFFF;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

/* Games Call to Action */
.games-cta {
    text-align: center;
    background: linear-gradient(135deg, #3D0000 0%, #950101 100%);
    border: 2px solid #FF0000;
    border-radius: 25px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.games-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.games-cta h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

.games-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #FFFFFF;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Responsive Design for Games Section */
@media (max-width: 768px) {
    .games-section h2 {
        font-size: 2rem;
    }
    
    .game-card.featured {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .game-image {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .releases-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .games-cta {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .games-section h2 {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .game-card.featured {
        padding: 1.5rem;
    }
    
    .category-card,
    .release-card,
    .stat-card {
        padding: 1.5rem;
    }
}

/* Contact Section Styles */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #3D0000 50%, #000000 100%);
}

.contact h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #FFFFFF;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background: linear-gradient(135deg, #3D0000 0%, #000000 100%);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #950101;
    box-shadow: 0 8px 32px rgba(149, 1, 1, 0.2);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: #FF0000;
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.3);
}

.contact-card h3 {
    color: #FF0000;
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-card h3 i {
    font-size: 1.8rem;
    color: #950101;
}

.contact-card p {
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(149, 1, 1, 0.1);
    border-radius: 10px;
    border-left: 4px solid #950101;
}

.contact-method i {
    color: #FF0000;
    font-size: 1.2rem;
    min-width: 20px;
}

.contact-method span {
    color: #FFFFFF;
    font-weight: 500;
}

.btn-contact {
    background: linear-gradient(135deg, #950101, #FF0000);
    color: #FFFFFF;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-contact:hover {
    background: linear-gradient(135deg, #FF0000, #950101);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.contact-form-container {
    display: flex;
    justify-content: center;
}

.contact-form-card {
    background: linear-gradient(135deg, #3D0000 0%, #000000 100%);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid #950101;
    box-shadow: 0 8px 32px rgba(149, 1, 1, 0.2);
    width: 100%;
    max-width: 500px;
}

.contact-form-card h3 {
    color: #FF0000;
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.contact-form-card h3 i {
    color: #950101;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid #3D0000;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #FFFFFF;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF0000;
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.9);
}

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

.btn-submit {
    background: linear-gradient(135deg, #950101, #FF0000);
    color: #FFFFFF;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #FF0000, #950101);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.contact-additional {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

/* Mobile Responsive for Contact Section */
@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-additional {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form-card {
        padding: 30px 20px;
    }
    
    .contact-card {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .contact h2 {
        font-size: 1.8rem;
    }
    
    .contact-form-card {
        padding: 25px 15px;
    }
    
    .contact-card {
        padding: 20px 15px;
    }
    
    .btn-submit {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #950101, #FF0000);
    border: none;
    border-radius: 50%;
    color: #FFFFFF;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

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

.scroll-to-top:hover {
    background: linear-gradient(135deg, #FF0000, #950101);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.6);
}

.scroll-to-top:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.5), 0 8px 25px rgba(255, 0, 0, 0.6);
}

.scroll-to-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

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

/* Enhanced Content Readability - Applied to all content pages */
.content-section,
.about,
.registration-steps,
.faq-item,
.contact-form,
.page-header,
.terms-content,
.privacy-content,
.disclaimer-content {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #FFFFFF;
    background: linear-gradient(145deg, #111111, #1a1a1a);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid #3D0000;
    position: relative;
    overflow: hidden;
}

.content-section::before,
.about::before,
.registration-steps::before,
.faq-item::before,
.contact-form::before,
.page-header::before,
.terms-content::before,
.privacy-content::before,
.disclaimer-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #950101, #FF0000, #950101);
}

/* Enhanced Typography for Headings */
.content-section h1,
.content-section h2,
.about h1,
.about h2,
.registration-steps h1,
.registration-steps h2,
.page-header h1,
.terms-content h1,
.terms-content h2,
.privacy-content h1,
.privacy-content h2,
.disclaimer-content h1,
.disclaimer-content h2,
.faq-item h3,
.contact-form h2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    font-weight: 700;
    color: #FFFFFF;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
}

.content-section h1,
.about h1,
.registration-steps h1,
.page-header h1,
.terms-content h1,
.privacy-content h1,
.disclaimer-content h1 {
    font-size: 2.2rem;
    margin-top: 0;
    color: #FF0000;
    text-align: center;
    border-bottom: 2px solid #950101;
    padding-bottom: 1rem;
}

.content-section h2,
.about h2,
.registration-steps h2,
.terms-content h2,
.privacy-content h2,
.disclaimer-content h2 {
    font-size: 1.8rem;
    color: #FF0000;
    border-left: 4px solid #950101;
    padding-left: 1rem;
}

.content-section h3,
.about h3,
.registration-steps h3,
.terms-content h3,
.privacy-content h3,
.disclaimer-content h3,
.faq-item h3 {
    font-size: 1.4rem;
    color: #950101;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.content-section h4,
.about h4,
.registration-steps h4,
.terms-content h4,
.privacy-content h4,
.disclaimer-content h4 {
    font-size: 1.2rem;
    color: #950101;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Enhanced Paragraph and Text Styling */
.content-section p,
.about p,
.registration-steps p,
.terms-content p,
.privacy-content p,
.disclaimer-content p,
.faq-item p,
.contact-form p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    text-align: justify;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Enhanced List Styling */
.content-section ul,
.content-section ol,
.about ul,
.about ol,
.registration-steps ul,
.registration-steps ol,
.terms-content ul,
.terms-content ol,
.privacy-content ul,
.privacy-content ol,
.disclaimer-content ul,
.disclaimer-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.content-section li,
.about li,
.registration-steps li,
.terms-content li,
.privacy-content li,
.disclaimer-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 0.8rem;
    color: #FFFFFF;
    position: relative;
}

.content-section ul li::before,
.about ul li::before,
.registration-steps ul li::before,
.terms-content ul li::before,
.privacy-content ul li::before,
.disclaimer-content ul li::before {
    content: '▶';
    color: #FF0000;
    font-weight: bold;
    position: absolute;
    left: -1.5rem;
    top: 0;
}

.content-section ol li,
.about ol li,
.registration-steps ol li,
.terms-content ol li,
.privacy-content ol li,
.disclaimer-content ol li {
    counter-increment: list-counter;
}

.content-section ol li::before,
.about ol li::before,
.registration-steps ol li::before,
.terms-content ol li::before,
.privacy-content ol li::before,
.disclaimer-content ol li::before {
    content: counter(list-counter) '.';
    color: #FF0000;
    font-weight: bold;
    position: absolute;
    left: -1.5rem;
    top: 0;
}

/* Enhanced Link Styling */
.content-section a,
.about a,
.registration-steps a,
.terms-content a,
.privacy-content a,
.disclaimer-content a,
.faq-item a {
    color: #FF0000;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    padding: 2px 4px;
    border-radius: 4px;
}

.content-section a:hover,
.about a:hover,
.registration-steps a:hover,
.terms-content a:hover,
.privacy-content a:hover,
.disclaimer-content a:hover,
.faq-item a:hover {
    color: #950101;
    background-color: rgba(255, 0, 0, 0.1);
    border-bottom-color: #950101;
}

/* Enhanced Section Spacing and Layout */
.content-section > *:first-child,
.about > *:first-child,
.registration-steps > *:first-child,
.terms-content > *:first-child,
.privacy-content > *:first-child,
.disclaimer-content > *:first-child {
    margin-top: 0;
}

.content-section > *:last-child,
.about > *:last-child,
.registration-steps > *:last-child,
.terms-content > *:last-child,
.privacy-content > *:last-child,
.disclaimer-content > *:last-child {
    margin-bottom: 0;
}

/* Enhanced Container Styling */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Enhanced FAQ Styling */
.faq-item {
    background: linear-gradient(145deg, #111111, #1a1a1a);
    border: 1px solid #3D0000;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #950101;
    box-shadow: 0 8px 32px rgba(149, 1, 1, 0.2);
    transform: translateY(-2px);
}

.faq-item h3 {
    color: #FF0000;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.faq-item p {
    margin-bottom: 0;
    color: #FFFFFF;
    line-height: 1.7;
}

/* Enhanced Contact Form Styling */
.contact-form {
    background: linear-gradient(145deg, #111111, #1a1a1a);
    border: 1px solid #3D0000;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.contact-form h2 {
    color: #FF0000;
    text-align: center;
    margin-top: 0;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

/* Enhanced Form Elements */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 16px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid #3D0000;
    border-radius: 8px;
    background: #000000;
    color: #FFFFFF;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #950101;
    box-shadow: 0 0 20px rgba(149, 1, 1, 0.4), inset 0 2px 4px rgba(0, 0, 0, 0.3);
    background: #111111;
}

/* Enhanced Button Styling */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(45deg, #950101, #FF0000);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(149, 1, 1, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(149, 1, 1, 0.5);
    background: linear-gradient(45deg, #FF0000, #950101);
}

/* Enhanced Page Header Styling */
.page-header {
    background: linear-gradient(135deg, #000000 0%, #3D0000 100%);
    text-align: center;
    padding: 4rem 2rem;
    margin-bottom: 3rem;
    border-radius: 0 0 20px 20px;
    position: relative;
    overflow: hidden;
}

.page-header::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="%233D0000" stroke-width="0.5" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
}

.page-header h1 {
    position: relative;
    z-index: 2;
    color: #FFFFFF;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 1rem 0;
    text-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
    letter-spacing: 2px;
}

.page-header p {
    position: relative;
    z-index: 2;
    color: #FFFFFF;
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
    line-height: 1.6;
}

/* Additional Content Section Styling */
.policy-section,
.terms-section,
.disclaimer-section,
.help-options,
.response-grid,
.additional-contact,
.response-info {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(145deg, #0a0a0a, #111111);
    border-radius: 8px;
    border: 1px solid #3D0000;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.policy-section h3,
.terms-section h3,
.disclaimer-section h3,
.help-options h3,
.response-grid h3 {
    color: #950101;
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 600;
}

.policy-section p,
.terms-section p,
.disclaimer-section p,
.help-options p,
.response-grid p {
    color: #FFFFFF;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 16px;
}

/* Help Options Styling */
.help-option {
    background: linear-gradient(145deg, #111111, #1a1a1a);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #3D0000;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.help-option:hover {
    border-color: #950101;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(149, 1, 1, 0.2);
}

.help-option h3 {
    color: #FF0000;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.help-option p {
    color: #FFFFFF;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Response Grid Styling */
.response-item {
    background: linear-gradient(145deg, #111111, #1a1a1a);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #3D0000;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.response-item:hover {
    border-color: #950101;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(149, 1, 1, 0.2);
}

.response-item h3 {
    color: #950101;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.response-item p {
    color: #FFFFFF;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-size: 15px;
}

/* Enhanced Button Styling for Secondary Buttons */
.btn-secondary {
    background: linear-gradient(45deg, #3D0000, #950101);
    color: #FFFFFF;
    border: 1px solid #950101;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 0.5rem;
}

.btn-secondary:hover {
    background: linear-gradient(45deg, #950101, #FF0000);
    border-color: #FF0000;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

/* Enhanced Form Styling */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    color: #FFFFFF;
    font-size: 15px;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 0.2rem;
}

/* Responsive Design Enhancements */
@media (max-width: 768px) {
    .content-section,
    .about,
    .registration-steps,
    .faq-item,
    .contact-form,
    .page-header,
    .terms-content,
    .privacy-content,
    .disclaimer-content {
        padding: 1.5rem;
        margin: 1.5rem 0;
        font-size: 15px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .content-section h1,
    .about h1,
    .registration-steps h1,
    .page-header h1,
    .terms-content h1,
    .privacy-content h1,
    .disclaimer-content h1 {
        font-size: 1.8rem;
    }
    
    .content-section h2,
    .about h2,
    .registration-steps h2,
    .terms-content h2,
    .privacy-content h2,
    .disclaimer-content h2 {
        font-size: 1.5rem;
    }
    
    .content-section h3,
    .about h3,
    .registration-steps h3,
    .terms-content h3,
    .privacy-content h3,
    .disclaimer-content h3 {
        font-size: 1.3rem;
    }
    
    .page-header {
        padding: 3rem 1rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .content-section,
    .about,
    .registration-steps,
    .faq-item,
    .contact-form,
    .page-header,
    .terms-content,
    .privacy-content,
    .disclaimer-content {
        padding: 1rem;
        margin: 1rem 0;
        font-size: 14px;
    }
    
    .container {
        padding: 0 0.5rem;
    }
    
    .content-section h1,
    .about h1,
    .registration-steps h1,
    .page-header h1,
    .terms-content h1,
    .privacy-content h1,
    .disclaimer-content h1 {
        font-size: 1.6rem;
    }
    
    .content-section h2,
    .about h2,
    .registration-steps h2,
    .terms-content h2,
    .privacy-content h2,
    .disclaimer-content h2 {
        font-size: 1.4rem;
    }
    
    .page-header {
        padding: 2rem 0.5rem;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

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

/* Active Navigation Link States */
.nav-menu .nav-link.active,
.footer-section ul li a.active {
    color: #FF0000 !important;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 6px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.nav-menu .nav-link.active::after,
.footer-section ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: #FF0000;
    border-radius: 1px;
}

/* Enhanced Section Visibility */
.section-visible {
    animation: sectionFadeIn 0.8s ease-out;
}

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

/* Smooth Scroll Offset for Fixed Header */
#home, #about, #games, #game-features, #contact {
    scroll-margin-top: 120px;
}

/* Enhanced Navigation Hover Effects */
.nav-menu .nav-link:hover,
.footer-section ul li a:hover {
    color: #FF0000 !important;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 6px;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Cross-Page Navigation Enhancement */
.nav-menu .nav-link[href*="index.html#"]:hover,
.footer-section ul li a[href*="index.html#"]:hover {
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}
