/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    --devthon-primary: #00D9FF;
    --devthon-secondary: #00BFFF;
    --devthon-accent: #0CF;
    --devthon-dark: #0a1628;
    --devthon-purple: #0d1b2a;
    --devthon-gray: #081420;
    --devthon-light: #F8F9FA;
    --devthon-success: #00FF9F;
    --devthon-danger: #DC3545;
    --devthon-warning: #FFC107;
    --devthon-info: #00D9FF;
    --text-primary: #FFFFFF;
    --text-secondary: #8FA3BF;
    --text-muted: rgba(255, 255, 255, 0.7);
    --cyan-glow: #00D9FF;
    --blue-dark: #0a1628;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(135deg, #0a1628 0%, #0d1b2a 50%, #081420 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    padding-top: 80px;
    position: relative;
}

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

/* ===== NAVIGATION STYLES ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 45, 146, 0.1);
    overflow-x: hidden;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.nav-logo {
    flex-shrink: 0;
}

.nav-logo .logo-text {
    font-family: 'Anton', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-logo .highlight {
    color: #00D9FF;
}

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

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #00D9FF;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00D9FF, #00BFFF);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.register-nav-btn {
    background: linear-gradient(135deg, #00D9FF, #00BFFF);
    color: white !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.4);
}

.register-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 217, 255, 0.6);
    background: linear-gradient(135deg, #00BFFF, #00D9FF);
}

.register-nav-btn::after {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
    background: linear-gradient(135deg, #0a1628 0%, #0d1b2a 30%, #081420 70%, #0a1628 100%);
    overflow: hidden;
}

/* Animated Particles Background */
.particles-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(0, 217, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat 15s linear infinite;
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.8);
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 15s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 10s; }
.particle:nth-child(4) { left: 50%; animation-delay: 1s; animation-duration: 18s; }
.particle:nth-child(5) { left: 60%; animation-delay: 3s; animation-duration: 14s; }
.particle:nth-child(6) { left: 75%; animation-delay: 5s; animation-duration: 16s; }
.particle:nth-child(7) { left: 85%; animation-delay: 2.5s; animation-duration: 11s; }
.particle:nth-child(8) { left: 95%; animation-delay: 4.5s; animation-duration: 13s; }

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* Gradient Orbs */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: orbFloat 20s ease-in-out infinite;
    z-index: 1;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #00D9FF, transparent);
    top: 20%;
    left: 10%;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #00BFFF, transparent);
    top: 50%;
    right: 10%;
    animation-delay: 5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #0CF, transparent);
    bottom: 10%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

/* Cyber Lion Background */
.cyber-lion-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/cyber-lion.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 2;
    pointer-events: none;
    animation: lionPulse 8s ease-in-out infinite, 
               lionZoom 20s ease-in-out infinite,
               lionGlow 6s ease-in-out infinite;
}

@keyframes lionPulse {
    0%, 100% {
        opacity: 0.15;
        filter: brightness(1) contrast(1.2);
    }
    50% {
        opacity: 0.25;
        filter: brightness(1.3) contrast(1.4);
    }
}

@keyframes lionZoom {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.08) translateX(-2%);
    }
    50% {
        transform: scale(1.05) translateY(2%);
    }
    75% {
        transform: scale(1.1) translateX(2%);
    }
}

@keyframes lionGlow {
    0%, 100% {
        filter: brightness(1) saturate(1) hue-rotate(0deg);
    }
    33% {
        filter: brightness(1.2) saturate(1.3) hue-rotate(10deg);
    }
    66% {
        filter: brightness(0.9) saturate(1.1) hue-rotate(-10deg);
    }
}

@keyframes lionFloat {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    33% {
        transform: translate(-48%, -52%) scale(1.05);
    }
    66% {
        transform: translate(-52%, -48%) scale(0.98);
    }
}

/* Hero Content */
.hero-content {
    z-index: 10;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 80px);
}

.hero-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Floating Tech Icons */
.floating-tech-icons {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
}

.tech-icon-float {
    position: absolute;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 217, 255, 0.08);
    border: 2px solid rgba(0, 217, 255, 0.25);
    border-radius: 18px;
    backdrop-filter: blur(10px);
    animation: floatUpDown 6s ease-in-out infinite;
    transition: all 0.4s ease;
    pointer-events: auto;
}

.tech-icon-float:nth-child(1) { animation-delay: 0s; }
.tech-icon-float:nth-child(2) { animation-delay: 0.5s; }
.tech-icon-float:nth-child(3) { animation-delay: 1s; }
.tech-icon-float:nth-child(4) { animation-delay: 1.5s; }
.tech-icon-float:nth-child(5) { animation-delay: 2s; }
.tech-icon-float:nth-child(6) { animation-delay: 2.5s; }
.tech-icon-float:nth-child(7) { animation-delay: 3s; }
.tech-icon-float:nth-child(8) { animation-delay: 3.5s; }

.tech-icon-float:hover {
    transform: scale(1.15) rotate(8deg);
    background: rgba(0, 217, 255, 0.15);
    border-color: #00D9FF;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
}

.tech-icon-float i {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #00D9FF, #00BFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-25px) rotate(5deg);
    }
}

/* Hero Text */
.hero-text-content {
    max-width: 1000px;
    margin: 0 auto;
    z-index: 5;
}

.hero-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
   
}

.title-line {
    display: block;
    color: #FFFFFF;
    text-shadow: 
        0 0 40px rgba(0, 217, 255, 0.5),
        0 0 80px rgba(0, 191, 255, 0.3);
}

.highlight-text {
    color: #00D9FF;
    text-shadow: 
        0 0 40px rgba(0, 217, 255, 0.8),
        0 0 80px rgba(0, 217, 255, 0.5);
}

.version-text {
    display: block;
    font-size: clamp(3rem, 8vw, 6rem);
    background: linear-gradient(135deg, #00D9FF, #00BFFF, #0CF);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    margin-top: 0.5rem;
}

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

.hero-subtitle {
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    font-weight: 400;
    line-height: 1.5;
    animation: fadeInUp 1s ease 0.6s both;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* CTA Buttons */
.hero-cta-group {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.9s both;
    margin-top: 2rem;
}

.cta-button {
    border: none;
    padding: 0.9rem 2.2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-family: 'Outfit', sans-serif;
}

.cta-primary {
    background: linear-gradient(135deg, #00D9FF, #00BFFF);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.6);
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: none;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.cta-booklet {
    background: linear-gradient(135deg, #00D9FF, #4A90E2);
    color: #fff;
    border: 2px solid rgba(0, 217, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
    text-decoration: none;
}

.cta-booklet:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.6);
    background: linear-gradient(135deg, #4A90E2, #00D9FF);
    border-color: rgba(0, 217, 255, 0.5);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-primary:hover i {
    transform: translateX(5px);
}

/* Countdown Timer Styles */
.countdown-wrapper {
    margin: 40px auto 35px;
    text-align: center;
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
    max-width: 1000px;
}

.countdown-category {
    flex: 1;
    max-width: 480px;
    padding: 18px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 14px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 217, 255, 0.15);
}

.countdown-label {
    font-size: 11px;
    font-weight: 600;
    color: #00D9FF;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-shadow: 0 0 15px rgba(0, 217, 255, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.category-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 16px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.university-badge {
    background: linear-gradient(135deg, #4A90E2, #00D9FF);
    color: #000;
    box-shadow: 0 3px 12px rgba(0, 217, 255, 0.35);
}

.school-badge {
    background: linear-gradient(135deg,  #4A90E2, #00D9FF);
    color: #000;
    box-shadow: 0 3px 12px 0.35 rgba(0, 217, 255, 0.35);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.countdown-item {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.08), rgba(74, 144, 226, 0.08));
    border: 1.5px solid rgba(0, 217, 255, 0.25);
    border-radius: 10px;
    padding: 10px 14px;
    min-width: 65px;
    backdrop-filter: blur(8px);
    box-shadow: 0 6px 20px rgba(0, 217, 255, 0.15);
    transition: all 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
    border-color: rgba(0, 217, 255, 0.5);
}

.countdown-value {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: #00D9FF;
    line-height: 1;
    margin-bottom: 4px;
    text-shadow: 0 0 15px rgba(0, 217, 255, 0.4);
}

.countdown-unit {
    display: block;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

.countdown-separator {
    font-size: 22px;
    font-weight: 700;
    color: #00D9FF;
    margin: 0 3px;
    text-shadow: 0 0 15px rgba(0, 217, 255, 0.4);
}

.countdown-expired {
    font-size: 16px;
    font-weight: 700;
    color: #ff4757;
    padding: 15px;
    background: rgba(255, 71, 87, 0.1);
    border: 2px solid rgba(255, 71, 87, 0.3);
    border-radius: 10px;
    text-align: center;
}

/* Scroll Down Arrow */
.scroll-down-arrow {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 50%;
    color: #00D9FF;
    font-size: 20px;
    text-decoration: none;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 217, 255, 0.2);
    transition: all 0.3s ease;
    animation: bounceArrow 2s infinite;
    z-index: 10;
}

.scroll-down-arrow:hover {
    background: rgba(0, 217, 255, 0.2);
    border-color: rgba(0, 217, 255, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 217, 255, 0.4);
}

.scroll-down-arrow i {
    transition: transform 0.3s ease;
}

.scroll-down-arrow:hover i {
    transform: translateY(3px);
}

@keyframes bounceArrow {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.cta-secondary:hover i {
    transform: translateY(3px);
}

.cta-booklet:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(22, 33, 62, 0.3) 100%);
    position: relative;
    margin-top: -80px;
}

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

.stat-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00D9FF, #00BFFF);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: #00D9FF;
    box-shadow: 0 20px 50px rgba(0, 217, 255, 0.3);
}

.stat-glow {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.3), transparent);
    border-radius: 50%;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.stat-icon-wrapper {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(0, 191, 255, 0.2));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 217, 255, 0.3);
}

.stat-icon-wrapper i {
    font-size: 2rem;
    color: #00D9FF;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    font-family: 'Anton', sans-serif;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 5rem 0;
    position: relative;
    background: linear-gradient(135deg, rgba(10, 15, 30, 0.95) 0%, rgba(22, 33, 62, 0.9) 50%, rgba(10, 15, 30, 0.95) 100%);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(0, 191, 255, 0.2));
    border: 1px solid rgba(0, 217, 255, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00D9FF;
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: 'Anton', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.section-title .highlight {
    color: #00D9FF;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

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

.feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 2.5rem 2.5rem;
    border-radius: 25px 25px 0 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: visible;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 40px;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 30px;
    background: linear-gradient(135deg, #FFB700, #FFA500);
    border-radius: 0 0 20px 20px;
    box-shadow: 0 10px 30px rgba(255, 183, 0, 0.4);
    transition: all 0.4s ease;
}

.feature-card:nth-child(2)::after {
    background: linear-gradient(135deg, #00D9FF, #00BFFF);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
}

.feature-card:nth-child(3)::after {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.4);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::after {
    bottom: -35px;
    height: 35px;
}

.feature-icon-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 183, 0, 0.1);
    border-radius: 50%;
}

.feature-card:nth-child(2) .feature-icon-wrapper {
    background: rgba(0, 217, 255, 0.1);
}

.feature-card:nth-child(3) .feature-icon-wrapper {
    background: rgba(74, 144, 226, 0.1);
}

.feature-icon-bg {
    display: none;
}

.feature-icon-wrapper i {
    font-size: 3rem;
    color: #FFB700;
    z-index: 1;
    transition: transform 0.4s ease;
}

.feature-card:nth-child(2) .feature-icon-wrapper i {
    color: #00D9FF;
}

.feature-card:nth-child(3) .feature-icon-wrapper i {
    color: #4A90E2;
}

.feature-card:hover .feature-icon-wrapper i {
    transform: scale(1.15) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 1.2rem;
}

.feature-card p:last-of-type {
    margin-bottom: 0;
}

.feature-tech-tags {
    display: none;
}

/* ===== WHY WEB DEVELOPMENT SECTION ===== */
.why-web-dev-section {
    padding: 5rem 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.why-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.why-decorative-boxes {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deco-box {
    position: absolute;
    background: linear-gradient(135deg, #00D9FF 0%, #00BFFF 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.4);
    animation: floatUpDown 6s ease-in-out infinite;
}

.box-1 {
    width: 220px;
    height: 220px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.box-2 {
    width: 360px;
    height: 360px;
    bottom: 10%;
    right: 5%;
    animation-delay: 1s;
    opacity: 0.9;
}

.why-text-content {
    padding: 2rem;
}

.why-title {
    font-family: 'Anton', sans-serif;
    font-size: 2.8rem;
    line-height: 1.3;
    color: #00D9FF;
    margin-bottom: 2rem;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.why-description {
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    text-align: justify;
}

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

.why-feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.05rem;
    color: #fff;
    font-weight: 500;
}

.why-feature-item i {
    color: #00D9FF;
    font-size: 1.3rem;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background: #00D9FF;
    color: #000;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.read-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.5);
    background: #00BFFF;
}

.read-more-btn i {
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Why Web Dev */
@media (max-width: 1024px) {
    .why-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .why-decorative-boxes {
        height: 300px;
        margin-bottom: 2rem;
    }
    
    .box-1 {
        width: 160px;
        height: 160px;
    }
    
    .box-2 {
        width: 260px;
        height: 260px;
    }
    
    .why-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .why-features {
        grid-template-columns: 1fr;
    }
    
    .why-title {
        font-size: 1.8rem;
    }
    
    .why-description {
        font-size: 0.95rem;
    }
}

/* ===== TIMELINE SECTION ===== */
.timeline-section {
    padding: 5rem 0 6rem 0;
    background: linear-gradient(135deg, rgba(10, 15, 30, 0.95) 0%, rgba(22, 33, 62, 0.9) 50%, rgba(10, 15, 30, 0.95) 100%);
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* Category Toggle Buttons */
.category-toggle {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 3rem auto 2rem;
    max-width: 600px;
}

.category-btn {
    flex: 1;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.category-btn:hover {
    border-color: #00D9FF;
    color: #00D9FF;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 217, 255, 0.3);
}

.category-btn.active {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(0, 191, 255, 0.15));
    border-color: #00D9FF;
    color: #00D9FF;
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.4);
}

.category-btn.active::after {
    content: '✓';
    margin-left: 0.5rem;
    font-weight: bold;
}

.timeline-wrapper {
    position: relative;
    max-width: 900px;
    margin: 4rem auto 0;
    min-height: 800px;
    transition: all 0.3s ease;
}

.timeline-wrapper[style*="display: none"] {
    position: absolute;
    visibility: hidden;
    min-height: 0;
    margin: 0;
    padding: 0;
}

.timeline-line {
    position: absolute;
    left: 30px;
    top: 0;
    height: calc(100% - 130px);
    width: 3px;
    background: linear-gradient(180deg, #00D9FF 0%, #00BFFF 50%, #0CF 100%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.timeline {
    position: relative;
    padding-left: 80px;
}

.timeline-item {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem 2.5rem;
    border-radius: 20px;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(0, 217, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -65px;
    top: 2rem;
    width: 18px;
    height: 18px;
    background: #00D9FF;
    border-radius: 50%;
    border: 4px solid rgba(10, 22, 40, 0.9);
    box-shadow: 0 0 0 4px rgba(0, 217, 255, 0.3), 0 0 20px rgba(0, 217, 255, 0.8);
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item:hover::before {
    transform: scale(1.3);
    box-shadow: 0 0 0 6px rgba(0, 217, 255, 0.4), 0 0 30px rgba(0, 217, 255, 1);
}

.timeline-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: #00D9FF;
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.3);
}

.timeline-date {
    display: inline-block;
    background: rgba(0, 217, 255, 0.15);
    border: 1px solid rgba(0, 217, 255, 0.4);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    color: #00D9FF;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-event {
    font-size: 1.5rem;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.timeline-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Workshop Timeline Items */
.timeline-workshop {
    margin-left: 60px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(75, 0, 130, 0.1)) !important;
    border-left: 4px solid #8A2BE2 !important;
    border-color: rgba(138, 43, 226, 0.4) !important;
    position: relative;
}

.timeline-workshop::before {
    background: #8A2BE2 !important;
    border: 4px solid rgba(10, 22, 40, 0.9);
    box-shadow: 0 0 0 4px rgba(138, 43, 226, 0.3), 0 0 20px rgba(138, 43, 226, 0.8) !important;
   
}

.timeline-workshop:hover::before {
    box-shadow: 0 0 0 6px rgba(138, 43, 226, 0.4), 0 0 30px rgba(138, 43, 226, 1) !important;
}

.timeline-workshop:hover {
    border-color: #8A2BE2 !important;
    box-shadow: 0 10px 40px rgba(138, 43, 226, 0.3) !important;
}

.timeline-workshop .timeline-date {
    background: rgba(138, 43, 226, 0.15);
    border-color: rgba(138, 43, 226, 0.4);
    color: #9370DB;
}

.timeline-workshop .timeline-event {
    color: #E6E6FA;
}

.workshop-parent-stage {
    display: inline-block;
    background: rgba(138, 43, 226, 0.2);
    border: 1px dashed rgba(138, 43, 226, 0.5);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #9370DB;
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-style: italic;
}

/* ===== AWARDS & PRIZES SECTION ===== */
.awards-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(10, 15, 30, 0.95) 0%, rgba(22, 33, 62, 0.9) 50%, rgba(10, 15, 30, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.awards-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    animation: rotateGlow 20s linear infinite;
    pointer-events: none;
}

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

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

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.award-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem 2rem;
    border-radius: 30px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    overflow: hidden;
}

.award-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

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

.award-card:hover {
    transform: translateY(-20px) scale(1.05);
    border-color: #FFD700;
    box-shadow: 0 30px 70px rgba(255, 215, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.champion-card {
    border-color: rgba(255, 215, 0, 0.4);
}

.champion-card:hover {
    border-color: #FFD700;
    box-shadow: 0 30px 70px rgba(255, 215, 0, 0.5);
}

.runner-up-card {
    border-color: rgba(192, 192, 192, 0.3);
}

.runner-up-card:hover {
    border-color: #C0C0C0;
    box-shadow: 0 30px 70px rgba(192, 192, 192, 0.4);
}

.award-rank {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 5px 15px rgba(255, 215, 0, 0.5));
    animation: floatAward 3s ease-in-out infinite;
}

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

.award-image-wrapper {
    width: 180px;
    height: 180px;
    margin: 0 auto 2rem;
    position: relative;
    border-radius: 50%;
    padding: 15px;
    background: 'black';
    border: 3px solid rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.award-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    transition: transform 0.5s ease;
    background: transparent;
    mix-blend-mode: multiply;
}

.award-card:hover .award-image {
    transform: scale(1.1) rotate(5deg);
}

.award-title {
    font-size: 1.8rem;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.award-prize {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.award-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

.prize-total {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.05));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.prize-total::before {
    content: '💰';
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 8rem;
    opacity: 0.1;
    transform: rotate(-15deg);
}

.prize-total::after {
    content: '💰';
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 8rem;
    opacity: 0.1;
    transform: rotate(15deg);
}

.prize-total-content {
    position: relative;
    z-index: 1;
}

.prize-label {
    display: block;
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.prize-amount {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FFD700, #FFA500, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
    animation: prizeGlow 2s ease-in-out infinite;
}

@keyframes prizeGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.prize-note {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-top: 1rem;
    font-style: italic;
}

/* ===== PARTNERS SECTION ===== */
.partners-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(10, 15, 30, 0.95) 0%, rgba(22, 33, 62, 0.9) 50%, rgba(10, 15, 30, 0.95) 100%);
    position: relative;
}

/* Introduction Card - Full Width */
.partners-intro-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border-radius: 25px;
    margin: 4rem 0 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 217, 255, 0.15);
    backdrop-filter: blur(10px);
}

.partners-intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00D9FF, #00BFFF, #0CF);
    border-radius: 25px 25px 0 0;
}

.partners-intro-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: #00D9FF;
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.3);
}

.partners-intro-card .feature-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(0, 191, 255, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
    border: 2px solid rgba(0, 217, 255, 0.3);
}

.partners-intro-card:hover .feature-icon-wrapper {
    transform: rotate(10deg) scale(1.1);
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.3), rgba(0, 191, 255, 0.3));
    border-color: #00D9FF;
}

.partners-intro-card .feature-icon-wrapper i {
    font-size: 3rem;
    background: linear-gradient(135deg, #00D9FF, #00BFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partners-intro-card h3 {
    font-family: 'Anton', sans-serif;
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partners-intro-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.partners-intro-card p:last-of-type {
    margin-bottom: 0;
}

/* Partners Grid - Vision & Mission */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.partner-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem 2rem;
    border-radius: 25px;
    border: 1px solid rgba(0, 217, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00D9FF, #00BFFF, #0CF);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    border-radius: 25px 25px 0 0;
}

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

.partner-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.2), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
    pointer-events: none;
}

.partner-card:hover .partner-overlay {
    transform: translate(-50%, -50%) scale(1.5);
}

.partner-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: #00D9FF;
    box-shadow: 0 25px 60px rgba(0, 217, 255, 0.3);
}

.partner-card .feature-icon-wrapper {
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(0, 191, 255, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
    border: 2px solid rgba(0, 217, 255, 0.3);
}

.partner-card:hover .feature-icon-wrapper {
    transform: rotate(10deg) scale(1.1);
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.3), rgba(0, 191, 255, 0.3));
    border-color: #00D9FF;
}

.partner-card .feature-icon-wrapper i {
    font-size: 3rem;
    background: linear-gradient(135deg, #00D9FF, #00BFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partner-content {
    width: 100%;
}

.partner-content h3 {
    font-family: 'Anton', sans-serif;
    color: var(--text-primary);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partner-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-weight: 500;
}

.partner-content p:last-child {
    margin-bottom: 0;
}

/* ===== ORGANIZERS SECTION ===== */
.organizers-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(10, 15, 30, 0.95) 0%, rgba(22, 33, 62, 0.9) 50%, rgba(10, 15, 30, 0.95) 100%);
}

.organizers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 4rem auto 0;
    justify-content: center;
}

/* Lead Organizer - Full Width, Centered */
.organizer-card:first-child {
    flex: 1 1 100%;
    max-width: 500px;
}

/* Co-Organizers - Side by Side, Centered */
.organizer-card:nth-child(2),
.organizer-card:nth-child(3) {
    flex: 0 1 calc(50% - 1.5rem);
    max-width: 450px;
}

.organizer-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3.5rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 217, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.organizer-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: #00D9FF;
    box-shadow: 0 20px 40px rgba(0, 217, 255, 0.25);
}

.organizer-logo {
    width: 80px;
    height: 80px;
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.organizer-card:hover .organizer-logo {
    background: rgba(0, 217, 255, 0.2);
    border-color: #00D9FF;
    transform: scale(1.1);
}

.organizer-logo i {
    font-size: 2.5rem;
    color: #00D9FF;
}

.organizer-card h3 {
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.4;
    font-weight: 700;
}

.organizer-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* ===== RULES & REGULATIONS SECTION ===== */
.rules-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(10, 15, 30, 0.95) 0%, rgba(22, 33, 62, 0.9) 50%, rgba(10, 15, 30, 0.95) 100%);
    overflow: hidden;
}

.rules-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 217, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(74, 144, 226, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.rules-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.rules-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.rules-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
    text-align: justify;
    margin: 0;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 18px 40px;
    background: var(--devthon-primary);
    color: #000;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: none;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    width: fit-content;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.download-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: left 0.6s ease;
}

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

.download-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.5);
}

.download-btn i {
    font-size: 1.2rem;
}

/* Feature Card */
.rules-feature {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card {
    position: relative;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.15) 0%, rgba(0, 191, 255, 0.08) 100%);
    border-radius: 25px;
    border: 2px solid rgba(0, 217, 255, 0.3);
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(0, 217, 255, 0.2),
        inset 0 0 40px rgba(0, 217, 255, 0.05);
}

.feature-glow {
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.15) 0%, transparent 60%);
    animation: featureGlowPulse 6s ease-in-out infinite;
}

@keyframes featureGlowPulse {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    50% { 
        transform: translate(-10%, -10%) scale(1.2);
        opacity: 1;
    }
}

.feature-text {
    font-size: 1.15rem;
    color: #fff !important;
    line-height: 1.8;
    text-align: center;
    margin: 0;
    position: relative;
    z-index: 2;
}

.feature-decoration {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}

.decoration-circle {
    width: 12px;
    height: 12px;
    background: var(--devthon-primary);
    border-radius: 50%;
    animation: decorationFloat 3s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.6);
}

.decoration-circle:nth-child(2) {
    animation-delay: 0.5s;
}

.decoration-circle:nth-child(3) {
    animation-delay: 1s;
}

@keyframes decorationFloat {
    0%, 100% { 
        transform: translateY(0);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* Deadline Banner */
.deadline-banner {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-top: 5rem;
    padding: 3rem 3.5rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(0, 191, 255, 0.05) 100%);
    border-radius: 25px;
    border: 2px solid rgba(0, 217, 255, 0.4);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 50px rgba(0, 217, 255, 0.15);
}

.deadline-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.1), transparent);
    animation: bannerShine 4s ease-in-out infinite;
}

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

.deadline-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(0, 191, 255, 0.15));
    border: 3px solid rgba(0, 217, 255, 0.5);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.deadline-icon i {
    font-size: 2.2rem;
    color: var(--devthon-primary);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 15px rgba(0, 217, 255, 0.5));
    }
    50% { 
        transform: scale(1.1);
        filter: drop-shadow(0 0 25px rgba(0, 217, 255, 0.8));
    }
}

.deadline-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.deadline-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--devthon-primary);
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.deadline-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.6;
}

.deadline-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--devthon-primary), #0066cc);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
    flex-shrink: 0;
}

.deadline-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.6);
}

.deadline-cta i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.deadline-cta:hover i {
    transform: translateX(5px);
}

/* Responsive Rules Section */
@media (max-width: 1024px) {
    .rules-content {
        gap: 3rem;
    }
    
    .deadline-banner {
        gap: 2rem;
        padding: 2.5rem 3rem;
    }
}

@media (max-width: 768px) {
    .rules-section {
        padding: 80px 0;
    }
    
    .rules-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .rules-text {
        text-align: center;
        align-items: center;
    }
    
    .rules-description {
        text-align: center;
        font-size: 1rem;
    }
    
    .download-btn {
        padding: 15px 35px;
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 3rem 2rem;
    }
    
    .feature-text {
        font-size: 1.05rem;
    }
    
    .deadline-banner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2.5rem 2rem;
    }
    
    .deadline-icon {
        width: 70px;
        height: 70px;
    }
    
    .deadline-icon i {
        font-size: 2rem;
    }
    
    .deadline-content h3 {
        font-size: 1.5rem;
    }
    
    .deadline-content p {
        font-size: 0.95rem;
    }
    
    .deadline-cta {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .rules-section {
        padding: 60px 0;
    }
    
    .rules-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .download-btn {
        padding: 12px 30px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
    
    .feature-card {
        padding: 2.5rem 1.5rem;
    }
    
    .feature-text {
        font-size: 1rem;
    }
    
    .deadline-banner {
        padding: 2rem 1.5rem;
    }
    
    .deadline-icon {
        width: 60px;
        height: 60px;
    }
    
    .deadline-icon i {
        font-size: 1.8rem;
    }
    
    .deadline-content h3 {
        font-size: 1.3rem;
    }
    
    .deadline-content p {
        font-size: 0.9rem;
    }
    
    .deadline-cta {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

/* ===== FOOTER ===== */
.footer {
    position: relative;
    background: linear-gradient(135deg, rgba(10, 15, 30, 0.98) 0%, rgba(22, 33, 62, 0.95) 50%, rgba(10, 15, 30, 0.98) 100%);
    padding: 0;
    overflow: hidden;
    border-top: 2px solid rgba(0, 217, 255, 0.3);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footergrid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,217,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23footergrid)"/></svg>');
    background-size: 40px 40px;
    opacity: 0.6;
    pointer-events: none;
    animation: gridMove 20s linear infinite;
}

.footer::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00D9FF, transparent);
    animation: borderGlow 3s ease-in-out infinite;
}

/* Footer Content */
.footer-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    padding: 50px 0 40px;
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

/* Footer Brand Section */
.footer-brand h2 {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Anton', sans-serif;
    color: #fff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #00D9FF 50%, #00BFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(0, 217, 255, 0.3);
    animation: textGlow 3s ease-in-out infinite alternate;
}

.footer-tagline {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 300;
}

/* Social Media Links */
.footer-social {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(0, 217, 255, 0.08);
    border: 2px solid rgba(0, 217, 255, 0.4);
    border-radius: 50%;
    color: #00D9FF;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #00D9FF, #00BFFF);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.social-link i {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.social-link:hover {
    border-color: #00D9FF;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 217, 255, 0.5), 0 0 20px rgba(0, 217, 255, 0.3);
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

.social-link:hover i {
    color: #0a0f1e;
}

/* Footer Sections */
.footer-section {
    position: relative;
}

.footer-heading {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.8rem;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #00D9FF, transparent);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1rem;
    position: relative;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.98rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    color: #00D9FF;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #00D9FF;
    padding-left: 8px;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.footer-links a:hover::before {
    left: -15px;
    opacity: 1;
}

/* Footer Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item-footer:hover {
    background: rgba(0, 217, 255, 0.05);
    transform: translateX(5px);
}

.contact-item-footer i {
    font-size: 1.1rem;
    color: #00D9FF;
    min-width: 24px;
    text-align: center;
}

.contact-item-footer span,
.contact-item-footer a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item-footer a:hover {
    color: #00D9FF;
}

/* Footer Organizers Strip */
.footer-organizers {
    position: relative;
    z-index: 2;
    padding-top: 2rem ;
    text-align: center;
    border-top: 1px solid rgba(0, 217, 255, 0.1);
    
}

.footer-organized-text {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #00D9FF;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.footer-org-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-org-logo {
    height: 55px;
    width: auto;
    filter: brightness(0.9) drop-shadow(0 0 10px rgba(0, 217, 255, 0.2));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.85;
}

.footer-org-logo:hover {
    filter: brightness(1.3) drop-shadow(0 0 20px rgba(0, 217, 255, 0.6));
    transform: scale(1.15) translateY(-5px);
    opacity: 1;
}

/* Footer Bottom */
.footer-bottom {
    position: relative;
    z-index: 2;
    padding: 1.5rem 0;
    text-align: center;
}

.footer-copyright {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    letter-spacing: 0.5px;
}

.footer-copyright strong {
    color: #00D9FF;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.3);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #00D9FF, #00BFFF);
    border: 2px solid rgba(0, 217, 255, 0.5);
    border-radius: 50%;
    color: #0a0f1e;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
}

.back-to-top::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00D9FF, #00BFFF);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.back-to-top:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 217, 255, 0.6), 0 0 30px rgba(0, 217, 255, 0.4);
    border-color: #00D9FF;
}

.back-to-top:hover::before {
    opacity: 0.3;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        padding: 60px 0 50px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 50px 0 40px;
    }
    
    .footer-brand h2 {
        font-size: 2rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-heading {
        font-size: 1.1rem;
    }
    
    .footer-org-logos {
        gap: 2rem;
    }
    
    .footer-org-logo {
        height: 40px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 40px 0 30px;
    }
    
    .footer-brand h2 {
        font-size: 1.8rem;
    }
    
    .footer-tagline {
        font-size: 0.95rem;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }
    
    .footer-heading {
        font-size: 1rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .contact-item-footer span,
    .contact-item-footer a {
        font-size: 0.85rem;
    }
    
    .footer-org-logos {
        gap: 1.5rem;
    }
    
    .footer-org-logo {
        height: 35px;
    }
    
    .footer-copyright {
        font-size: 0.85rem;
    }
    
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

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

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
    .hero-title {
        font-size: 5rem;
    }
    
    .version-text {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .timeline {
        padding-left: 60px;
    }
    
    .timeline-item::before {
        left: -55px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .version-text {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .organizers-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== REGISTRATION PAGE STYLES ===== */
.registration-main {
    min-height: 100vh;
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #0a1628 0%, #0d1b2a 30%, #081420 70%, #0a1628 100%);
}

.registration-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem;
}

.registration-title {
    font-family: 'Anton', sans-serif;
    font-size: 3.5rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.registration-title i {
    color: #00D9FF;
}

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

.registration-description p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.guideline-notice {
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.guideline-notice i {
    font-size: 2rem;
    color: #00D9FF;
    margin-bottom: 1rem;
}

.guideline-notice h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.guideline-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #00D9FF, #00BFFF);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.4);
}

.guideline-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 217, 255, 0.6);
}

.email-notice {
    background: rgba(0, 191, 255, 0.1);
    border: 1px solid rgba(0, 191, 255, 0.3);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.email-notice i {
    color: #00BFFF;
    font-size: 1.5rem;
}

.email-notice p {
    margin: 0;
    font-size: 0.95rem;
}

.registration-form-section {
    max-width: 800px;
    margin: 0 auto;
}

.registration-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 25px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    position: relative;
}

.form-section {
    animation: fadeIn 0.5s ease;
}

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

.section-header {
    margin-bottom: 2.5rem;

}

.section-number {
    display: inline-block;
    background: rgba(0, 217, 255, 0.2);
    color: #00D9FF;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin: 1rem 0 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.section-header h3 i {
    color: #00D9FF;
}

.section-description {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-top: 0.5rem;
}

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

.form-group label {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(0, 217, 255, 0.2);
    border-radius: 12px;
    color: #000000;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
}

.form-group select {
    cursor: pointer;
    background: rgba(255, 255, 255, 0.95);
    color: #000000;
}

.form-group select option {
    background: #ffffff;
    color: #000000;
    padding: 1rem;
}

.form-group input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group input:active,
.form-group select:active {
    outline: none;
    border-color: #00D9FF;
    background: #ffffff;
    color: #000000;
    box-shadow: 0 0 0 4px rgba(0, 217, 255, 0.2);
}

.form-group select {
    cursor: pointer;
}

.form-navigation {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
    justify-content: space-between;
}

.btn-prev,
.btn-next,
.btn-submit {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-prev {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-prev:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-5px);
}

.btn-next,
.btn-submit {
    background: linear-gradient(135deg, #00D9FF, #00BFFF);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.4);
    flex: 1;
}

.btn-next:hover,
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 217, 255, 0.6);
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.progress-bar {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(0, 217, 255, 0.2);
}

.progress-fill {
    height: 8px;
    background: linear-gradient(90deg, #00D9FF, #00BFFF);
    border-radius: 10px;
    transition: width 0.4s ease;
    box-shadow: 0 2px 10px rgba(0, 217, 255, 0.5);
}

.progress-text {
    text-align: center;
    color: var(--text-secondary);
    margin-top: 1rem;
    font-weight: 600;
}

.congratulations {
    text-align: center;
    padding: 2rem 0;
}

.congratulations h3 {
    font-size: 2.5rem;
    justify-content: center;
}

.congratulations-text {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-top: 1rem;
}

.whatsapp-section {
    margin: 3rem 0;
}

.whatsapp-notice {
    background: rgba(37, 211, 102, 0.1);
    border: 2px solid rgba(37, 211, 102, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
}

.whatsapp-notice i {
    font-size: 3rem;
    color: #25D366;
    margin-bottom: 1rem;
}

.whatsapp-notice h4 {
    color: var(--text-primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.whatsapp-notice p {
    color: var(--text-secondary);
    margin: 1rem 0;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #25D366;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

@media (max-width: 768px) {
    .registration-title {
        font-size: 2.5rem;
    }
    
    .registration-form {
        padding: 2rem 1.5rem;
    }
    
    .form-navigation {
        flex-direction: column;
    }
    
    .btn-prev,
    .btn-next,
    .btn-submit {
        width: 100%;
    }
}

/* ===== PAST EDITIONS SECTION ===== */
.past-editions-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(10, 15, 30, 0.95) 0%, rgba(22, 33, 62, 0.9) 50%, rgba(10, 15, 30, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.past-editions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 217, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(0, 191, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.edition-block {
    margin-bottom: 80px;
    position: relative;
}

.edition-block:last-child {
    margin-bottom: 0;
}

.edition-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.edition-year {
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--devthon-primary);
    background: rgba(0, 217, 255, 0.1);
    padding: 8px 24px;
    border-radius: 50px;
    border: 2px solid rgba(0, 217, 255, 0.3);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: glow-pulse 2s ease-in-out infinite;
}

.edition-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00D9FF 0%, #00BFFF 50%, #0CF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(0, 217, 255, 0.3);
}

.edition-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Modern Photo Gallery Styles */
.photo-gallery {
    position: relative;
    z-index: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 10px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    background: rgba(0, 217, 255, 0.05);
    border: 2px solid rgba(0, 217, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.gallery-item-large {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9) contrast(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.9) 0%, rgba(0, 191, 255, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-overlay i {
    font-size: 3rem;
    color: white;
    transform: scale(0.5) rotate(-180deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 217, 255, 0.6);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.4),
                0 0 40px rgba(0, 217, 255, 0.2);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1) rotate(0deg);
}

/* Staggered Animation on Scroll */
.gallery-item {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }

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

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0, 217, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(0, 217, 255, 0.6);
    }
}

/* Footer Animations */
@keyframes textGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.6));
    }
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* Responsive Gallery */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .gallery-item-large {
        grid-column: span 1;
        aspect-ratio: 1 / 1;
    }
}

@media (max-width: 768px) {
    .edition-title {
        font-size: 2.2rem;
    }
    
    .edition-description {
        font-size: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 12px;
    }
    
    .gallery-item-large {
        grid-column: span 1;
    }
    
    .gallery-overlay i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .past-editions-section {
        padding: 60px 0;
    }
    
    .edition-block {
        margin-bottom: 50px;
    }
    
    .edition-title {
        font-size: 1.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .gallery-item {
        aspect-ratio: 4 / 3;
    }
}


/* ===== ENHANCED ORGANIZERS SECTION ===== */
.organizers-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(13, 27, 42, 0.98) 100%);
    overflow: hidden;
}

.organizers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 217, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 191, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

/* Main Organizer Spotlight */
.main-organizer-spotlight {
    position: relative;
    margin: 4rem 0 6rem;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.08) 0%, rgba(13, 27, 42, 0.6) 100%);
    border-radius: 30px;
    border: 2px solid rgba(0, 217, 255, 0.2);
    overflow: hidden;
}

.spotlight-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(0, 217, 255, 0.15) 0%, transparent 70%);
    animation: spotlightPulse 4s ease-in-out infinite;
}

@keyframes spotlightPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.spotlight-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.spotlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 30px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.15));
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 50px;
    color: #FFD700;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    animation: badgeGlow 2s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    }
    50% { 
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.6), 0 0 60px rgba(255, 215, 0, 0.3);
    }
}

.spotlight-badge i {
    font-size: 1.1rem;
    animation: starSpin 3s linear infinite;
}

@keyframes starSpin {
    0%, 90%, 100% { transform: rotate(0deg); }
    95% { transform: rotate(360deg); }
}

.spotlight-logo {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: logoGlowPulse 3s ease-in-out infinite;
    filter: blur(30px);
}

@keyframes logoGlowPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

.spotlight-logo img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(0, 217, 255, 0.6));
    animation: logoFloat 4s ease-in-out infinite;
}

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

.spotlight-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    background: linear-gradient(135deg, #fff 0%, #00D9FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShine 3s ease-in-out infinite;
}

@keyframes titleShine {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.spotlight-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.stat-item {
    padding: 2rem 1rem;
    background: rgba(0, 217, 255, 0.05);
    border-radius: 20px;
    border: 2px solid rgba(0, 217, 255, 0.2);
    transition: all 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(0, 217, 255, 0.1);
    border-color: rgba(0, 217, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 217, 255, 0.3);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--devthon-primary);
    margin-bottom: 1rem;
    animation: iconBounce 2s ease-in-out infinite;
}

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

.stat-value {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.5rem;
    font-family: 'Anton', sans-serif;
}

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

/* Co-Organizers Title */
.co-organizers-title {
    text-align: center;
    margin: 5rem 0 4rem;
    position: relative;
}

.co-organizers-title h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.

@keyframes linePulse {
    0%, 100% { opacity: 0.5; width: 200px; }
    50% { opacity: 1; width: 300px; }
}

/* Enhanced Organizer Cards */
.organizers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.organizer-card {
    position: relative;
    text-align: center;
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.8), rgba(10, 22, 40, 0.6));
    border-radius: 25px;
    border: 2px solid rgba(0, 217, 255, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(0, 217, 255, 0.08));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.5s ease;
}

.organizer-card:hover .card-background {
    opacity: 1;
}

.organizer-card:hover .card-glow {
    opacity: 1;
    animation: glowRotate 4s linear infinite;
}

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

.organizer-badge-top {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.3), rgba(0, 191, 255, 0.2));
    border: 2px solid rgba(0, 217, 255, 0.4);
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--devthon-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
}

.organizer-logo-img {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 217, 255, 0.05);
    border-radius: 50%;
    padding: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

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

.organizer-card:hover .organizer-logo-img::before {
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.organizer-logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.organizer-card:hover .organizer-logo-img {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(0, 217, 255, 0.6);
    background: rgba(0, 217, 255, 0.1);
    box-shadow: 
        0 0 40px rgba(0, 217, 255, 0.4),
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 0 20px rgba(0, 217, 255, 0.1);
}

.organizer-card:hover .organizer-logo-img img {
    transform: scale(1.1);
    filter: brightness(1.3) contrast(1.2) drop-shadow(0 0 20px rgba(0, 217, 255, 0.5));
}

.organizer-badge {
    display: inline-block;
    margin-top: 1rem;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(0, 191, 255, 0.1));
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--devthon-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.organizer-card:hover .organizer-badge {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.3), rgba(0, 191, 255, 0.2));
    border-color: rgba(0, 217, 255, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

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

.organizer-card {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.6), rgba(10, 22, 40, 0.4));
    border-radius: 20px;
    border: 2px solid rgba(0, 217, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.organizer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(0, 217, 255, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.organizer-card:hover {
    transform: translateY(-15px);
    border-color: rgba(0, 217, 255, 0.4);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 0 50px rgba(0, 217, 255, 0.2),
        inset 0 0 30px rgba(0, 217, 255, 0.05);
}

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

.organizer-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.organizer-card:hover h3 {
    color: var(--devthon-primary);
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.organizer-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.organizer-card:hover p {
    color: var(--text-primary);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .organizers-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .organizer-logo-img {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 768px) {
    .organizers-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .organizer-card {
        padding: 2.5rem 1.5rem;
    }
    
    .organizer-logo-img {
        width: 130px;
        height: 130px;
    }
}

.logo-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    border: 3px solid rgba(0, 217, 255, 0.3);
    border-radius: 50%;
    transition: all 0.5s ease;
}

.logo-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: logoPulseEffect 2s ease-in-out infinite;
}

@keyframes logoPulseEffect {
    0%, 100% { 
        opacity: 0.3; 
        transform: translate(-50%, -50%) scale(1); 
    }
    50% { 
        opacity: 0.6; 
        transform: translate(-50%, -50%) scale(1.2); 
    }
}

.organizer-logo-img img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
    transition: all 0.5s ease;
}

.organizer-card:hover .organizer-logo-img {
    transform: translateY(-15px) scale(1.08);
    background: rgba(0, 217, 255, 0.15);
    box-shadow: 
        0 0 50px rgba(0, 217, 255, 0.5),
        0 25px 60px rgba(0, 0, 0, 0.4),
        inset 0 0 30px rgba(0, 217, 255, 0.15);
}

.organizer-card:hover .logo-ring {
    width: 240px;
    height: 240px;
    border-color: rgba(0, 217, 255, 0.6);
    border-width: 4px;
    animation: ringRotate 3s linear infinite;
}

@keyframes ringRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.organizer-card:hover .organizer-logo-img img {
    transform: scale(1.15);
    filter: brightness(1.4) contrast(1.3) drop-shadow(0 0 25px rgba(0, 217, 255, 0.7));
}

.organizer-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
    line-height: 1.4;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.organizer-card:hover h3 {
    color: var(--devthon-primary);
    text-shadow: 0 0 25px rgba(0, 217, 255, 0.6);
    transform: translateY(-5px);
}

.organizer-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.organizer-card:hover p {
    color: rgba(255, 255, 255, 0.95);
}

.organizer-card:hover {
    transform: translateY(-20px);
    border-color: rgba(0, 217, 255, 0.5);
    box-shadow: 
        0 30px 70px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(0, 217, 255, 0.3),
        inset 0 0 40px rgba(0, 217, 255, 0.08);
}

.organizer-features {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1.5rem;
    position: relative;
    z-index: 2;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 8px 16px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--devthon-primary);
    transition: all 0.3s ease;
}

.feature-tag i {
    font-size: 0.9rem;
}

.organizer-card:hover .feature-tag {
    background: rgba(0, 217, 255, 0.2);
    border-color: rgba(0, 217, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 217, 255, 0.3);
}

/* Partnership Message */
.partnership-message {
    margin-top: 6rem;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, rgba(13, 27, 42, 0.5) 100%);
    border-radius: 25px;
    border: 2px solid rgba(0, 217, 255, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partnership-message::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    animation: messageGlow 6s ease-in-out infinite;
}

@keyframes messageGlow {
    0%, 100% { 
        opacity: 0.3; 
        transform: translate(0, 0) scale(1); 
    }
    50% { 
        opacity: 0.6; 
        transform: translate(-10%, -10%) scale(1.1); 
    }
}

.message-content {
    position: relative;
    z-index: 2;
}

.partnership-icon {
    font-size: 4rem;
    color: var(--devthon-primary);
    margin-bottom: 1.5rem;
    animation: handshakePulse 2s ease-in-out infinite;
}

@keyframes handshakePulse {
    0%, 100% { 
        transform: scale(1); 
        filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.5));
    }
    50% { 
        transform: scale(1.1); 
        filter: drop-shadow(0 0 30px rgba(0, 217, 255, 0.8));
    }
}

.partnership-message h4 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #00D9FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partnership-message p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .spotlight-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .stat-value {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .organizers-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2.5rem;
    }
    
    .spotlight-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .main-organizer-spotlight {
        padding: 3rem 2rem;
    }
    
    .spotlight-title {
        font-size: 2rem;
    }
    
    .spotlight-logo {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .organizers-section {
        padding: 80px 0;
    }
    
    .organizers-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .organizer-card {
        padding: 2.5rem 1.5rem;
    }
    
    .organizer-logo-img {
        width: 150px;
        height: 150px;
    }
    
    .logo-ring {
        width: 180px;
        height: 180px;
    }
    
    .spotlight-title {
        font-size: 1.8rem;
    }
    
    .spotlight-description {
        font-size: 1rem;
    }
    
    .spotlight-logo {
        width: 150px;
        height: 150px;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .co-organizers-title h3 {
        font-size: 1.6rem;
    }
    
    .partnership-message {
        padding: 3rem 2rem;
        margin-top: 4rem;
    }
    
    .partnership-icon {
        font-size: 3rem;
    }
    
    .partnership-message h4 {
        font-size: 1.6rem;
    }
    
    .partnership-message p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .main-organizer-spotlight {
        padding: 2rem 1.5rem;
    }
    
    .spotlight-badge {
        font-size: 0.75rem;
        padding: 10px 20px;
    }
    
    .feature-tag {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .organizer-badge-top {
        font-size: 0.7rem;
        padding: 6px 15px;
    }
}

/* ===== CONTACT US SECTION ===== */
.contact-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(10, 15, 30, 0.95) 0%, rgba(22, 33, 62, 0.9) 50%, rgba(10, 15, 30, 0.95) 100%);
    background-size: cover;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(0, 217, 255, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 70% 80%, rgba(0, 191, 255, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.contact-card {
    position: relative;
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.9), rgba(10, 22, 40, 0.7));
    border-radius: 30px;
    padding: 3rem 2rem;
    text-align: center;
    border: 2px solid rgba(0, 217, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.contact-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(0, 217, 255, 0.05));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.contact-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.5s ease;
}

.contact-card:hover .contact-card-bg {
    opacity: 1;
}

.contact-card:hover .contact-card-glow {
    opacity: 1;
    animation: cardGlowRotate 6s linear infinite;
}

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

.contact-card:hover {
    transform: translateY(-20px);
    border-color: rgba(0, 217, 255, 0.5);
    box-shadow: 
        0 30px 70px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(0, 217, 255, 0.4),
        inset 0 0 40px rgba(0, 217, 255, 0.1);
}

.contact-image-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 2rem;
    z-index: 2;
}

.image-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 3px solid rgba(0, 217, 255, 0.3);
    border-radius: 50%;
    transition: all 0.5s ease;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s ease;
}

.contact-card:hover .image-ring {
    width: 220px;
    height: 220px;
    border-color: rgba(0, 217, 255, 0.6);
    border-width: 4px;
    animation: imageRingRotate 3s linear infinite;
}

@keyframes imageRingRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.contact-card:hover .image-glow {
    opacity: 1;
    animation: imageGlowPulse 2s ease-in-out infinite;
}

@keyframes imageGlowPulse {
    0%, 100% { 
        opacity: 0.5; 
        transform: translate(-50%, -50%) scale(1); 
    }
    50% { 
        opacity: 1; 
        transform: translate(-50%, -50%) scale(1.15); 
    }
}

.contact-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(0, 217, 255, 0.3);
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.contact-card:hover .contact-image-wrapper img {
    transform: scale(1.1);
    border-color: rgba(0, 217, 255, 0.6);
    box-shadow: 
        0 0 40px rgba(0, 217, 255, 0.6),
        0 20px 50px rgba(0, 0, 0, 0.5);
}

.contact-info {
    position: relative;
    z-index: 2;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-info h3 {
    color: var(--devthon-primary);
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.contact-role {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--devthon-primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-org {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.contact-details {
    margin-top: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    padding: 12px 20px;
    background: rgba(0, 217, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 217, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: rgba(0, 217, 255, 0.4);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 217, 255, 0.2);
}

.contact-item i {
    font-size: 1.1rem;
    color: var(--devthon-primary);
}

.contact-item span,
.contact-item a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--devthon-primary);
}

/* Contact CTA */
.contact-cta {
    margin-top: 6rem;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.08) 0%, rgba(13, 27, 42, 0.6) 100%);
    border-radius: 30px;
    border: 2px solid rgba(0, 217, 255, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.12) 0%, transparent 70%);
    animation: ctaGlow 8s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% { 
        opacity: 0.4; 
        transform: translate(0, 0) scale(1); 
    }
    50% { 
        opacity: 0.8; 
        transform: translate(-10%, -10%) scale(1.15); 
    }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-icon {
    font-size: 4rem;
    color: var(--devthon-primary);
    margin-bottom: 1.5rem;
    animation: ctaIconFloat 3s ease-in-out infinite;
}

@keyframes ctaIconFloat {
    0%, 100% { 
        transform: translateY(0); 
        filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.5));
    }
    50% { 
        transform: translateY(-15px); 
        filter: drop-shadow(0 0 30px rgba(0, 217, 255, 0.8));
    }
}

.cta-content h4 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #00D9FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.primary-btn {
    background: linear-gradient(135deg, var(--devthon-primary), #0066cc);
    color: #fff;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
}

.primary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.6);
}

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

.secondary-btn:hover {
    background: rgba(0, 217, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.cta-btn i {
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-card {
        padding: 2.5rem 1.5rem;
    }
    
    .contact-image-wrapper {
        width: 150px;
        height: 150px;
    }
    
    .image-ring {
        width: 170px;
        height: 170px;
    }
    
    .contact-info h3 {
        font-size: 1.3rem;
    }
    
    .contact-role {
        font-size: 1rem;
    }
    
    .contact-org {
        font-size: 0.9rem;
    }
    
    .contact-cta {
        padding: 3rem 2rem;
        margin-top: 4rem;
    }
    
    .cta-icon {
        font-size: 3rem;
    }
    
    .cta-content h4 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-card {
        padding: 2rem 1rem;
    }
    
    .contact-image-wrapper {
        width: 130px;
        height: 130px;
    }
    
    .image-ring {
        width: 150px;
        height: 150px;
    }
    
    .contact-info h3 {
        font-size: 1.2rem;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .contact-item span,
    .contact-item a {
        font-size: 0.85rem;
    }
    
    .cta-content h4 {
        font-size: 1.5rem;
    }
    
    .cta-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}
