/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-red: #B22222;
    --dark-red: #8B0000;
    --light-red: #DC143C;
    --crimson: #DC143C;
    --burgundy: #800020;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --black: #000000;
    --accent-gold: #FFD700;
    --accent-orange: #ff6600;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --shadow-light: 0 2px 10px rgba(178, 34, 34, 0.1);
    --shadow-medium: 0 4px 20px rgba(178, 34, 34, 0.15);
    --shadow-heavy: 0 8px 30px rgba(178, 34, 34, 0.25);
    --gradient-red: linear-gradient(135deg, #B22222 0%, #DC143C 50%, #8B0000 100%);
    --gradient-dark: linear-gradient(135deg, #8B0000 0%, #B22222 50%, #800020 100%);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    --border-radius: 12px;
    --border-radius-lg: 20px;
}

body {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    color: var(--dark-gray);
    line-height: 1.6;
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    scroll-behavior: smooth;
}

/* Add smooth scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-red);
}

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

/* Header and Navigation */
header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
    color: var(--dark-gray);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(178, 34, 34, 0.15);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-bottom: 3px solid var(--primary-red);
}

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

.logo {
    display: flex;
    align-items: center;
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--primary-red);
    text-shadow: 2px 2px 4px rgba(178, 34, 34, 0.2);
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
    color: var(--dark-red);
}

.logo i {
    margin-right: 12px;
    color: var(--accent-gold);
    font-size: 2rem;
    animation: shuttleBounce 2s ease-in-out infinite;
}

@keyframes shuttleBounce {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
    }
    25% { 
        transform: translateY(-8px) rotate(5deg);
    }
    50% { 
        transform: translateY(-4px) rotate(-3deg);
    }
    75% { 
        transform: translateY(-6px) rotate(2deg);
    }
}

.desktop-nav {
    display: flex;
    gap: 10px;
}

.desktop-nav a {
    color: var(--dark-gray);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    font-weight: 700;
    position: relative;
    overflow: hidden;
    background: transparent;
    border: 2px solid transparent;
}

.desktop-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(178, 34, 34, 0.1), transparent);
    transition: var(--transition);
}

.desktop-nav a:hover::before {
    left: 100%;
}

.desktop-nav a:hover {
    color: var(--primary-red);
    background: rgba(178, 34, 34, 0.1);
    border-color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(178, 34, 34, 0.2);
}

.desktop-nav a.active {
    background: var(--primary-red);
    color: white;
    border-color: var(--accent-gold);
    box-shadow: 0 4px 15px rgba(178, 34, 34, 0.3);
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary-red);
    transition: var(--transition);
    padding: 8px;
    border-radius: var(--border-radius);
    background: rgba(178, 34, 34, 0.1);
}

.menu-toggle:hover {
    color: var(--dark-red);
    background: rgba(178, 34, 34, 0.2);
    transform: scale(1.1);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    z-index: 101;
    transition: var(--transition);
    padding: 80px 30px 30px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
}

.mobile-nav.open {
    right: 0;
}

/* Password Toggle Styles */
.password-toggle {
    position: relative;
}

.password-toggle input {
    padding-right: 50px;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 60px;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--gray);
    background: none;
    border: none;
    font-size: 1.1rem;
    padding: 5px;
    transition: var(--transition);
}

.toggle-password:hover {
    color: var(--primary-red);
}

.mobile-nav a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 18px 20px;
    margin: 15px 0;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 2px solid transparent;
    font-weight: 600;
    font-size: 1.1rem;
}

.mobile-nav a:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-gold);
    transform: translateX(10px);
}

.mobile-nav a.active {
    background: var(--accent-gold);
    color: var(--primary-red);
    font-weight: 700;
}

.close-nav {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 1.8rem;
    cursor: pointer;
    color: white;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.close-nav:hover {
    background: var(--accent-gold);
    color: var(--primary-red);
    transform: rotate(90deg);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 25%, #ffffff 50%, #f1f3f4 75%, #ffffff 100%);
    color: var(--dark-gray);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

/* Animated Badminton Court Lines */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 150px;
    border: 3px solid rgba(178, 34, 34, 0.2);
    border-radius: 10px;
    z-index: 1;
    animation: courtPulse 4s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 3px;
    background: rgba(178, 34, 34, 0.3);
    z-index: 1;
    animation: netShimmer 3s ease-in-out infinite;
}

@keyframes courtPulse {
    0%, 100% { 
        opacity: 0.1;
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        opacity: 0.2;
        transform: translate(-50%, -50%) scale(1.02);
    }
}

@keyframes netShimmer {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.2; }
}

.hero .container {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 30px;
    font-weight: 900;
    color: var(--primary-red);
    text-shadow: 2px 2px 4px rgba(178, 34, 34, 0.2);
    line-height: 1.1;
    position: relative;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 4px;
    background: var(--gradient-red);
    border-radius: 2px;
}

.hero p {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.8;
    color: var(--gray);
    font-weight: 500;
}

/* Floating Shuttlecock Animation */
.shuttlecock-animation {
    position: absolute;
    width: 80px;
    height: 80px;
    background: url('/assets/badminton-shuttle-1000x1000-removebg-preview.png') no-repeat center center/contain;
    z-index: 5;
}

.shuttlecock-1 {
    top: 20%;
    left: 15%;
    animation: shuttleFly1 12s ease-in-out infinite;
}

.shuttlecock-2 {
    top: 30%;
    right: 20%;
    animation: shuttleFly2 15s ease-in-out infinite reverse;
}

.shuttlecock-3 {
    bottom: 25%;
    left: 25%;
    animation: shuttleFly3 18s ease-in-out infinite;
}

.shuttlecock-4 {
    top: 60%;
    right: 10%;
    animation: shuttleFly1 14s ease-in-out infinite;
}

.shuttlecock-5 {
    bottom: 40%;
    right: 30%;
    animation: shuttleFly2 16s ease-in-out infinite;
}

@keyframes shuttleFly1 {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-15px) rotate(5deg);
        opacity: 0.5;
    }
}

@keyframes shuttleFly2 {
    0%, 100% { 
        transform: translateX(0) translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% { 
        transform: translateX(-20px) translateY(-10px) rotate(-8deg);
        opacity: 0.5;
    }
}

@keyframes shuttleFly3 {
    0%, 100% { 
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.2;
    }
    50% { 
        transform: translateY(-20px) rotate(10deg) scale(1.05);
        opacity: 0.4;
    }
}

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

.cta-button {
    display: inline-block;
    background: var(--gradient-red);
    color: white;
    padding: 20px 45px;
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.3rem;
    transition: var(--transition);
    border: 3px solid var(--accent-gold);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 8px 25px rgba(178, 34, 34, 0.3);
    animation: ctaFloat 3s ease-in-out infinite;
}

@keyframes ctaFloat {
    0%, 100% { 
        transform: translateY(0) scale(1);
        box-shadow: 0 8px 25px rgba(178, 34, 34, 0.3);
    }
    50% { 
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 15px 35px rgba(178, 34, 34, 0.4);
    }
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.4), transparent);
    transition: var(--transition);
}

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

.cta-button:hover {
    background: var(--gradient-dark);
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 20px 40px rgba(178, 34, 34, 0.5), 0 0 40px rgba(255, 215, 0, 0.4);
    border-color: var(--accent-gold);
    animation: none;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-red);
    position: relative;
    animation: fadeInDown 1s ease-out;
}

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

.section-title:after {
    content: '';
    display: block;
    width: 100px;
    height: 6px;
    background: var(--gradient-red);
    margin: 15px auto;
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(178, 34, 34, 0.3);
}

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

.feature-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-red);
    transform: scaleX(0);
    transition: var(--transition);
}

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

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(178, 34, 34, 0.3);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 12px 35px rgba(178, 34, 34, 0.4);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-red);
    font-weight: 700;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Countdown Section */
.countdown {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 50%, #1a1a1a 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.countdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    z-index: 1;
}

.countdown .container {
    position: relative;
    z-index: 2;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 35px 30px;
    border-radius: 20px;
    min-width: 140px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), #fff, var(--accent-gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.countdown-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.3);
}

.countdown-number {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 10px;
    color: var(--accent-gold);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    display: block;
    line-height: 1;
}

.countdown-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 20px;
    overflow-y: auto;
    
    /* Hide scrollbar but keep functionality */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

/* Hide scrollbar for WebKit browsers (Chrome, Safari, Edge) */
.modal-overlay::-webkit-scrollbar {
    display: none;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: white;
    border-radius: var(--border-radius-lg);
    width: 100%;
    max-width: 550px;
    max-height: 90vh;
    padding: 25px 35px 35px;
    position: relative;
    transform: translateY(-50px) scale(0.9);
    transition: var(--transition);
    margin: auto;
    box-shadow: var(--shadow-heavy);
    border: 3px solid var(--primary-red);
    overflow-y: auto;
    
    /* Hide scrollbar but keep functionality */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

/* Hide scrollbar for WebKit browsers (Chrome, Safari, Edge) */
.modal::-webkit-scrollbar {
    display: none;
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--gray);
    transition: var(--transition);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--light-gray);
}

.close-modal:hover {
    color: var(--primary-red);
    background: var(--primary-red);
    color: white;
    transform: rotate(90deg);
}

.modal-title {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-red);
    font-size: 2rem;
    font-weight: 800;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--dark-gray);
    font-size: 1.1rem;
}

.form-control {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: #fafafa;
}

.form-control:focus {
    border-color: var(--primary-red);
    outline: none;
    box-shadow: 0 0 0 3px rgba(178, 34, 34, 0.1);
    background: white;
    transform: translateY(-1px);
}

.form-step {
    display: none;
    animation: fadeInRight 0.5s ease-out;
}

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

.form-step.active {
    display: block;
}

.btn {
    display: inline-block;
    padding: 15px 25px;
    background: var(--gradient-red);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    transition: var(--transition);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    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.3), transparent);
    transition: var(--transition);
}

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

.btn:hover {
    background: var(--gradient-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(178, 34, 34, 0.3);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-secondary {
    background: var(--gray);
}

.btn-secondary:hover {
    background: var(--dark-gray);
    transform: translateY(-2px);
}

.login-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 2px solid var(--primary-red);
}

.toggle-option {
    padding: 15px 25px;
    cursor: pointer;
    background: var(--light-gray);
    border: none;
    width: 50%;
    text-align: center;
    transition: var(--transition);
    font-weight: 600;
    color: var(--dark-gray);
}

.toggle-option:first-child {
    border-radius: 0;
}

.toggle-option:last-child {
    border-radius: 0;
}

.toggle-option.active {
    background: var(--primary-red);
    color: white;
    transform: scale(1.02);
}

.toggle-option:hover:not(.active) {
    background: #e9ecef;
    transform: translateY(-1px);
}

.otp-verify {
    display: flex;
    gap: 12px;
}

.otp-verify input {
    flex: 1;
}

.verified {
    color: var(--success);
    font-weight: 700;
    display: none;
    animation: checkmarkBounce 0.6s ease-out;
}

@keyframes checkmarkBounce {
    0%, 20%, 53%, 80%, 100% { transform: translate3d(0,0,0); }
    40%, 43% { transform: translate3d(0, -30px, 0); }
    70% { transform: translate3d(0, -15px, 0); }
    90% { transform: translate3d(0,-4px,0); }
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, var(--dark-red) 50%, var(--primary-red) 100%);
    color: white;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), #fff, var(--accent-gold));
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-gold);
}

.footer-logo i {
    font-size: 2.2rem;
    animation: rotate 8s linear infinite;
}

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

.social-links {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.8rem;
    transition: all 0.3s ease;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.social-links a::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;
}

.social-links a:hover::before {
    left: 100%;
}

.social-links a:hover {
    color: var(--accent-gold);
    background: rgba(255, 215, 0, 0.15);
    border-color: var(--accent-gold);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.footer-contact {
    text-align: right;
}

.footer-contact p {
    margin: 5px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

/* Mobile Navigation Enhancements */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: white;
    transition: var(--transition);
}

.menu-toggle:hover {
    color: var(--accent-gold);
    transform: scale(1.1);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100vh;
    background: var(--gradient-red);
    z-index: 101;
    transition: var(--transition);
    padding: 80px 30px 30px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 18px 20px;
    margin: 15px 0;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 2px solid transparent;
    font-weight: 600;
}

.mobile-nav a:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-gold);
    transform: translateX(10px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        padding: 80px 0;
        min-height: 80vh;
    }

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

    .hero p {
        font-size: 1.1rem;
        padding: 20px 25px;
        margin: 0 auto 40px;
    }

    .shuttlecock-animation {
        width: 50px;
        height: 50px;
    }

    .shuttlecock-1 {
        top: 10%;
        left: 5%;
    }

    .shuttlecock-2 {
        top: 20%;
        right: 8%;
    }

    .shuttlecock-3 {
        bottom: 25%;
        left: 12%;
    }

    .shuttlecock-4 {
        top: 65%;
        right: 3%;
    }

    .shuttlecock-5 {
        bottom: 40%;
        right: 35%;
    }

    .countdown-container {
        flex-wrap: wrap;
        gap: 25px;
        margin-top: 40px;
    }

    .countdown-item {
        min-width: 120px;
        padding: 25px 20px;
    }

    .countdown-number {
        font-size: 2.8rem;
    }

    .countdown-label {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    /* Footer responsive */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-logo {
        justify-content: center;
        font-size: 1.6rem;
    }

    .footer-contact {
        text-align: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .social-links a {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }

    .feature-card {
        padding: 20px;
    }

    /* Modal responsive adjustments */
    .modal-overlay {
        padding: 10px;
        align-items: flex-start;
        padding-top: 20px;
    }

    .modal {
        max-width: 95%;
        padding: 20px 25px 30px;
        margin: 0;
        max-height: 95vh;
    }

    .modal-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

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

    .form-control {
        padding: 12px 15px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .close-modal {
        top: 15px;
        right: 15px;
        width: 30px;
        height: 30px;
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 60px 0;
        min-height: 80vh;
    }

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

    .hero p {
        font-size: 0.9rem;
        padding: 12px 18px;
        margin: 0 auto 30px;
    }

    .features {
        padding: 60px 0;
    }

    .cta-button {
        padding: 14px 25px;
        font-size: 1rem;
    }

    /* Mobile modal optimizations */
    .modal-overlay {
        padding: 5px;
        align-items: flex-start;
        padding-top: 10px;
    }

    .modal {
        max-width: 98%;
        padding: 15px 20px 25px;
        border-radius: var(--border-radius);
        border-width: 2px;
        max-height: 98vh;
    }

    .modal-title {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

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

    .form-group label {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .form-control {
        padding: 10px 12px;
        font-size: 16px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 1rem;
    }

    .close-modal {
        top: 10px;
        right: 10px;
        width: 28px;
        height: 28px;
        font-size: 1.2rem;
    }

    /* OTP verification adjustments */
    .otp-verify {
        flex-direction: column;
        gap: 8px;
    }

    .otp-verify input {
        margin-bottom: 8px;
    }

    /* Login toggle adjustments */
    .toggle-option {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    /* Status badges */
    .status-badge {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
}

/* Extra small screens */
@media (max-width: 400px) {
    .modal {
        max-width: 100%;
        padding: 12px 15px 20px;
        margin: 0;
        border-radius: 8px;
    }

    .modal-title {
        font-size: 1.2rem;
    }

    .form-control {
        padding: 8px 10px;
    }

    .btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    /* Shuttlecock positioning for very small screens */
    .shuttlecock-animation {
        width: 40px;
        height: 40px;
    }

    .shuttlecock-1 {
        top: 8%;
        left: 2%;
    }

    .shuttlecock-2 {
        top: 18%;
        right: 5%;
    }

    .shuttlecock-3 {
        bottom: 30%;
        left: 8%;
    }

    .shuttlecock-4 {
        top: 70%;
        right: 2%;
    }

    .shuttlecock-5 {
        bottom: 45%;
        right: 40%;
    }
}

/* Landscape orientation on mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .modal-overlay {
        align-items: flex-start;
        padding-top: 5px;
    }

    .modal {
        max-height: 95vh;
        overflow-y: auto;
    }

    .hero {
        min-height: 70vh;
        padding: 40px 0;
    }

    .hero h1 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    /* Countdown responsive */
    .countdown {
        padding: 60px 0;
    }

    .countdown-container {
        gap: 15px;
        margin-top: 30px;
    }

    .countdown-item {
        min-width: 100px;
        padding: 20px 15px;
    }

    .countdown-number {
        font-size: 2.2rem;
    }

    .countdown-label {
        font-size: 0.9rem;
    }

    /* Footer responsive */
    footer {
        padding: 50px 0 30px;
    }

    .footer-content {
        gap: 25px;
    }

    .footer-logo {
        font-size: 1.4rem;
    }

    .footer-logo i {
        font-size: 1.8rem;
    }

    .social-links {
        gap: 15px;
    }

    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
    }

    .footer-contact p {
        font-size: 0.9rem;
    }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .modal {
        border-width: 1px;
    }
}


/* Add these styles to your CSS */
.otp-actions {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.resend-otp {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.9rem;
    text-align: center;
}

.resend-otp:hover {
    text-decoration: underline;
}

/* Enhanced Notification Styles */
.notification-container {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.notification {
    padding: 18px 25px;
    border-radius: var(--border-radius);
    color: white;
    font-weight: 600;
    box-shadow: var(--shadow-heavy);
    transform: translateX(120%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 400px;
    border-left: 5px solid;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
    animation: slideInBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes slideInBounce {
    0% {
        transform: translateX(120%);
        opacity: 0;
    }
    60% {
        transform: translateX(-10px);
        opacity: 1;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification.success {
    background: linear-gradient(135deg, var(--success) 0%, #27ae60 100%);
    border-left-color: #ffffff;
}

.notification.error {
    background: linear-gradient(135deg, var(--danger) 0%, #c0392b 100%);
    border-left-color: #ffffff;
}

.notification.info {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    border-left-color: var(--accent-gold);
}

.notification i {
    font-size: 1.4rem;
    animation: notificationIconPulse 2s ease-in-out infinite;
}

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

/* Loading Animation Styles */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(178, 34, 34, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.spinner {
    width: 80px;
    height: 80px;
    border: 6px solid rgba(255, 255, 255, 0.3);
    border-top: 6px solid var(--accent-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: relative;
}

.spinner::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border: 3px solid transparent;
    border-top: 3px solid rgba(255, 215, 0, 0.6);
    border-radius: 50%;
    animation: spin 2s linear infinite reverse;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced Button Animations */
@keyframes buttonPulse {
    0% { box-shadow: 0 0 0 0 rgba(178, 34, 34, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(178, 34, 34, 0); }
    100% { box-shadow: 0 0 0 0 rgba(178, 34, 34, 0); }
}

.btn:focus {
    animation: buttonPulse 1.5s infinite;
}

/* Smooth Page Entrance Animation */
@keyframes pageLoad {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body {
    animation: pageLoad 0.8s ease-out;
}

/* Enhanced Hover Effects */
.feature-card, .countdown-item, .btn, .modal {
    will-change: transform;
}

/* Dark mode support for animations */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}




