/* Base Styles */
:root {
    --primary-color: #00f7ff;
    --secondary-color: #7000ff;
    --accent-color: #ff3366;
    --dark-bg: #0B1120;
    --darker-bg: #060911;
    --light-text: #ffffff;
    --gray-text: #a0a0a0;
    --grid-size: 30px;
    --transition-standard: all 0.3s ease;
    --card-bg: rgba(11, 17, 32, 0.8);
    --grid-color: rgba(78, 250, 174, 0.1);
    --glow-color: rgba(78, 250, 174, 0.5);
    --border-glow: 1px solid rgba(78, 250, 174, 0.2);
    --nav-bg: rgba(6, 9, 17, 0.95);
    --mobile-menu-bg: rgba(6, 9, 17, 0.98);
}

/* Global Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, var(--darker-bg), var(--dark-bg));
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* New Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    border-bottom: var(--border-glow);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--light-text);
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition-standard);
    padding: 0.5rem 1rem;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-standard);
}

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

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--light-text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition-standard);
}

.nav-toggle:hover {
    color: var(--primary-color);
}

/* Mobile Navigation */
@media screen and (max-width: 768px) {
    .nav-toggle {
        display: block;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background: var(--mobile-menu-bg);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        padding: 4rem 2rem;
        transition: 0.3s ease-in-out;
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.2rem;
        width: 100%;
        text-align: center;
        padding: 1rem;
        color: var(--light-text);
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    body.menu-open {
        overflow: hidden;
    }

    .nav-toggle.active i::before {
        content: "\f00d";
    }
}

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

/* Common Utility Classes */
.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Venue Link Styles */
.venue-highlight a,
.footer-bottom a {
    text-decoration: none;
    color: var(--light-text);
    transition: var(--transition-standard);
}

.venue-highlight a:hover,
.footer-bottom a:hover {
    color: var(--primary-color);
}

.venue-highlight i {
    margin-right: 5px;
    color: var(--primary-color);
}

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

/* Navigation */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo img {
    height: 50px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--light-text);
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition-standard);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-standard);
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .section-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 1.5rem;
    }
}

@media screen and (max-width: 768px) {

    /* Navigation Mobile */
    .nav-toggle {
        display: block;
        z-index: 1000;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--bg-color);
        flex-direction: column;
        align-items: center;
        padding: 4rem 2rem;
        transition: 0.3s ease-in-out;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    body.menu-open {
        overflow: hidden;
    }

    .nav-link {
        color: var(--text-color);
        font-size: 1.2rem;
        padding: 1rem;
    }

    /* Layout Adjustments */
    .container {
        padding: 0 1rem;
    }

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

    /* Grid Layouts */
    .grid-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Card Adjustments */
    .card-base {
        padding: 1.25rem;
    }

    /* Hide 3D Elements on Mobile */
    .three-d-elements {
        display: none;
    }

    .nav-toggle.active i::before {
        content: "\f00d";
    }
}

@media screen and (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 0.75rem;
    }

    /* Tighter Spacing */
    .section-spacing {
        padding: 3rem 0;
    }

    body {
        font-size: 0.9rem;
    }
}

/* Print Styles */
@media print {

    .nav-menu,
    .nav-toggle,
    .three-d-elements,
    .floating-elements {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 0;
    background: var(--darker-bg);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(112, 0, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 247, 255, 0.15) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

/* Hero Content */
.hero-content {
    font-family: 'Orbitron', sans-serif, "Black Ops One", serif;
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}


.hero h1 {
    font-family: "Black Ops One", serif;
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-align: center;
    background: linear-gradient(45deg, var(--primary-color) 30%, var(--secondary-color) 70%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px var(--glow-color);
    position: relative;
    z-index: 2;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: title-float 4s ease-in-out infinite;
}

@keyframes title-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.tagline {
    font-size: 1.5rem;
    margin: 2rem 0;
    text-align: center;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 8px;
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.3);
}

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

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

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--light-text);
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50px;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    animation: pulse 2s infinite;
}

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

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.5);
    border-color: var(--secondary-color);
}

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

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(33, 150, 243, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(33, 150, 243, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(33, 150, 243, 0);
    }
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button.secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

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

    .tagline {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

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

    .about-content,
    .prizes-grid,
    .schedule-grid,
    .team-grid,
    .sponsors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .prize-card {
        padding: 1.5rem;
    }

    .prize-amount {
        font-size: 2rem;
    }

    .schedule-tabs {
        overflow-x: auto;
        white-space: nowrap;
        padding: 0.5rem;
    }

    .tab-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .timeline-item {
        padding: 1rem;
    }

    .timeline-content {
        padding-left: 1rem;
    }

    .timeline-time {
        font-size: 0.9rem;
    }

    .timeline-title {
        font-size: 1.1rem;
    }

    .team-card {
        width: 100%;
    }

    .sponsor-tier {
        padding: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .prize-amount {
        font-size: 1.8rem;
    }

    .timeline-dot {
        width: 15px;
        height: 15px;
    }

    .nav-menu {
        padding: 1rem;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 0.8rem 0;
    }

    .verify-form input,
    .verify-form button {
        width: 100%;
    }
}

/* Print Styles */
@media print {

    .nav-menu,
    .nav-toggle,
    .three-d-elements,
    .floating-elements {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
}

/* Hero Section Buttons */
.hero-content .cta-button {
    margin: 10px;
    min-width: 200px;
    text-align: center;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
}

.hero-content .cta-button:nth-child(2) {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

@media screen and (max-width: 480px) {
    .hero-content .cta-button {
        display: block;
        margin: 15px auto;
        width: 80%;
        max-width: 250px;
    }
}

/* Committee Section */
.committee {
    padding: 100px 0;
    background: linear-gradient(135deg, #0A0A1F 0%, #1a1a3f 100%);
    perspective: 1000px;
}

.committee-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.committee-card {
    width: 100%;
    height: 400px;
    perspective: 1000px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.committee-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    overflow: hidden;
}

.card-front {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
}

.card-front img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--secondary-color);
}

.card-front h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.card-back {
    background: var(--primary-color);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.card-back h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.card-back p {
    margin-bottom: 2rem;
}

.card-back .social-links {
    display: flex;
    gap: 1rem;
}

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

.card-back .social-links a:hover {
    color: var(--secondary-color);
}

/* Enhanced Schedule Section */
.schedule-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 1rem 2rem;
    color: var(--light-text);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: var(--secondary-color);
    color: var(--dark-bg);
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
}

.day-schedule {
    display: none;
}

.day-schedule.active {
    display: block;
}

.timeline-item {
    display: flex;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--secondary-color);
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: -4px;
    top: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--secondary-color);
}

.time {
    min-width: 100px;
    padding-right: 2rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.event-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    flex-grow: 1;
}

.event-content h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.event-details {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--light-text);
}

.event-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Enhanced Prizes Section */
.prizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.prize-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.prize-card.grand {
    background: linear-gradient(135deg, #1a1a3f 0%, #2E3192 100%);
    transform: scale(1.05);
}

.prize-card:hover {
    transform: translateY(-10px) rotateX(10deg) rotateY(10deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 247, 255, 0.4);
}

.prize-header {
    margin-bottom: 2rem;
}

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

.prize-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.prize-features {
    list-style: none;
    text-align: left;
}

.prize-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.prize-features i {
    color: var(--secondary-color);
}

.special-prizes {
    margin-top: 4rem;
}

.special-prizes h3 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.special-prizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.special-prize-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.special-prize-card {
    background: var(--card-bg);
    border: var(--border-glow);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.special-prize-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(0, 247, 255, 0.2),
            transparent);
    transition: 0.5s;
}

.special-prize-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

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

.special-prize-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.special-prize-card:hover i {
    transform: scale(1.2);
}

.special-prize-card h4 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.special-prize-card p {
    color: var(--gray-text);
    font-size: 1.1rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .special-prize-card {
        padding: 1.5rem;
    }

    .special-prize-card i {
        font-size: 2rem;
    }

    .special-prize-card h4 {
        font-size: 1.1rem;
    }

    .special-prize-card p {
        font-size: 1rem;
    }
}

/* Team Section */
.team {
    padding: 80px 0;
    background: var(--darker-bg);
}

.team-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.convenor-section {
    grid-template-columns: repeat(2, 1fr);
    max-width: 400px;
    margin: 0 auto 3rem;
    justify-items: center;
}

.organizers-section {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.team-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

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

.team-social {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.team-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--secondary-color);
    transform: translateY(0) scale(1.1);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

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

.team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

.team-card:hover .team-social a {
    transform: translateY(0);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
    background: linear-gradient(to bottom,
            transparent,
            rgba(0, 247, 255, 0.05));
}

.team-info h3 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--text-color);
    font-weight: 600;
}

.team-role {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin: 0.5rem 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.team-desc {
    color: var (--gray-text);
    font-size: 0.9rem;
    margin: 0.5rem 0 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .team {
        padding: 60px 0;
    }

    .organizers-section {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .team-info {
        padding: 1.25rem;
    }

    .team-info h3 {
        font-size: 1.1rem;
    }

    .team-role {
        font-size: 0.85rem;
    }

    .team-desc {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .team {
        padding: 40px 0;
    }

    .team-grid {
        gap: 1.5rem;
    }

    .team-social a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Previous Edition Section */
.previous-edition {
    padding: 100px 0;
    background: var(--darker-bg);
}

.edition-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.edition-content h3 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.edition-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

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

.stat {
    text-align: center;
}

.stat .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat .label {
    color: var(--light-text);
    font-size: 1rem;
}

.view-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--light-text);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 51, 102, 0.3);
}

.edition-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.edition-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.edition-gallery img:hover {
    transform: scale(1.05);
}

.edition-gallery img:first-child {
    grid-column: 1 / -1;
}

/* Special Categories Section */
.special-categories {
    padding: 100px 0;
    background: linear-gradient(135deg, #0A0A1F 0%, #1a1a3f 100%);
}

.special-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.special-category-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.special-category-card:hover {
    transform: translateY(-10px);
}

.category-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.special-category-card h3 {
    color: var(--light-text);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.special-category-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.prize-amount {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 600;
}

/* Previous Edition Link Section */
.previous-link {
    padding: 100px 0;
    background: var(--dark-bg);
}

.previous-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.previous-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.previous-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--light-text);
}

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

.stat-item {
    text-align: center;
}

.stat-item .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var (--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-item .label {
    color: var(--light-text);
    font-size: 1rem;
}

.previous-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--light-text);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.previous-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 51, 102, 0.3);
}

.previous-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.gallery-img:first-child {
    grid-column: 1 / -1;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--darker-bg);
}

.contact-content {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 600px;
    width: 100%;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    min-width: 2rem;
    text-align: center;
}

.info-item p {
    font-size: 1.1rem;
    color: var(--light-text);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--light-text);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    background: var(--primary-color);
    color: var(--light-text);
}

/* Mobile Styles for Contact Section */
@media screen and (max-width: 768px) {
    .contact {
        padding: 4rem 0;
    }

    .contact-info {
        gap: 1rem;
    }

    .info-item {
        padding: 1.2rem;
    }

    .info-item i {
        font-size: 1.3rem;
    }

    .info-item p {
        font-size: 1rem;
    }

    .social-link {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .contact {
        padding: 3rem 0;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 0.8rem;
    }

    .info-item i {
        margin-bottom: 0.2rem;
    }

    .social-links {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(to bottom, rgba(11, 17, 32, 0.95), rgba(11, 17, 32, 0.98));
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            var(--primary-color),
            var(--secondary-color),
            var(--primary-color),
            transparent);
    box-shadow: 0 0 15px rgba(0, 247, 255, 0.3);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.footer-logo {
    position: relative;
}

.footer-logo h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: #8899ac;
    font-size: 1rem;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 247, 255, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(0, 247, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(0, 247, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

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

.social-links a i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 1;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 247, 255, 0.2);
    border-color: var(--primary-color);
}

.social-links a:hover i {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            var(--primary-color),
            transparent);
}

.footer-bottom p {
    color: #8899ac;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-logo h3 {
        font-size: 1.8rem;
    }

    .social-links {
        justify-content: center;
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(45deg, rgba(33, 150, 243, 0.1), rgba(0, 255, 157, 0.1));
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    position: relative;
}

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

.about-text-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text-content p {
    margin-bottom: 1.5rem;
    color: var(--gray-text);
    line-height: 1.8;
}

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

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: transform 0.3s;
}

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

.feature i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

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

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

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transform: perspective(1000px);
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
            transparent,
            rgba(33, 150, 243, 0.1),
            transparent);
    transform: translateZ(-1px);
}

.stat-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle,
            rgba(33, 150, 243, 0.1) 0%,
            transparent 70%);
    transform: translateZ(-2px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover {
    transform: perspective(1000px) rotateX(10deg) rotateY(10deg) translateZ(30px);
    box-shadow:
        20px 20px 60px rgba(0, 0, 0, 0.5),
        -20px -20px 60px rgba(255, 255, 255, 0.05);
}

.stat-item:hover::after {
    opacity: 1;
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: inline-block;
    transform: translateZ(20px);
    text-shadow: 2px 2px 10px rgba(33, 150, 243, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light-text);
    display: block;
    margin: 0.5rem 0;
    transform: translateZ(30px);
    text-shadow: 2px 2px 10px rgba(33, 150, 243, 0.3);
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--gray-text);
    display: block;
    transform: translateZ(15px);
}

.stats-grid {
    perspective: 1000px;
}

.stat-item.active {
    transform: perspective(1000px) rotateX(var(--rotateX)) rotateY(var(--rotateY)) translateZ(30px);
}

@media screen and (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-item {
        padding: 1.5rem;
    }

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

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

    .stat-label {
        font-size: 1rem;
    }
}

/* Tracks Section */
.tracks {
    padding: 100px 0;
    background: var(--dark-bg);
}

.tracks-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    perspective: 1000px;
}

.track-card {
    flex: 1 1 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    position: relative;
}

.track-card:hover {
    transform: rotateY(10deg) translateY(-10px);
}

.track-content {
    padding: 2.5rem 2rem;
    text-align: center;
}

.track-content i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.track-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.track-content p {
    color: var(--gray-text);
    margin-bottom: 1.5rem;
}

.track-content ul {
    list-style: none;
    text-align: left;
    padding: 0 1rem;
}

.track-content ul li {
    margin-bottom: 0.8rem;
    color: var(--light-text);
    position: relative;
    padding-left: 1.5rem;
}

.track-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* Hover effects for Hackathon Tracks */
.tracks .track-card {
    transition: all 0.3s ease;
}

.tracks .track-card:hover {
    border: 2px solid var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 247, 255, 0.2);
}

/* Hover effects for Special Category Awards */
.special-category-card {
    transition: all 0.3s ease;
}

.special-category-card:hover {
    border: 2px solid var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 247, 255, 0.2);
}

/* Problem Statements Section */
.problems {
    padding: 100px 0;
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.problems::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(33, 150, 243, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.problem-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.problem-track {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.problem-card h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
    color: var(--primary-color);
}

.problem-card p {
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 4.8em;
}

.problem-details {
    display: flex;
    gap: 1.5rem;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.problem-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-text);
    font-size: 0.9rem;
}

.problem-details i {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .problems-grid {
        grid-template-columns: 1fr;
    }

    .problem-card {
        padding: 1.5rem;
    }

    .problem-track {
        position: static;
        display: inline-block;
        margin-bottom: 1rem;
    }
}

/* Sponsors Section */
.sponsors {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--darker-bg), var(--dark-bg));
}

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

.sponsor-card {
    background: var(--card-bg);
    border: var(--border-glow);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-standard);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.sponsor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 247, 255, 0.2);
    border-color: var(--primary-color);
}

.sponsor-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 1rem;
    transition: var(--transition-standard);
}

.sponsor-card:hover img {
    transform: scale(1.05);
}

.sponsor-card h3 {
    color: var(--light-text);
    font-size: 1.2rem;
    margin-top: 1rem;
}

.sponsor-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.sponsor-cta h3 {
    color: var(--light-text);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.sponsor-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-text);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-standard);
}

.sponsor-cta .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 247, 255, 0.3);
}

@media screen and (max-width: 768px) {
    .sponsors-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .sponsor-card {
        padding: 1.5rem;
    }

    .sponsor-card img {
        height: 150px;
    }

    .sponsor-cta {
        margin-top: 3rem;
        padding: 1.5rem;
    }

    .sponsor-cta h3 {
        font-size: 1.3rem;
    }
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 31, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--light-text);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--light-text);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
}

.nav-toggle.active i {
    transform: rotate(90deg);
}

@media screen and (max-width: 968px) {
    .nav-toggle {
        display: block;
        position: relative;
        z-index: 1001;
        background: transparent;
        border: none;
        color: var(--light-text);
        font-size: 1.5rem;
        cursor: pointer;
        width: 40px;
        height: 40px;
        padding: 0.5rem;
        margin-left: auto;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(10, 10, 31, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: 0.3s ease-in-out;
        z-index: 1000;
        padding: 2rem;
    }

    .nav-menu.active {
        right: 0;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    }

    .nav-link {
        color: var(--light-text);
        font-size: 1.2rem;
        width: 100%;
        text-align: center;
        padding: 1rem;
        border-radius: 8px;
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    body.menu-open {
        overflow: hidden;
    }
}

@media screen and (max-width: 480px) {
    .nav-menu {
        width: 100%;
        padding: 2rem 1rem;
    }
}

/* Additional responsive adjustments */
@media screen and (max-width: 480px) {
    .nav-menu {
        width: 100%;
        max-width: none;
    }
}

/* Adjust hero section for navbar */
.hero {
    padding-top: 100px;
}

/* Certificate Verification Section */
.verify-certificate {
    padding: 120px 0 60px;
    min-height: calc(100vh - 200px);
    background: var(--darker-bg);
}

.verify-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.verify-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.verify-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--light-text);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.verify-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(33, 150, 243, 0.2);
}

.verify-form button {
    padding: 1rem 2rem;
    margin: 0;
}

.result-box,
.error-box {
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.result-box {
    background: rgba(33, 150, 243, 0.1);
    border: 1px solid var(--primary-color);
}

.error-box {
    background: rgba(255, 51, 102, 0.1);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}

.result-content h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.result-content p {
    margin-bottom: 1rem;
    color: var(--light-text);
}

.certificate-actions {
    margin-top: 2rem;
}

.certificate-actions .cta-button {
    margin: 0;
}

/* Mobile Responsiveness for Certificate Page */
@media screen and (max-width: 768px) {
    .verify-form {
        flex-direction: column;
    }

    .verify-form button {
        width: 100%;
    }

    .verify-content {
        margin: 0 1rem;
    }
}

.card,
.event-content,
.team-member,
.info-item {
    background: rgba(11, 17, 32, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 247, 255, 0.1);
    border-radius: 15px;
    transition: all 0.4s ease;
    transform-style: preserve-3d;
    box-shadow:
        0 10px 20px rgba(0, 0, 0, 0.2),
        0 0 15px rgba(0, 247, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.card::before,
.event-content::before,
.team-member::before,
.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(0, 247, 255, 0.05),
            transparent);
    transition: 0.5s;
}

.card:hover::before,
.event-content:hover::before,
.team-member:hover::before,
.info-item:hover::before {
    left: 100%;
}

.card:hover,
.event-content:hover,
.team-member:hover,
.info-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(0, 247, 255, 0.2);
}

.button {
    position: relative;
    padding: 12px 24px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 8px;
    color: var(--light-text);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 247, 255, 0.3);
}

.button:hover {
    transform: translateY(-3px);
    box-shadow:
        0 0 30px rgba(0, 247, 255, 0.5),
        0 0 60px rgba(112, 0, 255, 0.3);
}

.button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

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

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--primary-color), var(--secondary-color));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(var(--secondary-color), var(--primary-color));
}


/* Countdown Styles */
.countdown {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 3rem 0;
    perspective: 1000px;
}

.countdown-item {
    background: rgba(11, 17, 32, 0.8);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    min-width: 140px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0, 247, 255, 0.2);
    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.2),
        0 0 15px rgba(0, 247, 255, 0.1);
    transform-style: preserve-3d;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            transparent,
            rgba(0, 247, 255, 0.1),
            transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.countdown-item:hover::before {
    transform: translateX(100%);
}

.countdown-item:hover {
    transform: translateY(-5px) translateZ(20px);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 25px rgba(0, 247, 255, 0.2);
    border-color: rgba(0, 247, 255, 0.4);
}

.countdown-item span:first-child {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    display: block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(0, 247, 255, 0.3);
    position: relative;
}

.countdown-item span:last-child {
    color: #8899ac;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    position: relative;
}

.countdown-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            var(--primary-color),
            transparent);
    opacity: 0;
    transition: all 0.3s ease;
}

.countdown-item:hover::after {
    opacity: 1;
    width: 80%;
}

@media screen and (max-width: 768px) {
    .countdown {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .countdown-item {
        min-width: calc(50% - 1rem);
        padding: 1rem;
    }

    .countdown-item span:first-child {
        font-size: 2.5rem;
    }

    .countdown-item span:last-child {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .countdown-item {
        min-width: calc(50% - 0.5rem);
    }

    .countdown-item span:first-child {
        font-size: 2rem;
    }

    .countdown-item span:last-child {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
}

/* Mobile Optimizations */
@media screen and (max-width: 768px) {

    /* Hero Section */
    .hero h1 {
        font-size: 3rem;
        text-align: center;
    }

    .hero-content {
        padding: 2rem 1rem;
        text-align: center;
    }

    /* About Section */
    .about-features {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .feature {
        padding: 1rem;
    }

    /* Prizes Section */
    .prizes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .prize-card {
        height: auto;
        padding: 1.5rem;
    }

    /* Tracks Section */
    .tracks-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .track-card {
        padding: 1.5rem;
    }

    /* Team Section */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .team-card {
        padding: 1.25rem;
    }

    /* Sponsors Section */
    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .sponsor-card {
        padding: 1rem;
    }

    /* Contact Section */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {

    /* Hero Section */
    .hero h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1rem;
    }

    /* Team Section */
    .team-grid {
        grid-template-columns: 1fr;
    }

    /* Sponsors Section */
    .sponsors-grid {
        grid-template-columns: 1fr;
    }

    /* About Features */
    .about-features {
        grid-template-columns: 1fr;
    }

    /* Form Elements */
    input,
    textarea {
        font-size: 1rem;
        padding: 0.75rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Animation Optimizations for Mobile */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Downloads Section */
#downloads {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--darker-bg), var(--dark-bg));
}

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

#downloads h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

#downloads ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

#downloads li {
    text-align: center;
}

#downloads a {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--card-bg);
    border: var(--border-glow);
    border-radius: 8px;
    color: var(--light-text);
    text-decoration: none;
    transition: var(--transition-standard);
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#downloads a:hover {
    transform: translateY(-3px);
    background: rgba(11, 17, 32, 0.9);
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(0, 247, 255, 0.15);
}

@media screen and (max-width: 768px) {
    #downloads ul {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    #downloads h2 {
        font-size: 2rem;
    }
}

.convenor-section {
    margin-bottom: 2rem;
    text-align: center;
}

.convenor-section .team-card {
    max-width: 400px;
    margin: 0 auto;
}

.organizers-section {
    margin-top: 2rem;
    border-top: 2px solid #eee;
    padding-top: 2rem;
}

/* CTA Buttons Container */
.cta-buttons-container {
    text-align: center;
    margin-top: 3rem;
    padding: 0 1rem;
}

.cta-buttons-container .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: var(--card-bg);
    border: var(--border-glow);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1rem;
    min-width: 200px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-button i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(0, 247, 255, 0.2),
            transparent);
    transition: 0.5s;
}

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

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 247, 255, 0.2);
    color: var(--primary-color);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .cta-buttons-container {
        margin-top: 2rem;
        padding: 0 0.5rem;
    }

    .cta-buttons-container .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    .cta-buttons-container .cta-button {
        width: 90%;
        margin: 0.5rem auto;
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
}

.convenor-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
}

.team-card.convenor {
    background: var(--card-bg);
    border: var(--border-glow);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition-standard);
    width: 100%;
    max-width: 350px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.team-card.convenor:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(78, 250, 174, 0.2);
}

.team-card.convenor .team-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.team-card.convenor .team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card.convenor:hover .team-image img {
    transform: scale(1.05);
}

.team-card.convenor .team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.team-card.convenor:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

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

.team-card.convenor .team-social a:hover {
    color: var(--primary-color);
}

.team-card.convenor .team-info {
    padding: 1.5rem;
    text-align: center;
    background: linear-gradient(to bottom, var(--card-bg), rgba(11, 17, 32, 0.95));
}

.team-card.convenor .team-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.team-card.convenor .team-info .team-role {
    color: var(--light-text);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.team-card.convenor .team-info .team-desc {
    color: var(--gray-text);
    font-size: 0.9rem;
    line-height: 1.4;
}

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

    .team-card.convenor {
        margin: 0 auto;
    }
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.9);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border: 1px solid rgba(0, 255, 242, 0.3);
    border-radius: 5px;
    backdrop-filter: blur(10px);
}

.dropdown-content a {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-family: 'Orbitron', sans-serif;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background-color: rgba(0, 255, 242, 0.1);
    color: #00fff2;
    padding-left: 20px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Mobile Dropdown Adjustments */
@media screen and (max-width: 768px) {
    .dropdown {
        display: block;
        width: 100%;
    }

    .dropdown .nav-link {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
    }

    .dropdown-content {
        position: static;
        display: none;
        background-color: rgba(0, 0, 0, 0.5);
        box-shadow: none;
        border: none;
        padding-left: 20px;
        margin-top: 0.5rem;
    }

    .dropdown-content.active {
        display: block;
    }

    .dropdown-content a {
        padding: 0.75rem 1rem;
        font-size: 1rem;
        text-align: center;
    }

    .dropdown-content a:hover {
        background-color: rgba(0, 255, 242, 0.2);
        padding-left: 1rem;
    }
}

/* Footer Redesign */
.footer {
    background: var(--darker-bg);
    padding: 4rem 0 2rem;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            var(--primary-color),
            transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-brand p {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer h4 {
    color: var(--light-text);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--gray-text);
    text-decoration: none;
    transition: var(--transition-standard);
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-links a::before {
    content: '>';
    margin-right: 8px;
    font-size: 0.8rem;
    color: var(--primary-color);
    opacity: 0;
    transition: var(--transition-standard);
}

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

.footer-contact p {
    color: var(--gray-text);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary-color);
    width: 20px;
}

.footer-social .social-icons {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    text-decoration: none;
    transition: var(--transition-standard);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    background: var(--primary-color);
    color: var(--darker-bg);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 247, 255, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--gray-text);
    font-size: 0.9rem;
}

@media screen and (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand,
    .footer-links,
    .footer-contact,
    .footer-social {
        text-align: center;
    }

    .footer-logo-img {
        display: block;
        margin: 0 auto 1rem;
    }

    .footer-contact p {
        justify-content: center;
        text-align: center;
    }

    .footer-social .social-icons {
        justify-content: center;
    }

    .footer-links ul {
        text-align: center;
    }

    .footer-links a {
        justify-content: center;
    }

    .footer h4 {
        display: block;
        text-align: center;
        width: 100%;
    }

    .footer h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-bottom {
        text-align: center;
    }
}

@media screen and (max-width: 576px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-brand h3 {
        text-align: center;
    }

    .footer-brand p {
        text-align: center;
    }

    .footer-logo-img {
        margin: 0 auto 1rem;
        display: block;
    }

    .footer h4 {
        text-align: center;
        font-size: 1rem;
    }

    .footer-contact p {
        font-size: 0.9rem;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        text-align: center;
    }

    .footer-bottom p {
        font-size: 0.85rem;
        text-align: center;
    }
}