:root {
    --neon-blue: #1fe9ff;
    --neon-pink: #ff00ff;
    --neon-green: #00ff9f;
    --dark-bg: #0b0b13;
    --darker-bg: #070711;
    --text-color: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-color);
    overflow-x: hidden;
}

.cursor-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(31, 233, 255, 0.5);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: screen;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}


.cursor-glow {
    position: fixed;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(31, 233, 255, 0.15) 0%,
        rgba(0, 0, 0, 0) 70%
    );
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
}

header {
    background-color: var(--darker-bg);
    padding: 20px 5%;
    position: fixed;
    width: 100%;
    z-index: 100;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logoimge{
    position: relative;
    height: 2em;
    width: 2em;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(31, 233, 255, 0.5);
}
a i {
    font-size: 30px;
    color: #e4405f;
    transition: transform 0.3s ease;
}

a i:hover {
    transform: scale(1.2);
}


.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

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

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

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

#hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--darker-bg) 1px, transparent 1px),
        linear-gradient(90deg, var(--darker-bg) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.2;
    z-index: -1;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink), var(--neon-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 15px rgba(31, 233, 255, 0.3);
    animation: flicker 5s infinite alternate;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    max-width: 800px;
}

.register-btn {
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 0 20px rgba(31, 233, 255, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.register-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue));
    transition: left 0.3s ease;
    z-index: -1;
}

.register-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 30px rgba(31, 233, 255, 0.8);
}

.register-btn:hover::before {
    left: 0;
}

section {
    padding: 100px 10%;
    min-height: 100vh;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 50px;
    text-align: center;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink));
}

/* About Section */
#about {
    background-color: rgba(11, 11, 19, 0.7);
}

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

.about-text p {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(31, 233, 255, 0.3);
}

.about-image img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-highlights {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.highlight-item {
    text-align: center;
    padding: 20px;
    background-color: rgba(7, 7, 17, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(31, 233, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(31, 233, 255, 0.2);
}

.highlight-item h3 {
    color: var(--neon-blue);
    margin-bottom: 10px;
}

/* Team Section */
#team {
    background-color: var(--dark-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: rgba(7, 7, 17, 0.5);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(31, 233, 255, 0.1);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(31, 233, 255, 0.3);
}

.member-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--neon-blue);
}

.member-info p {
    color: var(--text-color);
    opacity: 0.8;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    color: var(--text-color);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--neon-blue);
}

/* Sponsors Section */
#sponsors {
    background-color: rgba(11, 11, 19, 0.7);
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    align-items: center;
}

.sponsor-item {
    background-color: rgba(7, 7, 17, 0.5);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(31, 233, 255, 0.1);
}

.sponsor-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(31, 233, 255, 0.2);
}

.sponsor-item img {
    max-width: 100%;
    height: 100px;
    object-fit: contain;
    filter: grayscale(100%) brightness(2);
    transition: filter 0.3s ease;
}

.sponsor-item:hover img {
    filter: grayscale(0%) brightness(1);
}

.sponsor-item h3 {
    margin-top: 20px;
    color: var(--neon-blue);
}

.sponsor-item p {
    margin-top: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Register Section */
#register {
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.register-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.register-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--neon-blue);
}

.register-info p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.register-form {
    background-color: rgba(7, 7, 17, 0.7);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(31, 233, 255, 0.2);
    border: 1px solid rgba(31, 233, 255, 0.2);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(7, 7, 17, 0.5);
    border: 1px solid rgba(31, 233, 255, 0.3);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(31, 233, 255, 0.3);
}

.submit-btn {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 0 15px rgba(31, 233, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue));
    transition: left 0.3s ease;
    z-index: -1;
}

.submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(31, 233, 255, 0.5);
}

.submit-btn:hover::before {
    left: 0;
}

/* FAQ Section */
#faq {
    background-color: rgba(11, 11, 19, 0.7);
}

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

.faq-item {
    margin-bottom: 20px;
    background-color: rgba(7, 7, 17, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(31, 233, 255, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(31, 233, 255, 0.2);
}

.faq-question {
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--neon-blue);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    line-height: 1.6;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 300px;
}

/* Footer */
footer {
    background-color: var(--darker-bg);
    padding: 50px 10% 20px;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    text-align: left;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--neon-blue);
}

.footer-section p,
.footer-section a {
    display: block;
    margin-bottom: 10px;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--neon-blue);
}

.social-footer {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.social-footer a {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-footer a:hover {
    color: var(--neon-blue);
    transform: translateY(-5px);
}

.copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Animations */
@keyframes flicker {
    0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100% {
        opacity: 0.99;
        text-shadow: 0 0 20px rgba(31, 233, 255, 0.5),
                    0 0 30px rgba(31, 233, 255, 0.4),
                    0 0 40px rgba(31, 233, 255, 0.3);
    }
    20%, 21.999%, 63%, 63.999%, 65%, 69.999% {
        opacity: 0.4;
        text-shadow: none;
    }
}

@keyframes glowing {
    0% {
        box-shadow: 0 0 10px rgba(31, 233, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(31, 233, 255, 0.7),
                   0 0 30px rgba(31, 233, 255, 0.5);
    }
    100% {
        box-shadow: 0 0 10px rgba(31, 233, 255, 0.5);
    }
}

/* Media Queries */
@media (max-width: 992px) {
    .hero-title {
        font-size: 4rem;
    }
    .about-content,
    .register-grid {
        grid-template-columns: 1fr;
    }
    .about-content {
        gap: 30px;
    }
    .about-image {
        grid-row: 1;
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 20px;
    }
    .hero-title {
        font-size: 3rem;
    }
    .section-title {
        font-size: 2.5rem;
    }
    section {
        padding: 80px 5%;
    }
    .about-highlights {
        flex-direction: column;
        gap: 20px;
    }
    .highlight-item {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .nav-links {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    .register-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}
/* Default styles for navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #111;
}

/* Hide hamburger menu on larger screens */
.hamburger {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* Navigation links */
.nav-links {
    display: flex;
    gap: 20px;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;  /* Hide by default */
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: rgba(0, 0, 0, 0.9);
        width: 100%;
        text-align: center;
        padding: 10px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        display: block;
        padding: 10px;
        color: white;
        text-decoration: none;
    }
}
/* Logo styling */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover .logo-image {
    transform: scale(1.05);
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(31, 233, 255, 0.5);
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    .logo-image {
        height: 30px;
    }
    
    .logo-text {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 25px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
}
/* Schedule Section Styles */
#schedule {
    background-color: rgba(11, 11, 19, 0.7);
    position: relative;
}

.schedule-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(7, 7, 17, 0.5);
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(31, 233, 255, 0.2);
    border: 1px solid rgba(31, 233, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--neon-blue), var(--neon-pink));
    box-shadow: 0 0 15px rgba(31, 233, 255, 0.5);
}

.timeline-item {
    display: flex;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(10px);
}

.time-block {
    width: 160px;
    text-align: right;
    padding-right: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.time {
    background-color: rgba(7, 7, 17, 0.8);
    padding: 8px 15px;
    border-radius: 50px;
    color: var(--neon-blue);
    display: inline-block;
    box-shadow: 0 0 10px rgba(31, 233, 255, 0.3);
    border: 1px solid rgba(31, 233, 255, 0.3);
}

.event-block {
    flex: 1;
    background-color: rgba(7, 7, 17, 0.7);
    padding: 20px;
    border-radius: 10px;
    border-left: 3px solid var(--neon-blue);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-block::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-color: var(--neon-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(31, 233, 255, 0.7);
    z-index: 2;
}

.event-block h3 {
    margin-bottom: 5px;
    color: var(--neon-blue);
    font-size: 1.3rem;
}

.event-block p {
    opacity: 0.8;
    margin-bottom: 0;
}

/* Highlight important events */
.timeline-item.highlight .event-block {
    border-left: 3px solid var(--neon-pink);
    background: linear-gradient(135deg, rgba(7, 7, 17, 0.8), rgba(31, 233, 255, 0.1));
}

.timeline-item.highlight .event-block::before {
    background-color: var(--neon-pink);
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.7);
}

.timeline-item.highlight .time {
    color: var(--neon-pink);
    border-color: rgba(255, 0, 255, 0.3);
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

.timeline-item.highlight .event-block h3 {
    color: var(--neon-pink);
}

/* Grand finale styling */
.timeline-item.grand-finale .event-block {
    border-left: 3px solid var(--neon-green);
    background: linear-gradient(135deg, rgba(7, 7, 17, 0.8), rgba(0, 255, 159, 0.1));
    animation: glow 2s infinite alternate;
}

.timeline-item.grand-finale .event-block::before {
    background-color: var(--neon-green);
    box-shadow: 0 0 15px rgba(0, 255, 159, 0.7);
    width: 16px;
    height: 16px;
    left: -18px;
}

.timeline-item.grand-finale .time {
    color: var(--neon-green);
    border-color: rgba(0, 255, 159, 0.3);
    box-shadow: 0 0 10px rgba(0, 255, 159, 0.5);
}

.timeline-item.grand-finale .event-block h3 {
    color: var(--neon-green);
    font-size: 1.5rem;
}

@keyframes glow {
    from {
        box-shadow: 0 0 10px rgba(0, 255, 159, 0.2);
    }
    to {
        box-shadow: 0 0 20px rgba(0, 255, 159, 0.5);
    }
}

/* Media Queries */
@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
    
    .time-block {
        width: 100px;
        padding-right: 20px;
        font-size: 0.9rem;
    }
    
    .time {
        padding: 6px 10px;
    }
    
    .event-block h3 {
        font-size: 1.1rem;
    }
    
    .event-block p {
        font-size: 0.9rem;
    }
    
    .timeline-item.grand-finale .event-block h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .timeline {
        padding-left: 0;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column;
    }
    
    .time-block {
        width: 100%;
        text-align: left;
        padding-left: 40px;
        padding-right: 0;
        margin-bottom: 10px;
    }
    
    .event-block {
        margin-left: 40px;
    }
    
    .event-block::before {
        left: -36px;
        top: -22px;
    }
    
    .timeline-item.grand-finale .event-block::before {
        left: -38px;
        top: -22px;
    }
}