:root {
    /* Rich & Vibrant Brand Palette */
    --primary-color: #FF6B00;
    /* Neon Orange */
    --primary-deep: #D03900;
    --secondary-color: #0B1120;
    /* Darker Navy */
    --accent-blue: #00F0FF;
    /* Cyber Blue */
    --accent-purple: #9D00FF;
    /* Electric Purple */

    /* Gradients */
    --grad-primary: linear-gradient(135deg, #FF6B00, #FF0055);
    --grad-cool: linear-gradient(135deg, #00F0FF, #0055FF);
    --grad-glow: radial-gradient(circle, rgba(255, 107, 0, 0.3) 0%, rgba(0, 0, 0, 0) 70%);

    /* Base */
    --text-main: #1E293B;
    --text-muted: #475569;
    --bg-body: #F0F4F8;
    --white: #ffffff;

    /* Advanced Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: 1px solid rgba(255, 255, 255, 0.6);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);

    /* UX */
    --radius-sm: 8px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Colored shadow handled individually */
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --transition: cubic-bezier(0.34, 1.56, 0.64, 1);
    /* Bouncy spring effect */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo,
.badge {
    font-family: 'Outfit', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* -----------------------------------------------------------
   Navigation with Blur
----------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-main);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-primary-small {
    background: var(--primary-color);
    color: white !important;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(243, 111, 33, 0.3);
}

.btn-primary-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(243, 111, 33, 0.4);
}

.btn-primary-small::after {
    display: none;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
}

/* -----------------------------------------------------------
   Hero Section - Explosive visual 
----------------------------------------------------------- */
.hero {
    min-height: 100vh;
    padding-top: 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Clean base but allowing orbs to pop */
    background: #fff;
    overflow: hidden;
    perspective: 1000px;
}

/* Vivid Abstract Shapes */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.4) 0%, rgba(255, 0, 85, 0.1) 60%, rgba(0, 0, 0, 0) 80%);
    border-radius: 50%;
    filter: blur(60px);
    animation: pulseGlow 8s infinite alternate;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.3) 0%, rgba(0, 85, 255, 0.1) 60%, rgba(0, 0, 0, 0) 80%);
    border-radius: 50%;
    filter: blur(60px);
    animation: pulseGlow 10s infinite alternate-reverse;
    z-index: 0;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h40v40H0V0zm1 1h38v38H1V1z' fill='%2364748b' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 1rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    background-clip: padding-box, border-box;
    background-image: linear-gradient(white, white), var(--grad-primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--primary-deep);
    margin-bottom: 2rem;
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: float 3s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(3.5rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    background: linear-gradient(to right, #1E293B 30%, #FF6B00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.hero-title span {
    display: block;
    font-size: 0.5em;
    font-weight: 500;
    color: var(--text-muted);
    margin-top: 1rem;
    letter-spacing: 0.05em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-deep));
    color: white;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 10px 25px -5px rgba(243, 111, 33, 0.4);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 35px -5px rgba(243, 111, 33, 0.5);
}

.btn-secondary {
    padding: 1rem 2.5rem;
    background: white;
    color: var(--text-main);
    font-weight: 600;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--text-muted);
    opacity: 0.7;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, 40px);
    }

    100% {
        transform: translate(0, 0);
    }
}

/* -----------------------------------------------------------
   Section Styling
----------------------------------------------------------- */
.section {
    padding: 8rem 0;
    position: relative;
}

.bg-light {
    background: #F8FAFC;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.about-item {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
    text-align: center;
}

.about-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(243, 111, 33, 0.1);
}

.about-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    background: rgba(243, 111, 33, 0.1);
    padding: 1rem;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.about-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.about-item p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* -----------------------------------------------------------
   Parallax Image Sections
----------------------------------------------------------- */
.image-separator {
    height: 400px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-separator::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.9));
}

.separator-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.separator-content p {
    font-size: 2.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    letter-spacing: 2px;
}

.separator-content strong {
    font-weight: 700;
    color: var(--primary-color);
}

/* Image 1 */
.image-separator:nth-of-type(1) {
    background-image: url('https://cdn.imweb.me/thumbnail/20240626/c006315070fd9.png');
}

/* Image 2 */
.image-separator-2 {
    background-image: url('https://cdn.imweb.me/thumbnail/20240626/e08c58009e071.png');
    height: 350px;
}

/* -----------------------------------------------------------
   Tools Table (Elegant)
----------------------------------------------------------- */
.table-container {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
}

.custom-table th {
    text-align: left;
    padding: 1.5rem;
    color: var(--text-muted);
    font-weight: 600;
    border-bottom: 2px solid #f1f5f9;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.custom-table td {
    padding: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

.custom-table tr:hover td {
    background: #f8fafc;
}

.custom-table strong {
    color: var(--primary-color);
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
}

/* -----------------------------------------------------------
   Tracks (Cards)
----------------------------------------------------------- */
.track-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.track-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.track-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

/* Glowing Borders on Hover */
.track-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    transition: all 0.4s;
}

.track-card:hover::after {
    border-color: currentColor;
}

.track-card:nth-child(1):hover {
    color: #10B981;
}

.track-card:nth-child(2):hover {
    color: #3B82F6;
}

.track-card:nth-child(3):hover {
    color: #F43F5E;
}

.track-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #ccc, #eee);
}

/* Track Colors */
.track-card:nth-child(1)::before {
    background: linear-gradient(90deg, #10B981, #059669);
}

/* Green */
.track-card:nth-child(2)::before {
    background: linear-gradient(90deg, #3B82F6, #2563EB);
}

/* Blue */
.track-card:nth-child(3)::before {
    background: linear-gradient(90deg, #F43F5E, #E11D48);
}

/* Red */

.track-badge {
    align-self: flex-start;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.track-badge.green {
    background: #ECFDF5;
    color: #059669;
}

.track-badge.blue {
    background: #EFF6FF;
    color: #2563EB;
}

.track-badge.red {
    background: #FFF1F2;
    color: #E11D48;
}

.track-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.track-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.track-card p:not(.track-desc) {
    font-size: 1rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.track-examples {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    text-align: left;
}

.track-examples strong {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--primary-deep);
    font-size: 0.95rem;
}

.track-examples ul {
    padding-left: 0;
    list-style: none;
}

.track-examples li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.track-examples li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.track-tools {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tool-tag {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    background: #F1F5F9;
    border-radius: 6px;
    color: #475569;
    font-weight: 500;
}

/* -----------------------------------------------------------
   Schedule Timeline (Vertical Center)
----------------------------------------------------------- */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
    transform: translateX(-50%);
}

.timeline-item {
    width: 50%;
    padding: 2rem;
    position: relative;
}

.timeline-item.left {
    left: 0;
    text-align: right;
    padding-right: 3rem;
}

.timeline-item.right {
    left: 50%;
    text-align: left;
    padding-left: 3rem;
}

/* Dots */
.timeline-item::after {
    content: '';
    position: absolute;
    top: 2.5rem;
    width: 16px;
    height: 16px;
    background: white;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(243, 111, 33, 0.1);
}

.timeline-item.left::after {
    right: -10px;
}

.timeline-item.right::after {
    left: -10px;
}

.timeline-content {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: left;
    /* Force left align for content readability */
}

.timeline-content:hover {
    box-shadow: var(--shadow-md);
    transform: scale(1.02);
}

.timeline-content h3 {
    color: var(--secondary-color);
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.timeline-date {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: block;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.timeline-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-details li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.6;
    padding-left: 1rem;
    position: relative;
}

.timeline-details li strong {
    color: var(--primary-deep);
    font-weight: 700;
}

.timeline-details li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: var(--text-muted);
}

.small-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    display: block;
    margin-top: 0.2rem;
}

/* -----------------------------------------------------------
   Awards & FAQ
-----------------------------------------------------------*/
/* Awards */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.award-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.5s var(--transition);
}

.award-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 30px 60px rgba(255, 107, 0, 0.15);
}

/* Grand Master Special Effect */
.award-card:nth-child(1) {
    transform: scale(1.1);
    border: 3px solid transparent;
    background-image: linear-gradient(white, white), var(--grad-primary);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 25px 50px rgba(255, 107, 0, 0.25);
    z-index: 5;
}

.award-card:nth-child(1):hover {
    transform: scale(1.15) translateY(-10px);
    box-shadow: 0 40px 80px rgba(255, 107, 0, 0.4);
}

.award-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
    animation: float 6s infinite ease-in-out;
}

.award-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-weight: 800;
}

.prize {
    font-size: 2.2rem;
    font-weight: 900;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 1rem 0;
    font-family: 'Outfit', sans-serif;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 1.5rem;
    text-align: left;
}

.faq-item {
    background: white;
    /* Changed to white for better contrast */
    padding: 2.5rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 107, 0, 0.3);
}

.faq-item h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.15rem;
    line-height: 1.5;
    font-weight: 700;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-left: 0;
    padding-left: 1rem;
    border-left: 3px solid var(--primary-color);
    background: rgba(255, 107, 0, 0.03);
    padding: 1rem;
    border-radius: 0 8px 8px 0;
}

.faq-item.important {
    border: 1px solid var(--primary-color);
    background: #FFFBF0;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    padding: 5rem 0;
    color: #94a3b8;
    text-align: center;
}

.footer p {
    margin-bottom: 0.5rem;
}

.footer img {
    opacity: 0.8;
    margin-bottom: 2rem;
    transition: opacity 0.3s;
}

.footer img:hover {
    opacity: 1;
}

/* -----------------------------------------------------------
   Responsive
----------------------------------------------------------- */
@media (max-width: 900px) {
    .awards-grid {
        grid-template-columns: 1fr;
    }

    .award-card:nth-child(1) {
        transform: scale(1);
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 0;
        text-align: left !important;
    }

    .timeline-item.left,
    .timeline-item.right {
        left: 0;
    }

    .timeline-item.left::after,
    .timeline-item.right::after {
        left: 11px;
    }

    .navbar .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 1.5rem 2rem;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid #e2e8f0;
    }

    .navbar .nav-links.active {
        display: flex;
    }

    .navbar .nav-links a {
        padding: 0.8rem 0;
        border-bottom: 1px solid #f1f5f9;
        font-size: 1rem;
    }

    .navbar .nav-links a:last-child {
        border-bottom: none;
    }

    .hamburger {
        display: block;
    }

    .hero-title {
        font-size: 3rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .track-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 5rem 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .image-separator,
    .image-separator-2 {
        height: 250px;
        background-attachment: scroll;
    }

    .separator-content p {
        font-size: 1.8rem;
    }

    .table-container {
        padding: 1rem;
    }

    .custom-table th,
    .custom-table td {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

/* Mobile - small screens */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-desc {
        font-size: 0.95rem;
    }

    .section {
        padding: 3.5rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .about-item {
        padding: 2rem 1.5rem;
    }

    .track-card {
        padding: 2rem 1.5rem;
    }

    .track-card h3 {
        font-size: 1.25rem;
    }

    .timeline-item {
        padding-left: 45px;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .timeline-content h3 {
        font-size: 1.1rem;
    }

    .timeline-details li {
        font-size: 0.85rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .faq-item h4 {
        font-size: 1rem;
    }

    .faq-item p {
        font-size: 0.9rem;
        padding: 0.8rem;
    }

    .award-card {
        padding: 2rem 1.5rem;
    }

    .prize {
        font-size: 1.8rem;
    }

    .image-separator,
    .image-separator-2 {
        height: 180px;
    }

    .separator-content p {
        font-size: 1.3rem;
    }

    .custom-table th,
    .custom-table td {
        padding: 0.8rem 0.6rem;
        font-size: 0.85rem;
    }

    .custom-table strong {
        font-size: 0.95rem;
    }

    .footer {
        padding: 3rem 0;
    }

    .navbar {
        height: 60px;
    }

    .navbar .nav-links {
        top: 60px;
    }

    .hero {
        padding-top: 60px;
    }

    .navbar .logo img {
        height: 36px !important;
    }
}

/* Animations included in CSS above (float, bounce, etc) */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }

    from {
        opacity: 0;
        transform: translateY(20px);
    }
}