:root {
    --doom-red: #ff0033;
    --arc-blue: #00d9ff;
    --stark-gold: #ffb700;
    --void-black: #000000;
    --energy: #7d00ff;
    --neon-green: #00ff88;
    --smoke-green: #00ff44;
    --dark-green: #003311;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

/* ============================================
           LOADING SCREEN
        ============================================ */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
    background-image: url('../assets/bg.jpg');
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;

}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Loading Logo */
.loading-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 8vw, 5rem);
    font-weight: 900;
    letter-spacing: 8px;
    background: linear-gradient(135deg, var(--neon-green), var(--arc-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 3rem;
    animation: logoGlow 2s ease-in-out infinite;
}

@keyframes logoGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 20px rgba(0, 255, 68, 0.5));
        transform: scale(1);
    }

    50% {
        filter: drop-shadow(0 0 40px rgba(0, 255, 68, 0.8));
        transform: scale(1.05);
    }
}

/* Loading Bar Container */
.loading-container {
    width: 80%;
    max-width: 500px;
    margin-bottom: 2rem;
}

.loading-bar-bg {
    width: 100%;
    height: 6px;
    background: rgba(0, 255, 68, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 255, 68, 0.2);
}

.loading-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--neon-green), var(--arc-blue), var(--neon-green));
    background-size: 200% 100%;
    border-radius: 10px;
    animation: loadingProgress 3s ease-out forwards, shimmer 1.5s linear infinite;
    box-shadow: 0 0 20px rgba(0, 255, 68, 0.8);
}

@keyframes loadingProgress {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

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

    100% {
        background-position: -200% 0;
    }
}

/* Loading Text */
.loading-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: var(--neon-green);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    animation: textPulse 1.5s ease-in-out infinite;
}

@keyframes textPulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

/* Loading Percentage */
.loading-percentage {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--neon-green);
    text-shadow: 0 0 20px rgba(0, 255, 68, 0.8);
    margin-top: 1rem;
}

/* Loading Spinner */
.loading-spinner {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(0, 255, 68, 0.1);
    border-top: 4px solid var(--neon-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-top: 2rem;
    box-shadow: 0 0 30px rgba(0, 255, 68, 0.5);
}

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

    100% {
        transform: rotate(360deg);
    }
}

/* Loading Status Messages */
.loading-status {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 2rem;
    min-height: 20px;
}

/* Hexagon Pattern Background for Loading */
.loading-hex-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: -1;
}

.hex {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--neon-green);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    opacity: 0.1;
    animation: hexFloat 3s ease-in-out infinite;
}

@keyframes hexFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.1;
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.3;
    }
}

/* ============================================
           GREEN SMOKE ANIMATED BACKGROUND
        ============================================ */
.smoke-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #000000;
    overflow: hidden;
}

/* Smoke Layers */
.smoke {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.smoke:nth-child(1) {
    background: radial-gradient(ellipse at 20% 80%, rgba(0, 255, 68, 0.4) 0%, transparent 60%);
    animation: smoke1 12s ease-in-out infinite;
    filter: blur(60px);
}

.smoke:nth-child(2) {
    background: radial-gradient(ellipse at 80% 70%, rgba(0, 255, 136, 0.35) 0%, transparent 55%);
    animation: smoke2 15s ease-in-out infinite;
    animation-delay: -3s;
    filter: blur(70px);
}

.smoke:nth-child(3) {
    background: radial-gradient(ellipse at 50% 60%, rgba(0, 204, 102, 0.3) 0%, transparent 50%);
    animation: smoke3 18s ease-in-out infinite;
    animation-delay: -6s;
    filter: blur(80px);
}

.smoke:nth-child(4) {
    background: radial-gradient(ellipse at 30% 40%, rgba(0, 255, 102, 0.38) 0%, transparent 58%);
    animation: smoke4 14s ease-in-out infinite;
    animation-delay: -9s;
    filter: blur(65px);
}

.smoke:nth-child(5) {
    background: radial-gradient(ellipse at 70% 30%, rgba(34, 255, 85, 0.32) 0%, transparent 53%);
    animation: smoke5 16s ease-in-out infinite;
    animation-delay: -12s;
    filter: blur(75px);
}

@keyframes smoke1 {

    0%,
    100% {
        opacity: 0;
        transform: translate(0%, 20%) scale(0.8) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: translate(-15%, -30%) scale(1.3) rotate(180deg);
    }
}

@keyframes smoke2 {

    0%,
    100% {
        opacity: 0;
        transform: translate(0%, -10%) scale(0.9) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: translate(20%, 25%) scale(1.2) rotate(-180deg);
    }
}

@keyframes smoke3 {

    0%,
    100% {
        opacity: 0;
        transform: translate(0%, 0%) scale(1) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: translate(-10%, -15%) scale(1.4) rotate(90deg);
    }
}

@keyframes smoke4 {

    0%,
    100% {
        opacity: 0;
        transform: translate(0%, 15%) scale(0.85) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: translate(15%, -20%) scale(1.25) rotate(-90deg);
    }
}

@keyframes smoke5 {

    0%,
    100% {
        opacity: 0;
        transform: translate(0%, -5%) scale(0.95) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: translate(-20%, 10%) scale(1.35) rotate(135deg);
    }
}

/* Floating Smoke Particles */
.smoke-particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 68, 0.6) 0%, transparent 70%);
    filter: blur(20px);
    animation: floatUp 15s ease-in-out infinite;
}

@keyframes floatUp {
    0% {
        opacity: 0;
        transform: translateY(0) translateX(0) scale(0.5);
    }

    20% {
        opacity: 0.8;
    }

    80% {
        opacity: 0.8;
    }

    100% {
        opacity: 0;
        transform: translateY(-120vh) translateX(100px) scale(1.5);
    }
}

/* Smoke wisps */
.wisp {
    position: absolute;
    width: 2px;
    height: 150px;
    background: linear-gradient(to top, transparent, rgba(0, 255, 68, 0.4), transparent);
    filter: blur(8px);
    animation: wispFloat 8s ease-in-out infinite;
}

@keyframes wispFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) translateX(0) scaleY(0.5);
    }

    50% {
        opacity: 0.6;
        transform: translateY(50vh) translateX(50px) scaleY(1.5);
    }

    100% {
        opacity: 0;
        transform: translateY(-10vh) translateX(-30px) scaleY(0.8);
    }
}

/* Green glow overlay */
.glow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 255, 68, 0.05) 0%, transparent 70%);
    animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

/* Header/Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 3rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 68, 0.3);
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

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

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

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--neon-green), var(--arc-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(0, 255, 68, 0.5));
    animation: glitch 3s infinite;

}

.logo a {
    text-decoration: none;
}

@keyframes glitch {

    0%,
    90%,
    100% {
        transform: translateX(0);
    }

    92% {
        transform: translateX(-2px);
    }

    94% {
        transform: translateX(2px);
    }

    96% {
        transform: translateX(-2px);
    }
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-green), var(--arc-blue));
    transition: width 0.4s;
}

.nav-links a:hover {
    color: var(--neon-green);
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 90px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1rem;
    margin-top: 3rem;
    letter-spacing: 8px;
    background: linear-gradient(135deg, #fff 0%, var(--neon-green) 50%, var(--arc-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleReveal 1.5s ease-out;
    filter: drop-shadow(0 0 30px rgba(0, 255, 68, 0.5));
}

@keyframes titleReveal {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    color: var(--neon-green);
    animation: fadeInUp 1.5s ease-out 0.3s both;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(0, 255, 68, 0.5);
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.3rem);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.8);
    animation: fadeInUp 1.5s ease-out 0.6s both;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.5s ease-out 0.9s both;
}

.btn {
    padding: 1.2rem 3rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-green), #00cc44);
    color: #000;
    box-shadow: 0 0 30px rgba(0, 255, 68, 0.5), 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(0, 255, 68, 0.8), 0 15px 40px rgba(0, 0, 0, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--neon-green);
    border: 2px solid var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 68, 0.3);
}

.btn-secondary:hover {
    background: var(--neon-green);
    color: #000;
    box-shadow: 0 0 40px rgba(0, 255, 68, 0.6);
    transform: translateY(-3px);
}

.about {
    padding: 8rem 2rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    position: relative;
}

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

.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-content {
    margin-top: 4rem;
}

.about-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.about-text {
    background: rgba(0, 20, 10, 0.5);
    padding: 3rem;
    border: 1px solid rgba(0, 255, 68, 0.2);
    border-left: 4px solid var(--neon-green);
    backdrop-filter: blur(10px);
    transition: all 0.4s;
}

.about-text:hover {
    border-color: var(--neon-green);
    box-shadow: 0 20px 60px rgba(0, 255, 68, 0.2);
    transform: translateY(-5px);
}

.about-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--neon-green);
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

.about-description:last-child {
    margin-bottom: 0;
}

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

.feature-card {
    background: rgba(0, 20, 10, 0.6);
    padding: 2.5rem 2rem;
    border: 1px solid rgba(0, 255, 68, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-green), var(--arc-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

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

.feature-card:hover {
    border-color: var(--neon-green);
    box-shadow: 0 20px 60px rgba(0, 255, 68, 0.3);
    transform: translateY(-10px);
}

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

.feature-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    color: var(--neon-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.about-mission {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.mission-box {
    background: linear-gradient(135deg, rgba(0, 20, 10, 0.7), rgba(0, 30, 15, 0.7));
    padding: 3rem;
    border: 2px solid var(--neon-green);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s;
}

.mission-box::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 68, 0.1) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
}

.mission-box:hover {
    transform: scale(1.03);
    box-shadow: 0 30px 80px rgba(0, 255, 68, 0.4);
    border-color: var(--arc-blue);
}

.mission-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--stark-gold);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
}

.mission-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.about-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(0, 255, 68, 0.05);
    border: 2px solid rgba(0, 255, 68, 0.3);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--neon-green), var(--arc-blue), var(--neon-green));
    background-size: 400% 400%;
    animation: gradientFlow 8s ease infinite;
    z-index: -1;
    opacity: 0.3;
    filter: blur(10px);
}

@keyframes gradientFlow {

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

    50% {
        background-position: 100% 50%;
    }
}

.cta-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: var(--neon-green);
    margin-bottom: 1rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(0, 255, 68, 0.5);
}

.cta-text {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Stats Section */
.stats {
    padding: 6rem 2rem;
    background: rgba(0, 0, 0, 0.5);
    position: relative;
    backdrop-filter: blur(10px);
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 20, 10, 0.5);
    border: 1px solid rgba(0, 255, 68, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

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

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

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-green);
    box-shadow: 0 20px 40px rgba(0, 255, 68, 0.3);
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-green), var(--arc-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
}

/* Timeline Section */
.timeline {
    padding: 8rem 2rem;
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 900;
    letter-spacing: 4px;
    background: linear-gradient(135deg, #fff, var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--neon-green), var(--arc-blue));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 4rem;
    position: relative;
    align-items: center;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    flex: 1;
    padding: 2rem;
    background: rgba(0, 20, 10, 0.6);
    border: 1px solid rgba(0, 255, 68, 0.3);
    position: relative;
    transition: all 0.4s;
    backdrop-filter: blur(10px);
}

.timeline-content:hover {
    transform: scale(1.05);
    border-color: var(--neon-green);
    box-shadow: 0 20px 60px rgba(0, 255, 68, 0.3);
}

.timeline-date {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--neon-green);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.timeline-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--arc-blue);
}

.timeline-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.timeline-marker {
    width: 20px;
    height: 20px;
    background: var(--neon-green);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px var(--neon-green);
    z-index: 2;
}

/* Tracks Section */
.tracks {
    padding: 8rem 2rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.tracks-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.track-card {
    padding: 3rem 2rem;
    background: rgba(0, 20, 10, 0.7);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
    backdrop-filter: blur(10px);
}

.track-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--neon-green), var(--arc-blue));
    opacity: 0;
    transition: opacity 0.5s;
}

.track-card:hover::before {
    opacity: 0.1;
}

.track-card:hover {
    border-color: var(--neon-green);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 255, 68, 0.4);
}

.track-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.track-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--neon-green);
    position: relative;
    z-index: 1;
}

.track-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Prizes Section */
.prizes {
    padding: 8rem 2rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

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

.prize-card {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(0, 20, 10, 0.8), rgba(0, 30, 15, 0.8));
    border: 2px solid var(--neon-green);
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
    backdrop-filter: blur(10px);
}

.prize-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 68, 0.2) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

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

    100% {
        transform: rotate(360deg);
    }
}

.prize-card:hover {
    transform: scale(1.1) translateY(-10px);
    border-color: var(--stark-gold);
    box-shadow: 0 30px 80px rgba(0, 255, 68, 0.4);
}

.prize-rank {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: var(--stark-gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.prize-amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.prize-desc {
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    padding: 4rem 2rem 2rem;
    background: rgba(0, 0, 0, 0.9);
    border-top: 1px solid rgba(0, 255, 68, 0.3);
    text-align: center;
    backdrop-filter: blur(20px);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--neon-green), var(--arc-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(0, 255, 68, 0.5));
    animation: glitch 3s infinite;
}

.footer-logo a {
    text-decoration: none;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-links a {
    color: var(--neon-green);
    font-size: 1.5rem;
    transition: all 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    color: var(--arc-blue);
    transform: scale(1.2);
}

.social-links img {
    width: 30px;
    padding-top: 1rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Countdown Timer */
.countdown {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 3rem 0;
    animation: fadeInUp 1.5s ease-out 1.2s both;
}

.countdown-item {
    text-align: center;
    padding: 1.5rem 2rem;
    background: rgba(0, 20, 10, 0.7);
    border: 1px solid var(--neon-green);
    min-width: 100px;
    backdrop-filter: blur(10px);
}

.countdown-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--neon-green);
    display: block;
    text-shadow: 0 0 20px rgba(0, 255, 68, 0.5);
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

/* Mobile Responsive */
/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--neon-green);
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 5px var(--neon-green);
}

/* Base Responsive Fixes */
@media (max-width: 1024px) {
    .nav-links {
        gap: 1.5rem;
    }

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

    .timeline-container {
        max-width: 90%;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header {
        padding: 1rem 1.5rem;
    }

    /* Mobile Navigation */
    .hamburger {
        display: block;
    }

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

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 0;
        gap: 0;
        flex-direction: column;
        background: rgba(0, 10, 5, 0.98);
        width: 100%;
        height: 100vh;
        align-items: center;
        justify-content: center;
        transition: 0.3s ease-in-out;
        backdrop-filter: blur(15px);
        z-index: 1000;
        border-right: 1px solid var(--neon-green);
    }

    .nav-links.nav-active {
        left: 0;
    }

    .nav-links li {
        margin: 1.5rem 0;
        opacity: 0;
    }

    .nav-links.nav-active li {
        animation: navLinkFade 0.5s ease forwards 0.3s;
    }

    @keyframes navLinkFade {
        from {
            opacity: 0;
            transform: translateX(-50px);
        }

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

    .nav-links a {
        font-size: 1.5rem;
    }

    /* Hero Section */
    .hero-title {
        font-size: clamp(3rem, 12vw, 4rem);
        letter-spacing: 2px;
        margin-top: 5rem;
    }

    .logo {
        font-size: 1.2rem;
    }

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

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

    /* Sections */
    .about-main,
    .about-mission,
    .stats-container,
    .tracks-grid,
    .prizes-grid,
    .about-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    /* Timeline */
    .timeline-line {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 50px;
        margin-bottom: 3rem;
    }

    .timeline-marker {
        left: 20px;
    }

    .timeline-content {
        width: 100%;
    }

    /* Countdown */
    .countdown {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .countdown-item {
        min-width: 70px;
        padding: 0.8rem;
    }

    .countdown-value {
        font-size: 1.5rem;
    }

    .loading-container {
        width: 90%;
    }

    .loading-logo {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 1rem;
    }

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

    .stat-number {
        font-size: 3rem;
    }

    .mission-box,
    .about-text,
    .feature-card {
        padding: 1.5rem;
    }
}

/* Scroll Animation Trigger */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
           REGISTRATION FORM
        ============================================ */
.registration-section {
    padding: 120px 20px 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.registration-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.registration-form {
    background: rgba(0, 20, 10, 0.7);
    padding: 40px;
    border: 1px solid var(--neon-green);
    backdrop-filter: blur(15px);
    box-shadow: 0 0 30px rgba(0, 255, 68, 0.1);
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}

.registration-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
    animation: scanline 3s linear infinite;
}

@keyframes scanline {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

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

.form-group label {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-green);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-group input,
.form-group select {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 255, 68, 0.3);
    padding: 12px 15px;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--neon-green);
    box-shadow: 0 0 15px rgba(0, 255, 68, 0.3);
    background: rgba(0, 20, 10, 0.8);
}

.form-group select option {
    background: #000;
    color: #fff;
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.form-footer {
    text-align: center;
    margin-top: 2rem;
}

/* Payment Section */
.payment-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 255, 68, 0.2);
}

.form-subtitle {
    font-family: 'Orbitron', sans-serif;
    color: var(--stark-gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 2px;
}

.payment-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.qr-code-container {
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border: 1px solid var(--neon-green);
    text-align: center;
    position: relative;
}

.qr-code-container::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px dashed var(--neon-green);
    z-index: -1;
    animation: rotateBorder 10s linear infinite;
}

@keyframes rotateBorder {
    0% {
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    25% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
    }

    50% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    75% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        border-left-color: transparent;
    }

    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

.qr-code {
    max-width: 100%;
    width: 350px;
    /* Increased visual size */
    height: auto;
    border: 5px solid #fff;
    /* White border for scanning contrast */
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 68, 0.3);
}

.qr-code-container {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border: 1px solid var(--neon-green);
    text-align: center;
    position: relative;
    max-width: 500px;
    /* Allow container to be wider */
    width: 100%;
}

.qr-instruction {
    font-size: 0.9rem;
    color: var(--neon-green);
    margin-top: 10px;
    font-weight: 600;
}

.payment-details {
    width: 100%;
    max-width: 400px;
}

.payment-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 5px;
    text-align: center;
}