/* Utility Classes */
.text-center {
    text-align: center;
}

/* Modern CSS Reset and Variables */
:root {
    --primary-color: #00ff88;
    --secondary-color: #0a192f;
    --accent-color: #64ffda;
    --text-color: #ffffff;
    --dark-bg: #0a192f;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: var(--dark-bg);
    color: var(--text-color);
    overflow-x: hidden;
    width: 100%;
    position: relative;
    min-height: 100vh;
}

.site-wrapper {
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

/* Organization Logos */
.org-logos {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.2rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    max-width: 100%;
}

.org-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
}

.nav-logos {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: calc(100% - 60px);
}

.nav-logo {
    height: 35px;
    width: auto;
    object-fit: contain;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
    width: 20px;
    height: 16px;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #ffffff;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 7px;
}

.hamburger span:nth-child(3) {
    top: 14px;
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--primary-color);
    background: rgba(0, 255, 136, 0.1);
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(10, 25, 47, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        transition: all 0.3s ease;
    }

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

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

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

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

/* Main Content */
.main-content {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
    padding-top: 60px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    margin-top: 60px;
}

.cyber-grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 136, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.15) 1px, transparent 1px),
        linear-gradient(rgba(255, 0, 255, 0.1) 2px, transparent 2px),
        linear-gradient(90deg, rgba(255, 0, 255, 0.1) 2px, transparent 2px);
    background-size: 50px 50px, 50px 50px, 100px 100px, 100px 100px;
    animation: gridMove 15s linear infinite;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.cyber-scanner {
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent,
        rgba(0, 255, 136, 0.1),
        rgba(100, 255, 218, 0.2),
        rgba(0, 255, 136, 0.1),
        transparent
    );
    animation: scanLine 5s ease-in-out infinite;
}

.event-date {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(0, 255, 136, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.countdown-item span {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.countdown-item .label {
    font-size: 0.9rem;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-top: 0.5rem;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .countdown-timer {
        gap: 1rem;
        padding: 0.8rem;
    }

    .countdown-item {
        min-width: 60px;
    }

    .countdown-item span {
        font-size: 1.8rem;
    }

    .countdown-item .label {
        font-size: 0.8rem;
    }
}

.event-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.highlight {
    background: rgba(0, 255, 136, 0.1);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--primary-color);
    font-weight: 500;
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    padding: 4rem;
    background: rgba(10, 25, 47, 0.6);
    border-radius: 30px;
    box-shadow: 
        0 0 50px rgba(0, 255, 136, 0.15),
        inset 0 0 30px rgba(0, 255, 136, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 255, 136, 0.3);
    animation: contentPulse 4s ease-in-out infinite;
    margin: 80px auto;
}

.title-container {
    position: relative;
    margin-bottom: 1rem;
}

.motto {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 1rem 0;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(100, 255, 218, 0.6);
    animation: mottoGlow 2s ease-in-out infinite alternate;
}

@keyframes mottoGlow {
    from { text-shadow: 0 0 15px rgba(100, 255, 218, 0.6); }
    to { text-shadow: 0 0 25px rgba(100, 255, 218, 0.9), 0 0 35px rgba(0, 255, 136, 0.5); }
}

.mega-title {
    font-size: 6.5rem;
    font-weight: 800;
    letter-spacing: 6px;
    background: linear-gradient(45deg, 
        var(--primary-color), 
        var(--accent-color), 
        #00ffff,
        #ff00ff,
        var(--primary-color)
    );
    background-size: 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGradient 6s linear infinite;
    filter: drop-shadow(0 0 25px rgba(0, 255, 136, 0.5));
    text-shadow: 
        0 0 30px rgba(0, 255, 136, 0.8),
        0 0 60px rgba(0, 255, 136, 0.4),
        0 0 90px rgba(0, 255, 136, 0.2);
}

@media (max-width: 768px) {
    .mega-title {
        font-size: 4rem;
        letter-spacing: 4px;
    }
}

.title-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(
        circle,
        rgba(0, 255, 136, 0.4) 0%,
        rgba(100, 255, 218, 0.3) 20%,
        rgba(255, 0, 255, 0.2) 40%,
        transparent 70%
    );
    filter: blur(25px);
    animation: glowPulse 4s ease-in-out infinite;
    mix-blend-mode: screen;
}

.hero-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.8rem;
    margin: 2rem auto;
    padding: 1.2rem 1.5rem;
    background: rgba(10, 25, 47, 0.9);
    backdrop-filter: blur(12px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 650px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.7rem 1rem;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.feature-item i {
    font-size: 1.4rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

.feature-item span {
    font-size: 0.95rem;
    color: #ffffff;
    white-space: nowrap;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.25);
}

@media (max-width: 768px) {
    .hero-features {
        flex-direction: column;
        gap: 0.8rem;
        padding: 1rem;
        margin: 1.5rem 1rem;
        max-width: calc(100% - 2rem);
    }

    .feature-item {
        width: 100%;
        justify-content: center;
    }
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes gridMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

@keyframes scanLine {
    0% { transform: translateX(-50%) rotate(45deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(50%) rotate(45deg); opacity: 0; }
}

@keyframes contentPulse {
    0% { box-shadow: 0 0 50px rgba(0, 255, 136, 0.1); }
    50% { box-shadow: 0 0 100px rgba(0, 255, 136, 0.2); }
    100% { box-shadow: 0 0 50px rgba(0, 255, 136, 0.1); }
}

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

@keyframes glowPulse {
    0% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); filter: blur(25px); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.15); filter: blur(20px); }
    100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); filter: blur(25px); }
}

@keyframes btn-anim1 {
    0% { left: -100%; }
    50%,100% { left: 100%; }
}

@keyframes btn-anim2 {
    0% { top: -100%; }
    50%,100% { top: 100%; }
}

@keyframes btn-anim3 {
    0% { right: -100%; }
    50%,100% { right: 100%; }
}

@keyframes btn-anim4 {
    0% { bottom: -100%; }
    50%,100% { bottom: 100%; }
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.cyber-btn {
    position: relative;
    display: inline-block;
    padding: 1.2rem 3rem;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    overflow: hidden;
    transition: 0.5s;
    margin-top: 2rem;
}

.cyber-btn:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    box-shadow: 0 0 50px var(--primary-color);
    transition-delay: 0.5s;
}

.cyber-btn span {
    position: absolute;
    display: block;
}

.cyber-btn span:nth-child(1) {
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color));
    animation: btn-anim1 1s linear infinite;
}

.cyber-btn span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--primary-color));
    animation: btn-anim2 1s linear infinite;
    animation-delay: 0.25s;
}

.cyber-btn span:nth-child(3) {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, transparent, var(--primary-color));
    animation: btn-anim3 1s linear infinite;
    animation-delay: 0.5s;
}

.cyber-btn span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg, transparent, var(--primary-color));
    animation: btn-anim4 1s linear infinite;
    animation-delay: 0.75s;
}

.cta-button::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: 0.5s;
    z-index: -1;
}

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

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px var(--primary-color);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 255, 136, 0.2);
}

/* Register Button */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    color: var(--primary-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color);
    background: transparent;
    margin: 2rem auto;
    font-weight: 500;
}

.cta-button span {
    position: absolute;
    background: var(--primary-color);
}

.cta-button span:nth-child(1) {
    width: 100%;
    height: 2px;
    top: 0;
    left: -100%;
    transition: 0.5s;
}

.cta-button span:nth-child(2) {
    width: 100%;
    height: 2px;
    bottom: 0;
    right: -100%;
    transition: 0.5s;
}

.cta-button span:nth-child(3) {
    width: 2px;
    height: 100%;
    bottom: -100%;
    left: 0;
    transition: 0.5s;
}

.cta-button span:nth-child(4) {
    width: 2px;
    height: 100%;
    top: -100%;
    right: 0;
    transition: 0.5s;
}

.cta-button:hover {
    color: var(--dark-bg);
    background: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    transform: translateY(-3px);
}

.cta-button:hover span:nth-child(1) {
    left: 0;
}

.cta-button:hover span:nth-child(2) {
    right: 0;
}

.cta-button:hover span:nth-child(3) {
    bottom: 0;
}

.cta-button:hover span:nth-child(4) {
    top: 0;
}

/* About Section */
.about {
    width: 100%;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    background: rgba(10, 25, 47, 0.95);
    box-sizing: border-box;
}

.about-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
    align-items: start;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    margin-bottom: 2rem;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.05);
}

.about-main-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 
        0 0 20px rgba(0, 255, 136, 0.6),
        0 0 40px rgba(0, 255, 136, 0.4);
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding-bottom: 1.5rem;
}

.about-main-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 2px;
}

.about-text {
    text-align: left;
    padding-right: 2rem;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.1);
}

.about-images {
    position: relative;
}

.about-images .cyber-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 2rem;
    border-radius: 15px;
    background: rgba(0, 255, 136, 0.02);
    border: 1px solid rgba(0, 255, 136, 0.1);
    box-shadow: 
        inset 0 0 30px rgba(0, 255, 136, 0.05),
        0 0 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.cyber-grid::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, rgba(0, 255, 136, 0.1), transparent);
    border-radius: 15px;
    z-index: -1;
    pointer-events: none;
}

.cyber-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid rgba(0, 255, 136, 0.2);
    transition: all 0.4s ease;
    filter: brightness(0.85) contrast(1.2) saturate(1.1);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.1);
    position: relative;
    overflow: hidden;
}

.cyber-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 255, 136, 0.1) 0%,
        transparent 100%
    );
    pointer-events: none;
}

.cyber-img:hover {
    transform: translateY(-5px);
    filter: brightness(1) contrast(1.2) saturate(1.2);
    border-color: rgba(0, 255, 136, 0.6);
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(0, 255, 136, 0.3);
}

@media (max-width: 768px) {
    /* About Section Mobile Styles */
    .about-main-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
        margin-bottom: 2rem;
    }

    /* Cyber Grid Mobile Styles */
    .cyber-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .cyber-img {
        height: 180px;
    }

    .cyber-img:hover {
        transform: translateY(-3px) scale(1.01);
        box-shadow: 
            0 5px 15px rgba(0, 0, 0, 0.2),
            0 0 15px rgba(0, 255, 136, 0.2);
    }

    .about-images {
        margin-top: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }

    .about-text {
        order: 1;
        padding-right: 0;
    }

    .about-images {
        order: 2;
    }

    .about-text p {
        font-size: 1.1rem;
        line-height: 1.7;
    }

    .cyber-img {
        height: 150px;
    }

    .about-images .cyber-grid {
        gap: 1rem;
        padding: 1rem;
    }

    .event-highlights {
        flex-direction: column;
        gap: 1rem;
    }

    .highlight {
        width: 100%;
    }
}

.event-highlights {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.prize-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.feature {
    background: rgba(0, 255, 136, 0.02);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.feature:hover {
    transform: translateY(-5px);
    background: rgba(0, 255, 136, 0.05);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.1);
}

@media (max-width: 768px) {
    .features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature {
        padding: 1.5rem;
    }
    
    .feature i {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.prize-section {
    margin-bottom: 6rem;
    text-align: center;
    padding: 3rem 0;
    background: rgba(0, 255, 136, 0.02);
    border-radius: 20px;
}

.section-title {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.prize-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0;
    perspective: 1000px;
}

.prize-card {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 15px;
    padding: 2rem;
    min-width: 200px;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 300px;
    opacity: 0;
    transform: translateY(20px);
    animation: revealPrize 0.6s ease forwards;
}

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

.prize-card:nth-child(1) { animation-delay: 0.2s; }
.prize-card:nth-child(2) { animation-delay: 0.4s; }
.prize-card:nth-child(3) { animation-delay: 0.6s; }

.prize-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 255, 136, 0.1);
    background: rgba(0, 255, 136, 0.1);
}

.trophy {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.prize-card h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.prize-card p {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .prize-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .prize-card {
        width: 100%;
        max-width: 250px;
    }
}

.organizers {
    text-align: center;
    margin: 6rem 0;
    padding: 4rem 0;
    background: rgba(0, 255, 136, 0.02);
    border-radius: 20px;
}

.organizers h2 {
    color: var(--accent-color);
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.organizer-details {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.organizer {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.organizer:hover {
    transform: translateY(-5px);
}

.prize-section {
    margin: 0 0 6rem 0;
    text-align: center;
    background: rgba(0, 255, 136, 0.02);
    padding: 4rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.prize-section h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.prize-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.prize-card {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid var(--primary-color);
    padding: 2rem;
    border-radius: 15px;
    min-width: 200px;
    transition: all 0.3s ease;
}

.prize-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.prize-card.first {
    background: rgba(255, 215, 0, 0.05);
    border-color: #FFD700;
}

.prize-card.second {
    background: rgba(192, 192, 192, 0.05);
    border-color: #C0C0C0;
}

.prize-card.third {
    background: rgba(205, 127, 50, 0.05);
    border-color: #CD7F32;
}

.prize-card .trophy {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.prize-card h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.prize-card p {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

.organizer img {
    height: 80px;
    width: auto;
    margin-bottom: 1rem;
    object-fit: contain;
    transition: all 0.3s ease;
    max-width: 100%;
}

.organizer img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.organizers {
    margin: 4rem 0;
    text-align: center;
    padding: 2rem;
    background: rgba(0, 255, 136, 0.02);
    border-radius: 20px;
}

.organizer-details {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 2rem;
}

.organizer {
    flex: 1;
    max-width: 300px;
    padding: 1.5rem;
    background: rgba(0, 255, 136, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
}

.organizer:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.1);
}

.organizer h4 {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-top: 1rem;
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Cyber Grid Images */
.cyber-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 255, 136, 0.05);
    border-radius: 10px;
    border: 1px solid var(--primary-color);
}

.cyber-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease;
    filter: brightness(0.8) contrast(1.2);
}

.cyber-img:hover {
    transform: scale(1.05);
    filter: brightness(1) contrast(1);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

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

.feature {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature p {
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-top: 0.5rem;
}

/* Schedule Section */
.schedule {
    padding: 100px 5%;
    background: linear-gradient(to bottom, #0d2440, var(--dark-bg));
}

.timeline {
    max-width: 900px;
    margin: 3rem auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
    opacity: 0.5;
}

.cyber-card {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.1);
    transition: all 0.4s ease;
}

.cyber-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.2);
    background: rgba(0, 255, 136, 0.08);
}

.cyber-text {
    color: var(--primary-color);
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.5);
    font-weight: bold;
    letter-spacing: 1px;
}

.cyber-glitch {
    position: relative;
    color: var(--accent-color);
    text-shadow: 0 0 5px rgba(100, 255, 218, 0.5);
    animation: glitch 2s infinite;
}

.cyber-fade-in {
    animation: cyberFadeIn 1s ease-out;
}

.cyber-pulse {
    animation: cyberPulse 2s infinite;
}

.prize-text {
    font-size: 1.2rem;
    margin: 1rem 0;
    transition: all 0.3s ease;
}

.cyber-glow {
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(100, 255, 218, 0.5);
    animation: prizeGlow 2s infinite alternate;
}

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

@keyframes cyberPulse {
    0% { opacity: 0.7; }
    50% { opacity: 1; }
    100% { opacity: 0.7; }
}

@keyframes prizeGlow {
    from { text-shadow: 0 0 5px rgba(100, 255, 218, 0.5); }
    to { text-shadow: 0 0 15px rgba(100, 255, 218, 0.8); }
}

@keyframes glitch {
    0% { transform: none; opacity: 1; }
    7% { transform: skew(-0.5deg, -0.9deg); opacity: 0.75; }
    10% { transform: none; opacity: 1; }
    27% { transform: none; opacity: 1; }
    30% { transform: skew(0.8deg, -0.1deg); opacity: 0.75; }
    35% { transform: none; opacity: 1; }
    52% { transform: none; opacity: 1; }
    55% { transform: skew(-1deg, 0.2deg); opacity: 0.75; }
    50% { transform: none; opacity: 1; }
    72% { transform: none; opacity: 1; }
    75% { transform: skew(0.4deg, 1deg); opacity: 0.75; }
    80% { transform: none; opacity: 1; }
    100% { transform: none; opacity: 1; }
}

.timeline-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.timeline-item .venue {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.timeline-item.prizes {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--primary-color);
}

.timeline-item.prizes .event p {
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 1rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.timeline-item:hover {
    transform: scale(1.02);
}

.time {
    color: var(--primary-color);
    font-weight: bold;
}

/* Registration Form */
#register {
    text-align: center;
    padding: 5rem 0;
}

.registration-form {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.submit-button {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: var(--dark-bg);
    padding: 1.2rem 3.5rem;
    font-size: 1.3rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.2);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.3);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: rgba(10, 25, 47, 0.9);
}

.contact .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem auto;
}

.contact-card {
    background: rgba(2, 12, 27, 0.8);
    border: 1px solid rgba(0, 255, 136, 0.1);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-title {
    margin-bottom: 2rem;
}

.contact-title i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-title h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin: 0.5rem 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-person {
    padding-bottom: 0.4rem;
    margin-bottom: 0.4rem;
    border-bottom: 1px solid rgba(0, 255, 136, 0.15);
}

.contact-person:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.contact-person p {
    margin: 0.08rem 0;
    font-size: 0.95rem;
}

.contact-title {
    margin-bottom: 1rem;
}

.contact-title i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.whatsapp-link {
    color: #25D366;
    font-size: 1.2rem;
    margin-top: 0.08rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    transform: scale(1.15);
    text-shadow: 0 0 10px rgba(37, 211, 102, 0.5);
}

@media (max-width: 992px) {
    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
}

/* Footer */
footer {
    padding: 2rem;
    text-align: center;
    background: var(--dark-bg);
}

/* Small Screen Adjustments */
@media (max-width: 480px) {
    .org-logos {
        padding: 0.2rem;
    }

    .org-logo {
        height: 35px;
    }

    .navbar {
        padding: 0.8rem 3%;
    }

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

    .tagline {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .event-date {
        font-size: 1rem;
    }

    .feature {
        padding: 1rem;
    }

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

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

    .cyber-img {
        height: 180px;
    }

    .timeline-item {
        padding: 1rem;
    }

    .contact-item {
        padding: 1.2rem;
    }

    .contact-item i {
        font-size: 2rem;
    }

    .contact-item h4 {
        font-size: 1rem;
    }

    .registration-form {
        padding: 1rem;
    }

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

    .submit-button {
        margin-top: 1.5rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        padding: 2rem;
    }
    
    .contact-item h4 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-numbers {
        padding: 1rem;
        margin: 0.8rem 0;
    }
    
    .contact-numbers p {
        font-size: 1rem;
    }
    
    .whatsapp-link {
        font-size: 1.4rem;
        width: 40px;
        height: 40px;
    }
    
    .social-media {
        margin: 2rem 0;
        padding: 1.5rem;
    }

    .social-links {
        gap: 1.5rem;
    }

    .social-link {
        font-size: 1.8rem;
        padding: 0.8rem;
    }
    .hero {
        padding: 100px 15px;
    }

    .hero-content {
        padding: 2rem;
        margin-top: -30px;
        width: 95%;
    }
    .motto {
        font-size: 1.2rem;
        margin: 0.8rem 0;
        padding: 0 1rem;
    }

    .organizers {
        margin: 3rem 0;
        padding: 1rem;
    }

    .organizer-details {
        flex-direction: column;
        gap: 2rem;
    }

    .organizer {
        width: 100%;
        max-width: 300px;
    }
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(10, 25, 47, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        display: flex;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }

    .feature {
        padding: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .tagline {
        font-size: 1.3rem;
    }

    .event-date {
        font-size: 1.1rem;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .timeline-item h4 {
        font-size: 1.1rem;
    }

    .timeline-item.prizes {
        margin-top: 2rem;
    }

    .registration-form {
        padding: 1.5rem;
    }

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

    .submit-button {
        margin-top: 1.5rem;
    }
}

/* Section Headers */
h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

/* Note Section */
.note-section {
    padding: 3rem 2rem;
    margin: 2rem auto;
    max-width: 1200px;
    text-align: center;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 10px;
}

.note-icon {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.note-text {
    color: var(--accent-color);
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Social Media Section */
.social-media {
    text-align: center;
    margin: 3rem auto;
    padding: 2rem;
    background: rgba(0, 255, 136, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    max-width: 600px;
}

.social-media h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.social-link {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 50%;
    background: rgba(0, 255, 136, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    transform: translateY(-5px);
    color: var(--accent-color);
    background: rgba(0, 255, 136, 0.2);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.2);
}

/* Sections Common Styles */
section {
    width: 100%;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

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