/* Base Styles */
:root {
    --bg-dark: #0a0e17;
    --bg-darker: #060a12;
    --bg-navy: #0f172a;
    --color-purple: #8b5cf6;
    --color-cyan: #06b6d4;
    --color-blue: #3b82f6;
    --color-purple-glow: rgba(139, 92, 246, 0.5);
    --color-cyan-glow: rgba(6, 182, 212, 0.5);
    --color-blue-glow: rgba(59, 130, 246, 0.5);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.3);
    --text-white: #f8fafc;
    --text-gray: #94a3b8;
    --border-radius: 12px;
    --transition-speed: 0.3s;
}

/* Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* 
html {
    scroll-behavior: smooth;
} */

	




body {
    font-family: "Inter", sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Orbitron", sans-serif;
    margin-bottom: 1rem;
}

a {
    color: var(--text-white);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--color-cyan);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Base styles */
body {
    margin: 0;
    font-family: "Segoe UI", sans-serif;
    background-color: #0f172a;
    color: #f8fafc;
}

/* Problem Section */
.problem-section {
    padding: 80px 20px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeUp 1s ease forwards;
    opacity: 0;
}

/* Title */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #ffffff;
}

/* Intro Card */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Domain Grid */
.domain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

/* Domain Card */
.domain-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 20px;
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.domain-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.domain-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: var(--color-blue);
}

.domain-card .icon {
    font-size: 1.4rem;
    margin-right: 8px;
}

.domain-card ul {
    padding-left: 18px;
}

.domain-card li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Final Note */
.final-note {
    text-align: center;
    margin-top: 50px;
    font-size: 1.1rem;
    font-style: italic;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .glass-card,
    .domain-card {
        padding: 16px;
    }
}

/* Utility Classes */
.glass-card {
    margin-top: 60px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: var(--glass-shadow);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px -4px rgba(0, 0, 0, 0.4);
}

.section-dark {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.section-dark:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(
            rgba(139, 92, 246, 0.15) 1px,
            transparent 1px
        ),
        radial-gradient(rgba(6, 182, 212, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    z-index: -1;
    transform: rotate(5deg) scale(1.2);
    opacity: 0.3;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(90deg, var(--color-purple), var(--color-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px var(--color-purple-glow);
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
    cursor: pointer;
    font-family: "Orbitron", sans-serif;
    text-align: center;
}

.btn-primary {
    background: var(--color-cyan);
    color: var(--bg-darker);
    box-shadow: 0 0 15px var(--color-cyan-glow);
}

.btn-primary:hover {
    background: var(--color-cyan);
    box-shadow: 0 0 25px var(--color-cyan-glow);
    transform: translateY(-3px);
    color: var(--bg-darker);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--color-purple);
    box-shadow: 0 0 10px var(--color-purple-glow);
}

.btn-secondary:hover {
    background: var(--color-purple);
    box-shadow: 0 0 20px var(--color-purple-glow);
    transform: translateY(-3px);
    color: var(--text-white);
}

/* Particles Background */
#particles-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Header/Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: all var(--transition-speed) ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(10, 14, 23, 0.8);
}

header.scrolled {
    padding: 1rem 2rem;
    background-color: rgba(10, 14, 23, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.logo {
    font-family: "Orbitron", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--color-purple), var(--color-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px var(--color-purple-glow);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    position: relative;
    padding: 0.5rem 0;
}

nav ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-cyan);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

nav ul li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background-color: var(--text-white);
    transition: all 0.3s ease;
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(
        ellipse at bottom,
        var(--bg-navy) 0%,
        var(--bg-darker) 100%
    );
}

#hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(
            rgba(139, 92, 246, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(90deg, rgba(6, 182, 212, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.main-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 20px var(--color-purple-glow);
    letter-spacing: 2px;
}

.version {
    color: var(--color-purple);
    text-shadow: 0 0 20px var(--color-purple-glow);
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Problem Statement Section */
.problem-card {
    max-width: 800px;
    margin: 0 auto;
}

.problem-card p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.themed-list {
    list-style: none;
    margin: 2rem 0;
}

.themed-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border-radius: 50%;
    margin-right: 1rem;
    font-size: 1.2rem;
    border: 1px solid var(--glass-border);
    box-shadow: 0 0 10px var(--color-cyan-glow);
}

/* Rules Section */
.accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.accordion-header {
    background: var(--glass-bg);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    transition: all var(--transition-speed) ease;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.08);
}

.accordion-header h3 {
    margin: 0;
    font-size: 1.1rem;
}

.accordion-icon {
    font-size: 1.5rem;
    transition: transform var(--transition-speed) ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    background: rgba(0, 0, 0, 0.2);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed) ease;
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
}

.accordion-item.active .accordion-content {
    max-height: 200px;
}

.accordion-content p {
    padding: 1.5rem;
    color: var(--text-gray);
}

/* Timeline Section */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--color-purple),
        var(--color-cyan),
        var(--color-blue),
        transparent
    );
    box-shadow: 0 0 15px var(--color-purple-glow);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 30px;
    position: relative;
    margin-bottom: -20px;
    width: 50%;
}

.timeline-item:nth-child(even) {
    align-self: flex-end;
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 30px;
    left: 50%;
}

.timeline-item::before {
    content: "";
    position: absolute;
    top: 20px;
    right: -11px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-cyan);
    box-shadow: 0 0 10px var(--color-cyan-glow);
}

.timeline-item:nth-child(even)::before {
    right: auto;
    left: -9px;
}

.timeline-date {
    position: absolute;
    top: 12px;
    right: 15px;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-date {
    right: auto;
    left: 15px;
    text-align: left;
}

.timeline-date .date {
    display: block;
    font-weight: 600;
    color: var(--color-purple);
}

.timeline-date .time {
    display: block;
    font-size: 0.8rem;
    color: var(--text-gray);
}

.timeline-content {
    width: 100%;
}

.timeline-content h3 {
    margin-top: 0;
    color: var(--text-white);
}

/* Mentors & Judges Section */
.mentors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mentor-card {
    text-align: center;
    padding: 2rem;
}

.mentor-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 2px solid var(--color-cyan);
    box-shadow: 0 0 15px var(--color-cyan-glow);
    position: relative;
}

.avatar-circle {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--color-purple), var(--color-blue));
    opacity: 0.8;
}

.mentor-card h3 {
    margin-bottom: 0.5rem;
}

.mentor-card p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.mentor-role {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: var(--glass-bg);
    border-radius: 50px;
    font-size: 0.8rem;
    margin-top: 1rem;
    border: 1px solid var(--glass-border);
}

.social-link {
    display: inline-block;
    margin-top: 1rem;
    transition: transform var(--transition-speed) ease;
}

.social-link:hover {
    transform: translateY(-3px);
}

.linkedin-icon {
    color: var(--color-cyan);
}

/* Prizes Section */

.prizes {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.prizes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.prize-card {
    text-align: center;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.prize-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.prize-card h3 {
    margin-bottom: 1.5rem;
}

.prize-card ul {
    list-style: none;
    text-align: left;
    align-self: stretch;
}

.prize-card ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.prize-card ul li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--color-cyan);
}

.first-prize {
    border: 1px solid gold;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.second-prize {
    border: 1px solid silver;
    box-shadow: 0 0 15px rgba(192, 192, 192, 0.5);
}

.third-prize {
    border: 1px solid #cd7f32;
    box-shadow: 0 0 15px rgba(205, 127, 50, 0.5);
}

.special-prize {
    border: 1px solid var(--color-cyan);
    box-shadow: 0 0 15px var(--color-cyan-glow);
}

/* Sponsors Section */
#sponsors {
    padding: 5rem 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

#sponsors::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        var(--color-purple-glow),
        transparent 70%
    );
    z-index: 0;
    animation: pulse-bg 8s ease-in-out infinite;
    opacity: 0.1;
}

@keyframes pulse-bg {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    color: var(--color-cyan);
    margin-bottom: 3rem;
    text-shadow: 0 0 12px var(--color-cyan-glow);
    position: relative;
    z-index: 2;
    animation: fadeInDown 1s ease forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    z-index: 2;
    position: relative;
}

/* Sponsor Image Styles */
.sponser-image {
    width: 180px;
    height: auto;
    margin: 1rem;
    /* padding: 1.5rem; */
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
    animation-delay: calc(0.1s * var(--i, 0));
}

.sponser-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.3);
    border-color: var(--color-cyan);
}

.sponsors-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subtle shimmer effect */
@keyframes shimmer {
    0% {
        filter: brightness(1) contrast(1);
    }
    50% {
        filter: brightness(1.2) contrast(1.2);
    }
    100% {
        filter: brightness(1) contrast(1);
    }
}

/* Responsive Layout */
@media (max-width: 768px) {
    .sponser-image {
        width: 120px;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .sponser-image {
        width: 100px;
        padding: 1rem;
    }

    .reveal-section {
        gap: 1.5rem;
    }
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform var(--transition-speed) ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed) ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 1.5rem;
    color: var(--text-gray);
}

/* Footer Section */
.site-footer {
    background: var(--bg-darker);
    padding: 4rem 2rem 2rem;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-left {
    max-width: 350px;
}

.footer-logo {
    font-family: "Orbitron", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: var(--text-gray);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    transition: all var(--transition-speed) ease;
    border: 1px solid var(--glass-border);
}

.social-icon:hover {
    transform: translateY(-3px);
    background: var(--color-purple);
}

.instagram-icon,
.github-icon {
    color: var(--text-white);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    font-size: 0.9rem;
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--color-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px var(--color-cyan-glow);
    transform: translateY(100px);
    opacity: 0;
    transition: all var(--transition-speed) ease;
}

.back-to-top.visible {
    transform: translateY(0);
    opacity: 1;
}

.back-to-top:hover {
    background: var(--color-purple);
    box-shadow: 0 0 15px var(--color-purple-glow);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .logo {
        font-size: 1rem;
    }
    .main-title {
        font-size: 4rem;
    }

    .timeline::before {
        left: 40px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 80px;
        padding-right: 0;
    }

    .timeline-item:nth-child(even) {
        left: 0;
        padding-left: 80px;
    }

    .timeline-item::before {
        left: 30px;
        right: auto;
    }

    .timeline-item:nth-child(even)::before {
        left: 30px;
    }

    .timeline-date {
        left: 80px;
        right: auto;
        text-align: left;
    }

    .timeline-item:nth-child(even) .timeline-date {
        left: 80px;
        text-align: left;
    }
}
.logo-image {
    width: 100px;
    height: 100px;
    background: url("logo.html") center center no-repeat;
    background-size: contain;
}

@media (max-width: 768px) {
    .logo-image {
        margin-top: 5vh;
    }
    .hero-content {
        height: 150vh;
        padding: 10px;
        font-size: 10px;
    }
    .main-title {
        font-size: 30px !important;
    }
    header {
        padding: 1rem;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-navy);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: right var(--transition-speed) ease;
        z-index: 200;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 1.5rem 0;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 201;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .main-title {
        font-size: 2rem;
    }

    .timeline-content,
    .problem-card,
    .accordion-item,
    .prize-card {
        padding: 1rem;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-left {
        max-width: 100%;
    }

    .social-links {
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .mentors-grid,
    .prizes-container {
        grid-template-columns: 1fr;
    }
}

/* Animation for scroll reveal */
.reveal-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-section.is-revealed {
    opacity: 1;
    transform: translateY(0);
}


/* 
body {
	margin: 0;  padding: 0;  margin-bottom: 15px;  margin-top: 8px;
	background: #77b;
}
body, td {
	font: 14px "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
	}

#subTitle {
	background: #000;  color: #fff;  padding: 4px;  font-weight: bold; 
	}

#siteNavigation a, #siteNavigation .current {
	font-weight: bold;  color: #448;
	}
#siteNavigation a:link    { text-decoration: none; }
#siteNavigation a:visited { text-decoration: none; }

#siteNavigation .current { background-color: #ccd; }

#siteNavigation a:hover   { text-decoration: none;  background-color: #fff;  color: #000; }
#siteNavigation a:active  { text-decoration: none;  background-color: #ccc; }


a:link    { text-decoration: underline;  color: #00f; }
a:visited { text-decoration: underline;  color: #000; }
a:hover   { text-decoration: underline;  color: #c00; }
a:active  { text-decoration: underline; }

#pageContent {
	clear: both;
	border-bottom: 6px solid #000;
	padding: 10px;  padding-top: 20px;
	line-height: 1.65em;
	background-image: url(backblue.gif);
	background-repeat: no-repeat;
	background-position: top right;
	}

#pageContent, #siteNavigation {
	background-color: #ccd;
	}


.imgLeft  { float: left;   margin-right: 10px;  margin-bottom: 10px; }
.imgRight { float: right;  margin-left: 10px;   margin-bottom: 10px; }

hr { height: 1px;  color: #000;  background-color: #000;  margin-bottom: 15px; }

h1 { margin: 0;  font-weight: bold;  font-size: 2em; }
h2 { margin: 0;  font-weight: bold;  font-size: 1.6em; }
h3 { margin: 0;  font-weight: bold;  font-size: 1.3em; }
h4 { margin: 0;  font-weight: bold;  font-size: 1.18em; }

.blak { background-color: #000; }
.hide { display: none; }
.tableWidth { min-width: 400px; }

.tblRegular       { border-collapse: collapse; }
.tblRegular td    { padding: 6px;  background-image: url(fade.gif);  border: 2px solid #99c; }
.tblHeaderColor, .tblHeaderColor td { background: #99c; }
.tblNoBorder td   { border: 0; }
 */
