@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;700&family=Outfit:wght@400;700;900&display=swap');

:root {
    --neon-pink: #ff2cf0;
    --neon-blue: #00f0ff;
    --neon-purple: #9d00ff;
    --bg-dark: #050505;
    --text-light: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(157, 0, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 240, 255, 0.15) 0%, transparent 50%);
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(5, 5, 5, 0) 95%, rgba(0, 240, 255, 0.3) 100%),
                      linear-gradient(90deg, rgba(5, 5, 5, 0) 95%, rgba(0, 240, 255, 0.3) 100%);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 10;
}

header {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0 5%;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    z-index: 100;
    mix-blend-mode: difference;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: clamp(3rem, 10vw, 10rem);
    line-height: 0.9;
    text-align: center;
    background: linear-gradient(to right, var(--neon-pink), var(--neon-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    animation: pulse 4s infinite alternate;
    position: relative;
    z-index: 1;
}

@keyframes pulse {
    0% { text-shadow: 0 0 10px rgba(255, 44, 240, 0.5); }
    50% { text-shadow: 0 0 20px rgba(0, 240, 255, 0.5); }
    100% { text-shadow: 0 0 10px rgba(157, 0, 255, 0.5); }
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    text-align: center;
    max-width: 800px;
    margin-bottom: 3rem;
    opacity: 0.8;
    font-weight: 300;
}

.hero-info {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-label {
    font-size: 0.9rem;
    opacity: 0.6;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.info-value {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--neon-blue);
}

.cta-button {
    background: rgba(0, 240, 255, 0.1);
    color: var(--text-light);
    border: 1px solid var(--neon-blue);
    border-radius: 30px;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 1px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.cta-button:hover {
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
    transform: translateY(-2px);
}

.cta-button:hover::before {
    opacity: 1;
}

.hero-graphics {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.circle {
    position: absolute;
    border-radius: 50%;
    animation: float 10s infinite ease-in-out;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: rgba(157, 0, 255, 0.1);
    border: 1px solid rgba(157, 0, 255, 0.5);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.circle-2 {
    width: 500px;
    height: 500px;
    background: rgba(0, 240, 255, 0.07);
    border: 1px solid rgba(0, 240, 255, 0.3);
    bottom: -200px;
    left: -200px;
    animation-delay: -2s;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, 30px) rotate(10deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

section {
    padding: 10rem 5%;
    position: relative;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 5rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    background: linear-gradient(to right, var(--neon-pink), var(--neon-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, var(--neon-pink), var(--neon-blue));
}

.prizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.prize-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.prize-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.15);
    border-color: rgba(0, 240, 255, 0.3);
}

.prize-amount {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    color: var(--neon-blue);
    margin-bottom: 1rem;
    line-height: 1;
}

.prize-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--neon-pink);
}

.prize-desc {
    line-height: 1.6;
    opacity: 0.7;
    margin-top: auto;
}

.sponsors-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    width: 100%;
    max-width: 1200px;
}

.sponsor-placeholder {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.sponsor-placeholder:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
    color: var(--neon-blue);
}

.judges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.judge-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.judge-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.15);
    border-color: rgba(0, 240, 255, 0.3);
}

.judge-photo {
    height: 300px;
    background: linear-gradient(45deg, rgba(157, 0, 255, 0.2), rgba(0, 240, 255, 0.2));
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(0, 240, 255, 0.3);
}

.judge-info {
    padding: 2rem;
}

.judge-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.judge-title {
    color: var(--neon-blue);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.judge-bio {
    line-height: 1.6;
    opacity: 0.7;
}

.cta-section {
    text-align: center;
    padding: 15rem 5%;
    background: linear-gradient(0deg, rgba(5, 5, 5, 1) 0%, rgba(5, 5, 5, 0) 100%);
    position: relative;
}

.cta-text {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    margin-bottom: 3rem;
    line-height: 1.2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gradient-text {
    background: linear-gradient(to right, var(--neon-pink), var(--neon-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer {
    padding: 5rem 5% 2rem;
    text-align: center;
    background: var(--bg-dark);
    position: relative;
    z-index: 2;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 1;
    color: var(--neon-blue);
}

.url {
    margin-top: 2rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--neon-blue);
    letter-spacing: 1px;
}

.copyright {
    margin-top: 2rem;
    opacity: 0.4;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-info {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .section-title {
        margin-bottom: 3rem;
    }
    
    .prize-card {
        padding: 1.5rem;
    }
}
