/* Competition Page Styles */

/* Main Container */
.the-challenge-main {
    background: #000;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Banner Section */
.the-challenge-banner {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.the-challenge-banner .banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.the-challenge-banner .slideshow-container {
    width: 100%;
    height: 100%;
}

.the-challenge-banner .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.the-challenge-banner .slide.active {
    opacity: 1;
}

.the-challenge-banner .banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dramatic Black Vignette Effect */
.the-challenge-banner .banner-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at center, transparent 15%, rgba(0,0,0,0.2) 35%, rgba(0,0,0,0.6) 70%, rgba(0,0,0,0.9) 95%),
        linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 25%, transparent 50%),
        linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 20%, transparent 40%),
        linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 15%, transparent 30%),
        linear-gradient(to left, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 15%, transparent 30%);
    pointer-events: none;
    z-index: 5;
}

/* Enhanced particle overlay effect */
.the-challenge-banner .banner-vignette::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(241, 196, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(241, 196, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 30%);
    animation: subtleFloat 8s ease-in-out infinite;
    pointer-events: none;
}

/* Cinematic light rays effect */
.the-challenge-banner .banner-vignette::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(241, 196, 0, 0.03) 49%, rgba(241, 196, 0, 0.06) 50%, rgba(241, 196, 0, 0.03) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255, 255, 255, 0.02) 49%, rgba(255, 255, 255, 0.04) 50%, rgba(255, 255, 255, 0.02) 51%, transparent 52%);
    animation: lightRays 15s linear infinite;
    pointer-events: none;
}

.the-challenge-banner .banner-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}

.the-challenge-banner .banner-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.the-challenge-banner .banner-description {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto 2rem;
    font-weight: 300;
}

/* Watch Finals Button */
.watch-finals-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #F1C400, #FFD700);
    color: #000;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    margin-top: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 15px rgba(241, 196, 0, 0.4),
        0 0 30px rgba(241, 196, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.watch-finals-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.watch-finals-btn:hover::before {
    left: 100%;
}

.watch-finals-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 8px 25px rgba(241, 196, 0, 0.5),
        0 0 50px rgba(241, 196, 0, 0.3);
    background: linear-gradient(135deg, #FFD700, #FFC400);
}

.watch-finals-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.watch-finals-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.watch-finals-btn:hover svg {
    transform: scale(1.2);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    animation: float 3s ease-in-out infinite;
}

.scroll-arrow {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #FFD700);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid #FFD700;
}

.scroll-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Section Container */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    max-width: 700px;
    margin: 0 auto;
}

/* Judging Criteria Section */
.criteria-section {
    background: #ffffff;
}

.criteria-section .section-title {
    color: #000;
}

.criteria-section .section-description {
    color: #333;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.criteria-card {
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.criteria-card:hover {
    border-color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.15);
}

.criteria-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.criteria-icon svg {
    width: 80px;
    height: 80px;
}

.criteria-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.criteria-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}

/* Awards Section */
.awards-section {
    background: #002B49;
    position: relative;
    overflow: hidden;
}

.awards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(241, 196, 0, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(241, 196, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.awards-section .section-container {
    position: relative;
    z-index: 1;
}

.awards-section .section-title {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.awards-section .section-description {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

/* Podium Layout */
.awards-podium {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 2rem;
    align-items: end;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.award-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
}

.award-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: rgba(var(--award-rgb), 0.4);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4), 
                0 0 0 1px rgba(var(--award-rgb), 0.3),
                0 0 30px rgba(var(--award-rgb), 0.2);
}

/* Podium Heights */
.podium-left,
.podium-right {
    min-height: 360px;
}

.podium-center {
    min-height: 440px;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Award Rank Badge */
.award-rank {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--award-color), var(--award-color-dark));
    color: #002B49;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    letter-spacing: 0.5px;
}

.award-rank.champion {
    top: -18px;
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(255,215,0,0.4);
    animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

.champion-badge {
    position: absolute;
    top: -15px;
    left: 20px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #002B49;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(255,215,0,0.3);
}

/* Medal Circle */
.award-medal {
    margin: 2rem 0 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.medal-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
}

.award-first .medal-circle {
    width: 120px;
    height: 120px;
}

.medal-circle.gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.medal-circle.silver {
    background: linear-gradient(135deg, #E8E8E8 0%, #C0C0C0 100%);
}

.medal-circle.bronze {
    background: linear-gradient(135deg, #E8A87C 0%, #CD7F32 100%);
}

.medal-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #002B49;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.award-first .medal-number {
    font-size: 3rem;
}

.award-card:hover .medal-circle {
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* Award Amount */
.award-amount {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--award-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(var(--award-rgb), 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    line-height: 1;
}

.award-first .award-amount {
    font-size: 3.5rem;
}

.currency {
    font-size: 0.7em;
    opacity: 0.9;
}

.amount-number {
    font-variant-numeric: tabular-nums;
}

.award-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Award Benefits */
.award-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    padding: 0.6rem 1rem;
    background: rgba(255,255,255,0.04);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(241,196,0,0.3);
}

.benefit-item svg {
    flex-shrink: 0;
}

/* Fourth Place Container */
.fourth-place-container {
    max-width: 600px;
    margin: 0 auto 4rem;
}

.fourth-place-container .award-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 3rem;
    min-height: auto;
}

.award-rank-inline {
    font-size: 1.8rem;
    font-weight: 800;
    color: #8B7355;
    text-shadow: 0 0 20px rgba(139,115,85,0.3);
}

.award-amount-inline {
    font-size: 2.5rem;
    font-weight: 900;
    color: #8B7355;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    text-shadow: 0 0 30px rgba(139,115,85,0.4);
}

.award-benefits-inline {
    display: flex;
    gap: 0.5rem;
}

.award-benefits-inline .benefit-item {
    margin: 0;
}

/* Award Colors */
.award-first {
    --award-color: #FFD700;
    --award-color-dark: #FFA500;
    --award-rgb: 255, 215, 0;
}

.award-second {
    --award-color: #E8E8E8;
    --award-color-dark: #C0C0C0;
    --award-rgb: 192, 192, 192;
}

.award-third {
    --award-color: #E8A87C;
    --award-color-dark: #CD7F32;
    --award-rgb: 205, 127, 50;
}

.award-fourth {
    --award-color: #8B7355;
    --award-color-dark: #6B5345;
    --award-rgb: 139, 115, 85;
}

/* Awards Stats */
.awards-stats {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #F1C400;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(241,196,0,0.4);
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.stat-divider {
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.2), transparent);
}

/* Pitch Preparation Section - Redesigned */
.pitch-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.pitch-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(241, 196, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(241, 196, 0, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.pitch-section .section-container {
    position: relative;
    z-index: 1;
}

.pitch-section .section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #F1C400, #FFD700);
    border: 1px solid #F1C400;
    color: #000000;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.pitch-section .section-title {
    color: #1a1a1a;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pitch-section .section-description {
    color: rgba(0,0,0,0.7);
    font-size: 1.2rem;
}

.pitch-content {
    margin-top: 4rem;
}

/* Journey Progress Indicator */
.journey-progress {
    max-width: 1000px;
    margin: 0 auto 5rem;
    padding: 0 2rem;
}

.progress-line {
    position: relative;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, #F1C400, #FFD700, #F1C400);
    background-size: 200% 100%;
    border-radius: 10px;
    width: 0%;
    transition: width 1s ease-out;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.progress-stages {
    display: flex;
    justify-content: space-between;
    margin-top: -14px;
}

.stage-dot {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.1);
    border: 3px solid rgba(241, 196, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.stage-dot.active {
    background: #F1C400;
    border-color: #F1C400;
    color: #000;
    box-shadow: 0 0 20px rgba(241, 196, 0, 0.5);
    transform: scale(1.2);
}

.stage-dot.completed {
    background: linear-gradient(135deg, #F1C400, #FFD700);
    border-color: #F1C400;
    color: #000;
}

/* Journey Cards */
.pitch-journey {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 5rem;
}

/* Position the last two cards in the center */
.pitch-journey .journey-card:nth-child(4) {
    grid-column: 1 / 2;
}

.pitch-journey .journey-card:nth-child(5) {
    grid-column: 2 / 3;
}

.journey-card {
    background: #f8f8f8;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.journey-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #F1C400, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.journey-card:hover::before {
    opacity: 1;
}

.journey-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(241, 196, 0, 0.6);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.15),
        0 0 0 1px rgba(241, 196, 0, 0.3),
        0 0 30px rgba(241, 196, 0, 0.2);
}

.journey-card.championship {
    background: linear-gradient(135deg, rgba(241, 196, 0, 0.12) 0%, rgba(241, 196, 0, 0.06) 100%);
    border: 2px solid rgba(241, 196, 0, 0.5);
}

.journey-card.championship::before {
    opacity: 0.8;
    height: 6px;
}

.journey-card-header {
    padding: 2rem 2rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.stage-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(241, 196, 0, 0.2), rgba(241, 196, 0, 0.05));
    border: 2px solid rgba(241, 196, 0, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.journey-card:hover .stage-number {
    background: linear-gradient(135deg, #F1C400, #FFD700);
    border-color: #F1C400;
    transform: rotate(5deg) scale(1.1);
}

.number-inner {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #F1C400, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
}

.journey-card:hover .number-inner {
    -webkit-text-fill-color: #000;
}

.championship-number {
    background: linear-gradient(135deg, #F1C400, #FFD700);
    border-color: #F1C400;
}

.championship-number .number-inner {
    -webkit-text-fill-color: #000;
}

.stage-icon {
    opacity: 0.8;
    transition: all 0.4s ease;
}

.journey-card:hover .stage-icon {
    opacity: 1;
    transform: scale(1.1) rotate(-5deg);
}

.journey-card-body {
    padding: 0 2rem 1.5rem;
}

.journey-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.journey-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(0,0,0,0.7);
    margin-bottom: 1.5rem;
}

.journey-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(0,0,0,0.8);
    font-size: 0.95rem;
    padding: 0.6rem 0;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    color: #F1C400;
    transform: translateX(5px);
}

.highlight-item svg {
    flex-shrink: 0;
}

.journey-card-footer {
    padding: 1rem 2rem 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.stage-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(0,0,0,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.championship-label {
    background: linear-gradient(135deg, #F1C400, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Pro Tips Section */
.pitch-tips-modern {
    margin-top: 5rem;
    padding: 4rem 0;
    position: relative;
}

.pitch-tips-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(241, 196, 0, 0.3), transparent);
}

.tips-header {
    text-align: center;
    margin-bottom: 3rem;
}

.tips-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.tips-subtitle {
    font-size: 1.1rem;
    color: rgba(0,0,0,0.6);
}

.tips-carousel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.tip-card-modern {
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.tip-card-modern::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #F1C400, transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.tip-card-modern:hover::before {
    transform: scaleX(1);
}

.tip-card-modern:hover {
    background: linear-gradient(135deg, rgba(241, 196, 0, 0.05) 0%, rgba(241, 196, 0, 0.02) 100%);
    border-color: rgba(241, 196, 0, 0.3);
    transform: translateY(-8px);
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.3),
        0 0 20px rgba(241, 196, 0, 0.1);
}

.tip-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(241, 196, 0, 0.1), rgba(241, 196, 0, 0.05));
    border-radius: 50%;
    transition: all 0.4s ease;
}

.tip-card-modern:hover .tip-icon {
    background: linear-gradient(135deg, #F1C400, #FFD700);
    transform: scale(1.1) rotate(5deg);
}

.tip-card-modern:hover .tip-icon svg path,
.tip-card-modern:hover .tip-icon svg circle,
.tip-card-modern:hover .tip-icon svg line,
.tip-card-modern:hover .tip-icon svg rect {
    stroke: #000;
}

.tip-card-modern:hover .tip-icon svg path[fill],
.tip-card-modern:hover .tip-icon svg circle[fill] {
    fill: #000;
}

.tip-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.tip-card-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
}

.tip-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F1C400, #FFD700);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tip-card-modern:hover .tip-accent {
    opacity: 1;
}

.tip-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
    margin: 0;
}

/* Pitch Process Section */
.pitch-process-section {
    background: #f8f8f8;
    border: 1px solid rgba(241, 196, 0, 0.3);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
}

.process-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.process-title {
    font-size: 2rem;
    font-weight: 700;
    color: #F1C400;
    margin-bottom: 1rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.process-step:hover {
    background: rgba(241, 196, 0, 0.05);
    border-color: rgba(241, 196, 0, 0.2);
    transform: translateX(10px);
}

.step-bullet {
    min-width: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #F1C400;
    margin-top: 0.5rem;
    box-shadow: 0 0 10px rgba(241, 196, 0, 0.5);
}

.process-step p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(0,0,0,0.85);
    margin: 0;
}

/* Suggestions Section */
.suggestions-section {
    margin-bottom: 3rem;
    padding: 0 3rem 3rem 3rem;
}

.suggestions-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.suggestions-title {
    font-size: 2rem;
    font-weight: 700;
    color: #F1C400;
    margin-bottom: 1rem;
}

.suggestions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.suggestion-card {
    background: #f8f8f8;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.suggestion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #F1C400, transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.suggestion-card:hover::before {
    transform: scaleX(1);
}

.suggestion-card:hover {
    background: #ffffff;
    border-color: rgba(241, 196, 0, 0.5);
    transform: translateY(-8px);
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.15),
        0 0 20px rgba(241, 196, 0, 0.2);
}

.suggestion-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(241, 196, 0, 0.1), rgba(241, 196, 0, 0.05));
    border-radius: 50%;
    transition: all 0.4s ease;
}

.suggestion-card:hover .suggestion-icon {
    background: linear-gradient(135deg, #F1C400, #FFD700);
    transform: scale(1.1) rotate(5deg);
}

.suggestion-card:hover .suggestion-icon svg path,
.suggestion-card:hover .suggestion-icon svg circle,
.suggestion-card:hover .suggestion-icon svg line,
.suggestion-card:hover .suggestion-icon svg rect,
.suggestion-card:hover .suggestion-icon svg text {
    stroke: #000;
    fill: #000;
}

.suggestion-subtitle {
    font-size: 1.2rem;
    font-weight: 700;
    color: #F1C400;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.suggestion-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(0,0,0,0.75);
}

/* Questions Section */
.questions-section {
    background: #002B49;
    border: none;
    border-radius: 0;
    padding: 4rem calc((100vw - 1200px) / 2 + 2rem);
    margin: 0 calc(-1 * ((100vw - 1200px) / 2 + 2rem));
    box-shadow: 0 10px 30px rgba(0, 43, 73, 0.3);
}

.questions-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.questions-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.questions-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
}

.question-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.question-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.question-item.sub-question {
    padding-left: 3rem;
}

.question-bullet {
    min-width: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #F1C400;
    margin-top: 0.6rem;
    box-shadow: 0 0 10px rgba(241, 196, 0, 0.6);
}

.question-bullet.small {
    width: 6px;
    height: 6px;
}

.question-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.95);
    margin: 0;
}

/* FAQ Section */
.faq-section {
    background: #ffffff;
}

.faq-section .section-title {
    color: #000;
}

.faq-section .section-description {
    color: #333;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 0.5rem;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: #000;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #FFD700;
}

.faq-question span {
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-icon path {
    stroke: #000;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-icon path {
    stroke: #FFD700;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pitch-journey {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .tips-carousel {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    /* Awards podium for tablets */
    .awards-podium {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .podium-left,
    .podium-right,
    .podium-center {
        min-height: auto;
    }

    /* Stats grid for tablets */
    .awards-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-divider {
        width: 100%;
        height: 2px;
        margin: 0.5rem 0;
    }
}

@media (max-width: 768px) {
    /* Banner Section */
    .the-challenge-banner {
        height: 65vh;
        min-height: 450px;
    }

    .the-challenge-banner .banner-title {
        font-size: 2.8rem;
        line-height: 1.2;
    }

    .the-challenge-banner .banner-description {
        font-size: 1rem;
        padding: 0 10px;
        margin: 0 auto 1.5rem;
    }

    .watch-finals-btn {
        font-size: 0.95rem;
        padding: 0.85rem 1.5rem;
        gap: 0.6rem;
    }

    .scroll-indicator {
        margin-top: 2rem;
    }

    .scroll-text {
        font-size: 0.8rem;
    }

    /* Section Spacing */
    .section-container {
        padding: 4rem 1.5rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
        padding: 0 10px;
    }

    /* Criteria Grid */
    .criteria-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .criteria-card {
        padding: 1.5rem;
    }

    .criteria-icon svg {
        width: 60px;
        height: 60px;
    }

    .criteria-title {
        font-size: 1.2rem;
    }

    .criteria-description {
        font-size: 0.9rem;
    }

    /* Awards Section */
    .awards-section .section-title {
        font-size: 2.2rem;
    }

    .awards-podium {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .award-card {
        padding: 2rem 1.5rem;
    }

    .award-rank {
        top: -12px;
        right: 15px;
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }

    .champion-badge {
        top: -12px;
        left: 15px;
        padding: 0.3rem 0.8rem;
        font-size: 0.7rem;
    }

    .medal-circle {
        width: 80px;
        height: 80px;
    }

    .award-first .medal-circle {
        width: 90px;
        height: 90px;
    }

    .medal-number {
        font-size: 2rem;
    }

    .award-first .medal-number {
        font-size: 2.5rem;
    }

    .award-amount {
        font-size: 2.2rem;
    }

    .award-first .award-amount {
        font-size: 2.8rem;
    }

    .award-label {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .benefit-item {
        font-size: 0.9rem;
        padding: 0.5rem 0.8rem;
    }

    /* Fourth Place */
    .fourth-place-container {
        padding: 0 1rem;
    }

    .fourth-place-container .award-card {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .award-rank-inline,
    .award-amount-inline {
        font-size: 2rem;
    }

    .award-benefits-inline {
        flex-direction: column;
        width: 100%;
    }

    /* Stats Grid */
    .awards-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }

    .stat-divider {
        display: none;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    /* Pitch Section */
    .pitch-section .section-title {
        font-size: 2.2rem;
    }

    .pitch-section .section-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1.2rem;
    }

    .pitch-section .section-description {
        font-size: 1rem;
    }

    /* Journey Progress */
    .journey-progress {
        padding: 0 1rem;
        margin-bottom: 3rem;
    }

    .progress-stages {
        margin-top: -12px;
    }

    .stage-dot {
        width: 26px;
        height: 26px;
        font-size: 0.75rem;
    }

    /* Journey Cards */
    .pitch-journey {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .pitch-journey .journey-card:nth-child(4),
    .pitch-journey .journey-card:nth-child(5) {
        grid-column: auto;
    }

    .journey-card-header {
        padding: 1.5rem 1.5rem 1rem;
    }

    .journey-card-body {
        padding: 0 1.5rem 1.5rem;
    }

    .journey-card-footer {
        padding: 1rem 1.5rem 1.5rem;
    }

    .stage-number {
        width: 50px;
        height: 50px;
    }

    .number-inner {
        font-size: 1.3rem;
    }

    .stage-icon svg {
        width: 40px;
        height: 40px;
    }

    .journey-title {
        font-size: 1.3rem;
    }

    .journey-description {
        font-size: 0.95rem;
    }

    .highlight-item {
        font-size: 0.9rem;
    }

    /* Tips Section */
    .tips-title {
        font-size: 1.8rem;
    }

    .tips-carousel {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tip-card {
        padding: 1.5rem;
    }

    .tip-title {
        font-size: 1.1rem;
    }

    .tip-description {
        font-size: 0.9rem;
    }

    /* Pitch Process Section */
    .pitch-process-section {
        padding: 1.5rem;
        margin: 2rem 0;
    }

    .process-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .process-steps {
        gap: 1rem;
    }

    .process-step {
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .process-step p {
        font-size: 0.95rem;
    }

    /* Suggestions Section */
    .suggestions-section {
        padding: 0 0.5rem;
    }

    .suggestions-title {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }

    .suggestions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .suggestion-card {
        padding: 1.5rem;
    }

    .suggestion-icon svg {
        width: 50px;
        height: 50px;
    }

    .suggestion-subtitle {
        font-size: 1.1rem;
    }

    .suggestion-description {
        font-size: 0.9rem;
    }

    /* Questions Section */
    .questions-section {
        padding: 1.5rem;
        margin: 2rem 0;
    }

    .questions-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .question-item {
        padding: 0.7rem 0.9rem;
    }

    .question-item.sub-question {
        padding-left: 2rem;
    }

    .question-text {
        font-size: 0.9rem;
    }

    /* Timeline Section */
    .timeline-line {
        left: 15px;
    }

    .timeline-item {
        padding-left: 50px;
    }

    .timeline-marker {
        left: 7px;
        width: 16px;
        height: 16px;
    }

    .timeline-content h3 {
        font-size: 1.2rem;
    }

    .timeline-content p {
        font-size: 0.9rem;
    }

    /* FAQ Section */
    .faq-container {
        padding: 0 1rem;
    }

    .faq-question {
        padding: 1.2rem 0;
        font-size: 1rem;
    }

    .faq-answer p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .faq-icon svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    /* Banner Section */
    .the-challenge-banner {
        height: 55vh;
        min-height: 400px;
    }

    .the-challenge-banner .banner-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .the-challenge-banner .banner-description {
        font-size: 0.95rem;
        padding: 0 5px;
        margin: 0 auto 1.2rem;
    }

    .watch-finals-btn {
        font-size: 0.9rem;
        padding: 0.75rem 1.3rem;
        gap: 0.5rem;
        min-height: 44px;
        min-width: 44px;
    }

    .watch-finals-btn svg {
        width: 16px;
        height: 16px;
    }

    .scroll-indicator {
        margin-top: 1.5rem;
    }

    .scroll-arrow {
        height: 30px;
    }

    .scroll-text {
        font-size: 0.75rem;
    }

    /* Section Spacing */
    .section-container {
        padding: 3rem 1rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-description {
        font-size: 0.95rem;
    }

    /* Criteria Grid */
    .criteria-card {
        padding: 1.5rem 1.2rem;
    }

    .criteria-icon svg {
        width: 55px;
        height: 55px;
    }

    .criteria-title {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .criteria-description {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    /* Awards Section */
    .awards-section .section-title {
        font-size: 1.9rem;
    }

    .awards-section .section-description {
        font-size: 0.95rem;
        margin-bottom: 3rem;
    }

    .award-card {
        padding: 2rem 1.2rem;
    }

    .award-rank {
        top: -10px;
        right: 12px;
        padding: 0.35rem 0.9rem;
        font-size: 0.8rem;
    }

    .award-rank.champion {
        top: -12px;
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }

    .champion-badge {
        top: -10px;
        left: 12px;
        padding: 0.3rem 0.7rem;
        font-size: 0.65rem;
    }

    .medal-circle {
        width: 70px;
        height: 70px;
    }

    .award-first .medal-circle {
        width: 85px;
        height: 85px;
    }

    .medal-number {
        font-size: 1.8rem;
    }

    .award-first .medal-number {
        font-size: 2.2rem;
    }

    .award-amount {
        font-size: 2rem;
    }

    .award-first .award-amount {
        font-size: 2.5rem;
    }

    .award-label {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .benefit-item {
        font-size: 0.85rem;
        padding: 0.5rem 0.7rem;
        gap: 0.6rem;
    }

    .benefit-item svg {
        width: 16px;
        height: 16px;
    }

    /* Fourth Place */
    .fourth-place-container {
        padding: 0 0.5rem;
    }

    .fourth-place-container .award-card {
        padding: 1.5rem 1.2rem;
    }

    .award-rank-inline {
        font-size: 1.6rem;
    }

    .award-amount-inline {
        font-size: 1.8rem;
    }

    /* Stats Grid */
    .awards-stats {
        padding: 2rem 1rem;
        gap: 1.2rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    /* Pitch Section */
    .pitch-section .section-title {
        font-size: 1.9rem;
    }

    .pitch-section .section-badge {
        font-size: 0.7rem;
        padding: 0.35rem 1rem;
    }

    .pitch-section .section-description {
        font-size: 0.95rem;
    }

    /* Journey Progress */
    .journey-progress {
        margin-bottom: 2.5rem;
        padding: 0 0.5rem;
    }

    .progress-line {
        height: 3px;
    }

    .stage-dot {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
        border-width: 2px;
    }

    /* Journey Cards */
    .pitch-journey {
        gap: 1.2rem;
    }

    .journey-card-header {
        padding: 1.2rem 1.2rem 0.8rem;
    }

    .journey-card-body {
        padding: 0 1.2rem 1.2rem;
    }

    .journey-card-footer {
        padding: 0.8rem 1.2rem 1.2rem;
    }

    .stage-number {
        width: 45px;
        height: 45px;
    }

    .number-inner {
        font-size: 1.2rem;
    }

    .stage-icon svg {
        width: 35px;
        height: 35px;
    }

    .journey-title {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .journey-description {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .highlight-item {
        font-size: 0.85rem;
        gap: 0.6rem;
        padding: 0.5rem 0;
    }

    .highlight-item svg {
        width: 16px;
        height: 16px;
    }

    .stage-label {
        font-size: 0.75rem;
    }

    /* Tips Section */
    .pitch-tips-modern {
        margin-top: 3rem;
        padding: 3rem 0;
    }

    .tips-header {
        margin-bottom: 2rem;
    }

    .tips-title {
        font-size: 1.6rem;
    }

    .tips-subtitle {
        font-size: 0.9rem;
    }

    .tips-carousel {
        gap: 1.2rem;
    }

    .tip-card {
        padding: 1.2rem;
    }

    .tip-icon svg {
        width: 40px;
        height: 40px;
    }

    .tip-title {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .tip-description {
        font-size: 0.85rem;
    }

    /* Pitch Process Section - Small Screens */
    .pitch-process-section {
        padding: 1.2rem;
        margin: 1.5rem 0;
        border-radius: 10px;
    }

    .process-title {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }

    .process-steps {
        gap: 0.8rem;
    }

    .process-step {
        padding: 0.8rem;
    }

    .process-step p {
        font-size: 0.85rem;
    }

    /* Suggestions Section - Small Screens */
    .suggestions-title {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .suggestion-card {
        padding: 1.2rem;
    }

    .suggestion-icon svg {
        width: 45px;
        height: 45px;
    }

    .suggestion-subtitle {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .suggestion-description {
        font-size: 0.85rem;
    }

    /* Questions Section - Small Screens */
    .questions-section {
        padding: 1.2rem;
        margin: 1.5rem 0;
        border-radius: 10px;
    }

    .questions-title {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }

    .question-item {
        padding: 0.55rem 0.7rem;
    }

    .question-item.sub-question {
        padding-left: 1.3rem;
    }

    .question-text {
        font-size: 0.85rem;
    }

    /* FAQ Section - Small Screens */
    .faq-section .section-title {
        font-size: 1.8rem;
    }

    .faq-section .section-description {
        font-size: 0.95rem;
    }

    .faq-container {
        padding: 0 0.5rem;
    }

    .faq-question {
        padding: 1rem 0;
        font-size: 0.95rem;
    }

    .faq-question span {
        padding-right: 0.75rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .faq-icon svg {
        width: 18px;
        height: 18px;
    }

    .faq-item.active .faq-answer {
        padding-bottom: 1.2rem;
    }

    /* Timeline Section - Small Screens */
    .timeline-line {
        left: 12px;
    }

    .timeline-item {
        padding-left: 45px;
        margin-bottom: 2rem;
    }

    .timeline-marker {
        left: 5px;
        width: 14px;
        height: 14px;
    }

    .timeline-date {
        font-size: 0.75rem;
    }

    .timeline-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .timeline-content p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    /* Touch-friendly improvements for mobile */
    .journey-card,
    .award-card,
    .criteria-card,
    .tip-card,
    .suggestion-card,
    .faq-question {
        -webkit-tap-highlight-color: rgba(241, 196, 0, 0.1);
    }

    /* Better spacing for readability on small screens */
    p, li {
        line-height: 1.6;
    }

    /* Ensure images don't overflow */
    .banner-image,
    img {
        max-width: 100%;
        height: auto;
    }
}

/* Extra small devices (portrait phones, less than 360px) */
@media (max-width: 360px) {
    .the-challenge-banner .banner-title {
        font-size: 2rem;
    }

    .the-challenge-banner .banner-description {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-container {
        padding: 2.5rem 0.8rem;
    }

    .criteria-card,
    .award-card {
        padding: 1.2rem 1rem;
    }

    .award-amount {
        font-size: 1.8rem;
    }

    .watch-finals-btn {
        font-size: 0.85rem;
        padding: 0.7rem 1.2rem;
    }
}

/* Landscape orientation for phones */
@media (max-height: 600px) and (orientation: landscape) {
    .the-challenge-banner {
        height: 90vh;
        min-height: 350px;
    }

    .the-challenge-banner .banner-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .the-challenge-banner .banner-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .scroll-indicator {
        margin-top: 1rem;
    }

    .section-container {
        padding: 3rem 1.5rem;
    }
}

/* Animation Keyframes */
@keyframes subtleFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-10px) rotate(1deg);
        opacity: 0.6;
    }
}

@keyframes lightRays {
    0% {
        transform: rotate(0deg);
        opacity: 0.3;
    }
    50% {
        opacity: 0.1;
    }
    100% {
        transform: rotate(360deg);
        opacity: 0.3;
    }
}