@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&family=Bangers&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Bangers', cursive;
    background: url('/91YUjNbq1rL._AC_UF894,1000_QL80_.jpg') center/cover no-repeat fixed;
    color: #000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 1200px;
    width: 100%;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 16px;
}

/* Neon marquee styles */
.neon-marquee {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 25px;
    padding: 12px 0;
    background: rgba(0,0,0,0.06);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.marquee-track {
    display: flex;
    gap: 80px;
    align-items: center;
    will-change: transform;
    animation: moveRight 22s linear infinite;
}

.marquee-item {
    flex: 0 0 auto;
    font-family: 'Permanent Marker', cursive;
    font-size: 3rem;
    color: #fff;
    padding: 10px 18px;
    text-transform: none;
    letter-spacing: 1px;
    text-shadow:
        0 0 10px rgba(255,255,255,0.95),
        0 0 22px rgba(255,105,180,0.9),
        0 0 38px rgba(255,20,147,0.75),
        0 0 48px rgba(255,0,128,0.6);
    background: linear-gradient(90deg, rgba(255,20,147,0.12), rgba(255,140,0,0.06));
    border-radius: 6px;
    padding-left: 18px;
    padding-right: 18px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Slight color variation for every other item for vibrancy */
.marquee-item:nth-child(2n) {
    text-shadow:
        0 0 8px rgba(255,255,255,0.9),
        0 0 16px rgba(0,255,255,0.8),
        0 0 28px rgba(0,200,255,0.6),
        0 0 36px rgba(0,150,255,0.5);
}

@keyframes moveRight {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Responsive sizing and accessibility */
@media (max-width: 768px) {
    .marquee-item {
        font-size: 1.6rem;
        padding-left: 14px;
        padding-right: 14px;
    }
}

/* Rest of existing styles follow (unchanged) */
/* ... existing code ... */

.video-section {
    margin-bottom: 60px;
}

.video-section h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
    font-family: 'Permanent Marker', cursive;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.1);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.video-grid iframe {
    width: 100%;
    aspect-ratio: 9/16;
    border-radius: 8px;
}

header {
    text-align: center;
    margin-bottom: 60px;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Permanent Marker', cursive;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.1);
}

.subtitle {
    font-size: 1.1rem;
    color: #666;
    font-family: 'Bangers', cursive;
    letter-spacing: 1px;
}

.carousel-container {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}

.carousel {
    overflow: hidden;
    width: 100%;
    border-radius: 12px;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease;
}

.carousel-item {
    min-width: 100%;
    position: relative;
    aspect-ratio: 16/9;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 10;
}

.nav-btn:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
}

.nav-btn.prev {
    left: 20px;
}

.nav-btn.next {
    right: 20px;
}

.indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: #000;
    width: 30px;
    border-radius: 5px;
}

.sport-info {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.sport-title {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
    font-family: 'Permanent Marker', cursive;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.1);
}

.sport-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    font-family: 'Bangers', cursive;
    letter-spacing: 0.5px;
}

.loading {
    text-align: center;
    padding: 100px 20px;
    font-size: 1.2rem;
    color: #666;
}

.exercise-section {
    max-width: 1100px;
    margin: 80px auto 0;
    padding: 40px;
    background: #f8f8f8;
    border-radius: 12px;
}

.exercise-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    text-align: center;
    font-family: 'Permanent Marker', cursive;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.1);
}

.exercise-instructions {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
    font-size: 1.05rem;
    font-family: 'Bangers', cursive;
    letter-spacing: 0.5px;
}

.word-bank {
    margin-bottom: 40px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
}

.word-bank h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-align: center;
    font-family: 'Permanent Marker', cursive;
}

.word-bank-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.word-bank-items span {
    padding: 8px 16px;
    background: #000;
    color: #fff;
    border-radius: 20px;
    font-size: 0.9rem;
    font-family: 'Bangers', cursive;
    letter-spacing: 0.5px;
}

.question-item {
    margin-bottom: 25px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
}

.question-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 10px;
    font-family: 'Bangers', cursive;
    letter-spacing: 0.5px;
}

.question-input {
    width: 100%;
    max-width: 600px;
    padding: 12px;
    font-size: 1rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-family: 'Bangers', cursive;
    letter-spacing: 0.5px;
    transition: border-color 0.3s;
}

.question-input:focus {
    outline: none;
    border-color: #000;
}

.question-input.correct {
    border-color: #22c55e;
    background: #f0fdf4;
}

.question-input.incorrect {
    border-color: #ef4444;
    background: #fef2f2;
}

.check-btn {
    display: block;
    margin: 30px auto;
    padding: 15px 40px;
    font-size: 1.1rem;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Bangers', cursive;
    font-weight: 600;
    transition: transform 0.2s;
    letter-spacing: 1px;
}

.check-btn:hover {
    transform: scale(1.05);
}

.results {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 20px;
    min-height: 30px;
    font-family: 'Bangers', cursive;
    letter-spacing: 1px;
}

.personal-questions-section {
    max-width: 1100px;
    margin: 60px auto 0;
    padding: 0;
}

.mural-background {
    background-image: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.35)), url('how-to-breakdance-scaled.webp');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    padding: 50px 40px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.mural-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,0.3) 2px, rgba(255,255,255,0.3) 4px),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.3) 2px, rgba(255,255,255,0.3) 4px);
    pointer-events: none;
}

.mural-title {
    font-family: 'Permanent Marker', cursive;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 50px;
    color: #fff;
    text-shadow:
        2px 2px 8px rgba(0,0,0,0.8),
        -2px -2px 6px rgba(0,0,0,0.6);
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

.question-category {
    position: relative;
    z-index: 1;
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-image {
    width: 200px;
    height: 133px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 
        4px 4px 0px #ff1493,
        8px 8px 0px rgba(0,0,0,0.2);
    border: 4px solid #fff;
}

.category-title {
    font-family: 'Permanent Marker', cursive;
    font-size: 2.2rem;
    color: #7c3aed;
    text-shadow: 
        2px 2px 0px #f472b6,
        4px 4px 0px rgba(0,0,0,0.15);
    margin-bottom: 35px;
    text-align: center;
}

.category-subsection {
    margin-bottom: 40px;
    background: rgba(255,255,255,0.9);
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid #ff1493;
}

.subsection-title {
    font-family: 'Permanent Marker', cursive;
    font-size: 1.6rem;
    color: #ff4500;
    text-shadow: 
        2px 2px 0px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.mural-questions {
    list-style: none;
    padding: 0;
}

.mural-questions li {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #111;
    padding-left: 25px;
    position: relative;
    /* Remove heavy shadow for better crispness */
    text-shadow: none;
    font-family: 'Bangers', cursive;
    letter-spacing: 0.5px;
    /* Add a subtle semi-opaque panel behind each question for contrast */
    background: rgba(0,0,0,0.45);
    color: #fff;
    padding: 14px 18px 18px 36px;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

.mural-questions li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #ff1493;
    font-weight: bold;
    font-size: 1.3rem;
}

/* Starter hint below each question: subtle, readable */
.answer-hint {
    margin-top: 8px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
    font-style: italic;
    opacity: 0.95;
    background: rgba(255,255,255,0.03);
    padding: 6px 10px;
    border-radius: 6px;
    display: inline-block;
    line-height: 1.3;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .sport-title {
        font-size: 1.5rem;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .exercise-section {
        padding: 20px;
        margin-top: 60px;
    }
    
    .exercise-section h2 {
        font-size: 1.5rem;
    }
    
    .word-bank-items span {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .mural-background {
        padding: 30px 20px;
    }
    
    .mural-title {
        font-size: 1.8rem;
        text-shadow: 
            2px 2px 0px #ff1493,
            4px 4px 0px #ffd700,
            -1px -1px 0px #00ffff;
    }
    
    .category-title {
        font-size: 1.6rem;
    }
    
    .subsection-title {
        font-size: 1.3rem;
    }
    
    .mural-questions li {
        font-size: 1rem;
    }
    
    .category-subsection {
        padding: 20px;
    }
    
    .category-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .category-image {
        width: 100%;
        max-width: 300px;
        height: auto;
        aspect-ratio: 3/2;
    }
}