/* ===== ROOT VARIABLES ===== */
:root {
    --black: #131010;
    --darkgray: #555;
    --white: #FDF7F7;
    --pink: #FF4E99;
    --orange: #FF9F00;
    --lime: #C6DF2B;
    --blue: #009DFF;
    --koodi-pink: #FF4E99;
    --koodi-orange: #FF9F00;
    --koodi-lime: #C6DF2B;
    --koodi-blue: #009DFF;
    
    /* Senior Theme */
    --senior-gold: #FFD700;
    --senior-purple: #9B59B6;
    --senior-dark-purple: #6C3483;
    --senior-gradient: linear-gradient(135deg, #9B59B6, #6C3483);
    
    /* Racing Theme */
    --racing-red: #E74C3C;
    --racing-orange: #F39C12;
    --racing-green: #27AE60;
    --racing-blue: #3498DB;
    --racing-dark: #1a1a2e;
    
    --font-family: 'Rubik', sans-serif;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: var(--white);
    color: var(--black);
    overflow-x: hidden;
}
/* ===== BUTTONS ===== */
.btn {
    font-family: var(--font-family);
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(2px);
}

/* Header buttons */
.btn-lime {
    background-color: var(--lime);
    color: var(--black);
    font-size: 22px;
    padding: 20px 45px;
    border: 2px solid var(--black);
    border-radius: 20px;
    box-shadow: 6px 6px 0px var(--black);
}

.btn-pink {
    background-color: var(--pink);
    color: var(--black);
    font-size: 22px;
    padding: 20px 30px;
    border: 2px solid var(--black);
    border-radius: 20px;
    box-shadow: 6px 6px 0px var(--black);
}

/* CTA buttons */
.btn-blue {
    background-color: var(--blue);
    color: var(--black);
    font-size: 26px;
    font-weight: 700;
    padding: 32px 55px;
    border: 4px solid var(--black);
    border-radius: 20px;
    box-shadow: 8px 8px 0px var(--black);
}

.btn-orange {
    background-color: var(--orange);
    color: var(--black);
    font-size: 26px;
    font-weight: 700;
    padding: 32px 55px;
    border: 4px solid var(--black);
    border-radius: 20px;
    box-shadow: 8px 8px 0px var(--black);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    background-color: transparent;
    position: relative;
    padding: 30px 60px;
    z-index: 1;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.nav-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Hero Content */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 160px);
    position: relative;
}

/* Hero Title - KOODI */
.hero-title {
    font-family: var(--font-family);
    font-size: 400px;
    font-weight: 900;
    color: var(--black);
    letter-spacing: -12px;
    margin: 0;
    line-height: 0.8;
    position: relative;
    z-index: 1;
}

/* Floating Icons - квадратики */
.floating-icon {
    position: absolute;
    z-index: 10;
}

.floating-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Позиції квадратиків - точно як на макеті */

/* Зелений - зверху над першою O */
.icon-1 {
    width: 90px;
    height: 90px;
    top: 18%;
    left: calc(50% - 80px);
    transform: rotate(15deg);
}

/* Рожевий - справа вгорі біля I */
.icon-2 {
    width: 100px;
    height: 100px;
    top: 25%;
    right: 15%;
    transform: rotate(25deg);
}

/* Помаранчевий - зліва внизу біля K */
.icon-3 {
    width: 100px;
    height: 100px;
    top: 45%;
    left: 12%;
    transform: rotate(-8deg);
}

/* Блакитний - справа внизу біля D */
.icon-4 {
    width: 85px;
    height: 85px;
    top: 52%;
    right: 28%;
    transform: rotate(15deg);
}

/* Tagline */
.tagline {
    font-size: 48px;
    font-weight: 800;
    color: var(--black);
    text-align: center;
    margin-top: 40px;
    margin-bottom: 50px;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 180px;
        letter-spacing: -5px;
    }
    
    .tagline {
        font-size: 36px;
    }
}

@media (max-width: 900px) {
    .hero {
        padding: 20px 30px;
    }
    
    .hero-title {
        font-size: 120px;
        letter-spacing: -3px;
    }
    
    .tagline {
        font-size: 28px;
    }
    
    .btn-lime, .btn-pink {
        font-size: 18px;
        padding: 14px 30px;
    }
    
    .btn-blue, .btn-orange {
        font-size: 22px;
        padding: 18px 40px;
    }
    
    .floating-icon {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 15px 20px;
    }
    
    .logo-img {
        width: 50px;
        height: 50px;
    }
    
    .hero-title {
        font-size: 70px;
        letter-spacing: -2px;
    }
    
    .tagline {
        font-size: 20px;
        padding: 0 10px;
    }
    
    .btn-lime {
        display: none;
    }
    
    .btn-pink {
        font-size: 16px;
        padding: 12px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }
    
    .btn-blue, .btn-orange {
        font-size: 18px;
        padding: 16px 30px;
        width: 100%;
    }
}
/* ============================================
   FLYING SQUARES ANIMATION
   ============================================ */

.flying-squares {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.flying-square {
    position: absolute;
    border-radius: 10px;
    opacity: 0;
    animation: floatUp linear infinite;
}

.flying-square:nth-child(1) { width: 50px; height: 50px; background: #FF4E99; left: 5%; animation-duration: 22s; animation-delay: 0s; }
.flying-square:nth-child(2) { width: 35px; height: 35px; background: #FF9F00; left: 12%; animation-duration: 18s; animation-delay: -4s; }
.flying-square:nth-child(3) { width: 70px; height: 70px; background: #C6DF2B; left: 22%; animation-duration: 28s; animation-delay: -8s; }
.flying-square:nth-child(4) { width: 25px; height: 25px; background: #009DFF; left: 32%; animation-duration: 20s; animation-delay: -2s; }
.flying-square:nth-child(5) { width: 45px; height: 45px; background: #FF4E99; left: 42%; animation-duration: 25s; animation-delay: -6s; }
.flying-square:nth-child(6) { width: 60px; height: 60px; background: #FF9F00; left: 52%; animation-duration: 23s; animation-delay: -10s; }
.flying-square:nth-child(7) { width: 30px; height: 30px; background: #C6DF2B; left: 62%; animation-duration: 19s; animation-delay: -3s; }
.flying-square:nth-child(8) { width: 55px; height: 55px; background: #009DFF; left: 72%; animation-duration: 26s; animation-delay: -7s; }
.flying-square:nth-child(9) { width: 40px; height: 40px; background: #FF4E99; left: 82%; animation-duration: 21s; animation-delay: -12s; }
.flying-square:nth-child(10) { width: 65px; height: 65px; background: #FF9F00; left: 90%; animation-duration: 24s; animation-delay: -5s; }
.flying-square:nth-child(11) { width: 20px; height: 20px; background: #C6DF2B; left: 8%; animation-duration: 17s; animation-delay: -9s; }
.flying-square:nth-child(12) { width: 75px; height: 75px; background: #009DFF; left: 48%; animation-duration: 30s; animation-delay: -15s; }

@keyframes floatUp {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    5% { opacity: 0.12; }
    95% { opacity: 0.12; }
    100% { transform: translateY(-150px) rotate(360deg); opacity: 0; }
}

/* ============================================
   COLOR BLOCKS
   ============================================ */

.color-blocks {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    padding: 70px 0 20px;
    position: relative;
    z-index: 1;
}

.block {
    width: 400px;
    height: 60px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.block.blue { background-color: var(--blue); }
.block.lime { background-color: var(--lime); }
.block.orange { background-color: var(--orange); }
.block.pink { background-color: var(--pink); }

.block:hover {
    transform: scale(1.1);
}

.tech-char {
    display: inline-block;
}

.tech-item {
    will-change: transform;
}

/* ===== SECTION 2 - VIDEO ===== */
.video-section {
    background-color: transparent;
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.video-container {
    width: 100%;
    max-width: 1400px;
    padding: 0 60px;
    will-change: transform;
    transform-style: preserve-3d;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .video-section {
        padding: 50px 0;
    }
    
    .video-container {
        padding: 0 20px;
    }
    
    .video-container video {
        border-radius: 20px;
    }
}
/* ===== SECTION 3 - WORDS ANIMATION ===== */
.words-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 40px;
    background-color: transparent;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.words-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.animated-word {
    font-family: var(--font-family);
    font-size: 180px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
}

.word-pink { color: var(--pink); }
.word-orange { color: var(--orange); }
.word-lime { color: var(--lime); }
.word-blue { color: var(--blue); }

/* Responsive */
@media (max-width: 1400px) {
    .animated-word {
        font-size: 140px;
    }
}

@media (max-width: 1000px) {
    .animated-word {
        font-size: 100px;
    }
}

@media (max-width: 768px) {
    .animated-word {
        font-size: 70px;
    }
    
    .words-section {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .animated-word {
        font-size: 45px;
    }
}
/* ===== SECTION 4 - TECHNOLOGIES MARQUEE ===== */
.tech-marquee-section {
    padding: 80px 0;
    background-color: transparent;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.tech-title {
    font-family: var(--font-family);
    font-size: 80px;
    font-weight: 900;
    color: var(--black);
    text-align: center;
    margin-bottom: 50px;
}

.tech-marquee-row {
    display: flex;
    width: 100%;
    margin: 20px 0;
}

.tech-marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
}

.marquee-right .tech-marquee-track {
    animation: techMarqueeRight 60s linear infinite;
}

.marquee-left .tech-marquee-track {
    animation: techMarqueeLeft 60s linear infinite;
}

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

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

/* Tech Item Card - BIGGER */
.tech-item {
    position: relative;
    flex-shrink: 0;
    width: 380px;
    height: 240px;
    background-color: var(--white);
    border: 5px solid var(--black);
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
}

.tech-item img {
    width: 130px;
    height: 130px;
    object-fit: contain;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Text info - hidden by default */
.tech-info {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tech-info h3 {
    font-family: var(--font-family);
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 12px;
    color: var(--black);
}

.tech-info p {
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--darkgray);
}

/* Hover - show text, hide icon */
.tech-item:hover img {
    opacity: 0;
    transform: scale(0.8);
}

.tech-item:hover .tech-info {
    opacity: 1;
}

/* Pause on hover */
.tech-marquee-row:hover .tech-marquee-track {
    animation-play-state: paused;
}

/* Colors based on tech */
.tech-item[data-tech="html"] { background: linear-gradient(135deg, #fff 0%, #ffebe6 100%); }
.tech-item[data-tech="css"] { background: linear-gradient(135deg, #fff 0%, #e6f3ff 100%); }
.tech-item[data-tech="js"] { background: linear-gradient(135deg, #fff 0%, #fffde6 100%); }
.tech-item[data-tech="python"] { background: linear-gradient(135deg, #fff 0%, #e6f0ff 100%); }
.tech-item[data-tech="react"] { background: linear-gradient(135deg, #fff 0%, #e6fbff 100%); }
.tech-item[data-tech="vue"] { background: linear-gradient(135deg, #fff 0%, #e6ffef 100%); }
.tech-item[data-tech="angular"] { background: linear-gradient(135deg, #fff 0%, #ffe6e9 100%); }
.tech-item[data-tech="node"] { background: linear-gradient(135deg, #fff 0%, #e6ffe6 100%); }
.tech-item[data-tech="java"] { background: linear-gradient(135deg, #fff 0%, #fff3e6 100%); }

.tech-item[data-tech="html"] .tech-info h3 { color: #E34F26; }
.tech-item[data-tech="css"] .tech-info h3 { color: #1572B6; }
.tech-item[data-tech="js"] .tech-info h3 { color: #c4a000; }
.tech-item[data-tech="python"] .tech-info h3 { color: #3776AB; }
.tech-item[data-tech="react"] .tech-info h3 { color: #00a0c4; }
.tech-item[data-tech="vue"] .tech-info h3 { color: #42b883; }
.tech-item[data-tech="angular"] .tech-info h3 { color: #DD0031; }
.tech-item[data-tech="node"] .tech-info h3 { color: #339933; }
.tech-item[data-tech="java"] .tech-info h3 { color: #ED8B00; }

/* Responsive */
@media (max-width: 900px) {
    .tech-title {
        font-size: 50px;
    }
    
    .tech-item {
        width: 280px;
        height: 180px;
    }
    
    .tech-item img {
        width: 90px;
        height: 90px;
    }
    
    .tech-info h3 {
        font-size: 24px;
    }
    
    .tech-info p {
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .tech-title {
        font-size: 36px;
    }
    
    .tech-item {
        width: 220px;
        height: 140px;
    }
    
    .tech-item img {
        width: 60px;
        height: 60px;
    }
    
    .tech-info {
        padding: 15px;
    }
    
    .tech-info h3 {
        font-size: 18px;
        margin-bottom: 6px;
    }
    
    .tech-info p {
        font-size: 12px;
    }
}
/* ===== SECTION 5 - LEVELS ===== */
.levels-section {
    padding: 100px 60px;
    background-color: transparent;
    position: relative;
    z-index: 1;
}

.levels-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Left - Video */
.levels-video {
    flex: 1;
    max-width: 700px;
}

.levels-video video {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 10px 10px 0 var(--black);
}
/* Right - Buttons */
.levels-buttons {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.level-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 320px;
    height: 100px;
    border: 4px solid var(--black);
    border-radius: 25px;
    text-decoration: none;
    font-family: var(--font-family);
    font-size: 42px;
    font-weight: 900;
    color: var(--black);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.4s ease,
                width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 6px 6px 0 var(--black);
}

.level-btn span {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, letter-spacing 0.3s ease;
}

/* Colors */
.level-junior {
    background-color: var(--lime);
}

.level-middle {
    background-color: var(--pink);
}

.level-senior {
    background-color: var(--orange);
}

/* Hover animations */
.level-btn:hover {
    transform: translateX(-20px) scale(1.08);
    box-shadow: 12px 12px 0 var(--black);
    width: 380px;
}

.level-btn:hover span {
    transform: scale(1.1);
    letter-spacing: 3px;
}

/* Ripple effect on hover */
.level-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.level-btn:hover::before {
    width: 500px;
    height: 500px;
}

/* Shine effect */
.level-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.level-btn:hover::after {
    left: 100%;
}

/* Active state */
.level-btn:active {
    transform: translateX(-10px) scale(1.02);
    box-shadow: 4px 4px 0 var(--black);
}

/* Stagger animation on page load */
.level-btn:nth-child(1) { animation: slideInRight 0.6s ease 0.1s both; }
.level-btn:nth-child(2) { animation: slideInRight 0.6s ease 0.2s both; }
.level-btn:nth-child(3) { animation: slideInRight 0.6s ease 0.3s both; }

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 1100px) {
    .levels-container {
        flex-direction: column;
        text-align: center;
    }
    
    .levels-image {
        max-width: 100%;
    }
    
    .levels-buttons {
        align-items: center;
    }
    
    .level-btn:hover {
        transform: scale(1.08);
        width: 350px;
    }
}

@media (max-width: 600px) {
    .levels-section {
        padding: 60px 20px;
    }
    
    .level-btn {
        width: 260px;
        height: 80px;
        font-size: 32px;
    }
    
    .level-btn:hover {
        width: 280px;
    }
}
/* ===== SECTION 5 - LEVELS ===== */
.levels-section {
    padding: 100px 60px;
    background-color: transparent;
    position: relative;
    z-index: 1;
}
.levels-word {
    display: inline-block;
    margin-right: 0.3em;
}

.text-word {
    display: inline-block;
    margin-right: 0.25em;
}

.levels-image {
    will-change: transform;
    transform-style: preserve-3d;
}

.level-btn {
    will-change: transform;
}

.level-btn span {
    display: inline-block;
    will-change: transform, letter-spacing;
}

.cheat-word {
    display: inline-block;
    margin-right: 0.3em;
}

.cheat-sub-word {
    display: inline-block;
    margin-right: 0.25em;
}

.cheatsheets-image {
    will-change: transform;
    transform-style: preserve-3d;
}

.accordion-btn {
    will-change: transform;
}

.cheatsheets-download {
    will-change: transform;
}
.play-word {
    display: inline-block;
    margin-right: 0.3em;
}

.play-sub-word {
    display: inline-block;
    margin-right: 0.25em;
}

.playground-image {
    will-change: transform;
    transform-style: preserve-3d;
}

.feature-item {
    will-change: transform;
}

.feature-icon {
    will-change: transform;
}

.feature-text h3 {
    will-change: transform, color;
    transition: color 0.3s ease;
}
.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon span {
    font-size: 36px;
    line-height: 1;
}

.feature-pink {
    background-color: rgba(255, 78, 153, 0.15);
    border: 3px solid var(--pink);
}

.feature-lime {
    background-color: rgba(198, 223, 43, 0.15);
    border: 3px solid var(--lime);
}

.feature-orange {
    background-color: rgba(255, 159, 0, 0.15);
    border: 3px solid var(--orange);
}

.feature-blue {
    background-color: rgba(0, 157, 255, 0.15);
    border: 3px solid var(--blue);
}

/* Levels Header */
.levels-header {
    max-width: 1000px;
    margin: 0 auto 80px auto;
    text-align: center;
}

.levels-title {
    font-family: var(--font-family);
    font-size: 72px;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 30px;
    line-height: 1.1;
}

.levels-text {
    font-family: var(--font-family);
    font-size: 22px;
    font-weight: 400;
    color: var(--darkgray);
    line-height: 1.6;
}

.levels-container {
    max-width: 1700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 40px;
}

/* Left - Image - BIGGER */
.levels-image {
    flex: 1.5;
    max-width: 900px;
}

.levels-image img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

/* Right - Buttons */
.levels-buttons {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.level-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 320px;
    height: 110px;
    border: 4px solid var(--black);
    border-radius: 25px;
    text-decoration: none;
    font-family: var(--font-family);
    font-size: 44px;
    font-weight: 900;
    color: var(--black);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.4s ease,
                width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 6px 6px 0 var(--black);
}

.level-btn span {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, letter-spacing 0.3s ease;
}

/* Colors */
.level-junior { background-color: var(--lime); }
.level-middle { background-color: var(--pink); }
.level-senior { background-color: var(--orange); }

/* Hover animations */
.level-btn:hover {
    transform: translateX(-20px) scale(1.08);
    box-shadow: 12px 12px 0 var(--black);
    width: 380px;
}

.level-btn:hover span {
    transform: scale(1.1);
    letter-spacing: 3px;
}

/* Shine effect */
.level-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.level-btn:hover::after {
    left: 100%;
}

/* Active state */
.level-btn:active {
    transform: translateX(-10px) scale(1.02);
    box-shadow: 4px 4px 0 var(--black);
}

/* Responsive */
@media (max-width: 1200px) {
    .levels-container {
        flex-direction: column;
        text-align: center;
    }
    
    .levels-image {
        max-width: 100%;
    }
    
    .levels-buttons {
        align-items: center;
    }
    
    .level-btn:hover {
        transform: scale(1.08);
        width: 350px;
    }
}

@media (max-width: 900px) {
    .levels-title {
        font-size: 40px;
    }
    
    .levels-text {
        font-size: 18px;
    }
    
    .levels-header {
        margin-bottom: 50px;
        padding: 0 20px;
    }
}

@media (max-width: 600px) {
    .levels-section {
        padding: 60px 20px;
    }
    
    .levels-title {
        font-size: 30px;
    }
    
    .levels-text {
        font-size: 16px;
    }
    
    .level-btn {
        width: 260px;
        height: 80px;
        font-size: 32px;
    }
    
    .level-btn:hover {
        width: 280px;
    }
}
/* ===== SECTION 6 - CHEATSHEETS ===== */
.cheatsheets-section {
    padding: 100px 60px;
    background-color: transparent;
    position: relative;
    z-index: 1;
}

.cheatsheets-header {
    text-align: center;
    margin-bottom: 70px;
}

.cheatsheets-title {
    font-family: var(--font-family);
    font-size: 56px;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.1;
}

.cheatsheets-subtitle {
    font-family: var(--font-family);
    font-size: 24px;
    font-weight: 400;
    color: var(--darkgray);
}

.cheatsheets-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Left - Accordions */
.cheatsheets-accordions {
    flex: 1;
    max-width: 550px;
}

/* Accordion Item */
.accordion-item {
    margin-bottom: 20px;
}

.accordion-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 35px;
    border: 4px solid var(--black);
    border-radius: 20px;
    font-family: var(--font-family);
    font-size: 32px;
    font-weight: 900;
    color: var(--black);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 5px 5px 0 var(--black);
}

.accordion-lime {
    background-color: var(--lime);
}

.accordion-blue {
    background-color: var(--blue);
}

.accordion-btn:hover {
    transform: translateY(-3px);
    box-shadow: 8px 8px 0 var(--black);
}

.accordion-arrow {
    width: 30px;
    height: 30px;
    transition: transform 0.4s ease;
}

.accordion-btn.active .accordion-arrow {
    transform: rotate(180deg);
}

/* Accordion Content */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 10px;
}

.accordion-content p {
    font-family: var(--font-family);
    font-size: 20px;
    font-weight: 500;
    color: var(--black);
    line-height: 1.6;
    padding: 25px 0;
}

.accordion-btn.active + .accordion-content {
    max-height: 300px;
}

/* Download Button */
.cheatsheets-download {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 280px;
    margin: 40px auto 0 auto;
    padding: 22px 50px;
    background-color: var(--blue);
    border: 4px solid var(--black);
    border-radius: 60px;
    font-family: var(--font-family);
    font-size: 26px;
    font-weight: 800;
    color: var(--black);
    text-decoration: none;
    box-shadow: 5px 5px 0 var(--black);
    transition: all 0.3s ease;
}

.cheatsheets-download:hover {
    transform: translateY(-4px);
    box-shadow: 8px 8px 0 var(--black);
    background-color: var(--pink);
}

.cheatsheets-download:active {
    transform: translateY(-1px);
    box-shadow: 3px 3px 0 var(--black);
}

/* Right - Image */
.cheatsheets-image {
    flex: 1;
    max-width: 600px;
}

.cheatsheets-image img {
    width: 100%;
    height: auto;
}

/* Responsive */
@media (max-width: 1100px) {
    .cheatsheets-container {
        flex-direction: column-reverse;
    }
    
    .cheatsheets-accordions {
        max-width: 100%;
        width: 100%;
    }
    
    .cheatsheets-image {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .cheatsheets-section {
        padding: 60px 20px;
    }
    
    .cheatsheets-title {
        font-size: 36px;
    }
    
    .cheatsheets-subtitle {
        font-size: 18px;
    }
    
    .accordion-btn {
        font-size: 24px;
        padding: 20px 25px;
    }
    
    .accordion-arrow {
        width: 24px;
        height: 24px;
    }
    
    .accordion-content p {
        font-size: 16px;
    }
    
    .cheatsheets-download {
        font-size: 20px;
        padding: 18px 40px;
    }
}

@media (max-width: 480px) {
    .cheatsheets-title {
        font-size: 28px;
    }
    
    .accordion-btn {
        font-size: 20px;
        padding: 18px 20px;
    }
}
/* ===== SECTION 7 - PLAYGROUND ===== */
.playground-section {
    padding: 100px 60px;
    background-color: transparent;
    position: relative;
    z-index: 1;
}

.playground-header {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 80px auto;
}

.playground-title {
    font-family: var(--font-family);
    font-size: 56px;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 25px;
    line-height: 1.1;
}

.playground-subtitle {
    font-family: var(--font-family);
    font-size: 22px;
    font-weight: 400;
    color: var(--darkgray);
    line-height: 1.6;
}

.playground-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Left - Features */
.playground-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 25px;
}

.feature-icon {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: transparent;
    border: 5px solid;
    transition: transform 0.3s ease;
}

.feature-icon span {
    font-size: 50px;
    line-height: 1;
}

.feature-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

/* Border colors - transparent circles */
.feature-pink { border-color: var(--pink); }
.feature-lime { border-color: var(--lime); }
.feature-orange { border-color: var(--orange); }
.feature-blue { border-color: var(--blue); }

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-text h3 {
    font-family: var(--font-family);
    font-size: 28px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 5px;
}

.feature-text p {
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 400;
    color: var(--darkgray);
}

/* Right - Video */
.playground-video {
    flex: 1.2;
    max-width: 700px;
}

.playground-video video {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 10px 10px 0 var(--black);
}



/* Responsive */
@media (max-width: 1100px) {
    .playground-container {
        flex-direction: column;
    }
    
    .playground-features {
        width: 100%;
    }
    
    .playground-image {
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .playground-section {
        padding: 60px 20px;
    }
    
    .playground-title {
        font-size: 36px;
    }
    
    .playground-subtitle {
        font-size: 18px;
    }
    
    .feature-icon {
    width: 100px;
    height: 100px;
    border-width: 4px;
}

    .feature-icon span {
        font-size: 40px;
    }

    .feature-icon img {
        width: 40px;
        height: 40px;
    }
    
    .feature-text h3 {
        font-size: 22px;
    }
    
    .feature-text p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .playground-title {
        font-size: 28px;
    }
    
    .feature-item {
        gap: 15px;
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
    }

    .feature-icon span {
        font-size: 32px;
    }

    .feature-icon img {
        width: 35px;
        height: 35px;
    }
    
    .feature-text h3 {
        font-size: 18px;
    }
    
    .feature-text p {
        font-size: 14px;
    }
}
/* ===== SECTION 8 - FEATURES CAROUSEL ===== */
.features-carousel-section {
    padding: 100px 0;
    background-color: transparent;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.features-carousel-title {
    font-family: var(--font-family);
    font-size: 140px;
    font-weight: 900;
    color: var(--black);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1;
}

.features-carousel-subtitle {
    font-family: var(--font-family);
    font-size: 22px;
    font-weight: 400;
    color: var(--darkgray);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
}
.play-word {
    display: inline-block;
    margin-right: 0.3em;
}

.play-sub-word {
    display: inline-block;
    margin-right: 0.25em;
}

.playground-image {
    will-change: transform;
    transform-style: preserve-3d;
}

.feature-item {
    will-change: transform;
}

.feature-icon {
    will-change: transform;
}

/* Carousel Wrapper */
.carousel-wrapper {
    position: relative;
    width: 100%;
}

/* Carousel Buttons */
.carousel-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 4px solid var(--black);
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 5px 5px 0 var(--black);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.carousel-prev {
    left: 30px;
}

.carousel-next {
    right: 30px;
}

.carousel-btn svg {
    width: 32px;
    height: 32px;
}

.carousel-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 8px 8px 0 var(--black);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
    box-shadow: 2px 2px 0 var(--black);
}

/* Carousel Container */
.carousel-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    padding: 20px 0 40px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-container:active {
    cursor: grabbing;
}

.carousel-track {
    display: flex;
    gap: 40px;
    padding: 0 60px;
    width: max-content;
}

/* Carousel Cards */
.carousel-card {
    flex-shrink: 0;
    width: 450px;
    height: 500px;
    border-radius: 40px;
    border: 5px solid var(--black);
    padding: 40px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 10px 10px 0 var(--black);
    user-select: none;
}

.carousel-card:hover {
    transform: translateY(-15px) rotate(-2deg);
    box-shadow: 15px 20px 0 var(--black);
}

.carousel-card h3 {
    font-family: var(--font-family);
    font-size: 36px;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 20px;
    text-decoration: none;
}

.carousel-card p {
    font-family: var(--font-family);
    font-size: 22px;
    font-weight: 500;
    color: var(--black);
    line-height: 1.5;
    text-decoration: none;
}

/* Remove underline from carousel links */
.carousel-track a {
    text-decoration: none !important;
    color: inherit;
}

.carousel-track a:hover,
.carousel-track a:visited,
.carousel-track a:active {
    text-decoration: none !important;
}

a .carousel-card,
a .carousel-card h3,
a .carousel-card p {
    text-decoration: none !important;
}

/* Card Colors */
.card-lime { background-color: var(--lime); }
.card-blue { background-color: var(--blue); }
.card-orange { background-color: var(--orange); }
.card-pink { background-color: var(--pink); }

/* Card Sticker */
.card-sticker {
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: 150px;
    height: 150px;
}

.card-sticker img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.carousel-card:hover .card-sticker img {
    transform: scale(1.2) rotate(10deg);
}

/* Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--darkgray);
    opacity: 0.3;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    opacity: 1;
    background-color: var(--black);
    transform: scale(1.3);
}

.dot:hover {
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 1400px) {
    .carousel-card {
        width: 400px;
        height: 450px;
    }
    
    .carousel-card h3 {
        font-size: 30px;
    }
    
    .carousel-card p {
        font-size: 18px;
    }
    
    .card-sticker {
        width: 130px;
        height: 130px;
    }
}

@media (max-width: 1100px) {
    .features-carousel-title {
        font-size: 100px;
    }
    
    .carousel-card {
        width: 350px;
        height: 400px;
        padding: 30px;
    }
    
    .carousel-card h3 {
        font-size: 26px;
    }
    
    .carousel-card p {
        font-size: 16px;
    }
    
    .card-sticker {
        width: 110px;
        height: 110px;
    }
}

@media (max-width: 900px) {
    .features-carousel-section {
        padding: 60px 0;
    }
    
    .features-carousel-title {
        font-size: 70px;
    }
    
    .carousel-btn {
        width: 55px;
        height: 55px;
    }
    
    .carousel-prev {
        left: 15px;
    }
    
    .carousel-next {
        right: 15px;
    }
    
    .carousel-btn svg {
        width: 26px;
        height: 26px;
    }
    
    .carousel-card {
        width: 300px;
        height: 360px;
    }
    
    .carousel-track {
        gap: 25px;
        padding: 0 40px;
    }
    
    .carousel-card h3 {
        font-size: 22px;
    }
    
    .carousel-card p {
        font-size: 15px;
    }
    
    .card-sticker {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 600px) {
    .features-carousel-title {
        font-size: 50px;
    }
    
    .features-carousel-subtitle {
        font-size: 16px;
    }
    
    .carousel-btn {
        display: none;
    }
    
    .carousel-card {
        width: 280px;
        height: 320px;
        padding: 25px;
        border-radius: 30px;
    }
    
    .carousel-track {
        padding: 0 20px;
        gap: 20px;
    }
    
    .carousel-card h3 {
        font-size: 20px;
    }
    
    .carousel-card p {
        font-size: 14px;
    }
    
    .card-sticker {
        width: 80px;
        height: 80px;
        bottom: 15px;
        right: 15px;
    }
}
/* ===== SECTION 9 - KOODI FAST ===== */
.koodi-fast-section {
    padding: 120px 0;
    background-color: transparent;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.koodi-fast-container {
    display: flex;
    align-items: center;
    gap: 60px;
    min-height: 650px;
    padding: 0 60px;
}

/* Left - Text */
.koodi-fast-text {
    flex: 0 0 420px;
}

.koodi-fast-logo {
    margin-bottom: 40px;
}

.logo-black {
    display: block;
    font-family: var(--font-family);
    font-size: 180px;
    font-weight: 900;
    color: var(--black);
    line-height: 0.9;
}

.logo-colorful {
    display: block;
    font-family: var(--font-family);
    font-size: 180px;
    font-weight: 900;
    line-height: 0.9;
}

.letter-pink { color: var(--pink); }
.letter-orange { color: var(--orange); }
.letter-lime { color: var(--lime); }
.letter-blue { color: var(--blue); }

.koodi-fast-desc {
    font-family: var(--font-family);
    font-size: 22px;
    font-weight: 500;
    color: var(--black);
    line-height: 1.5;
    margin-bottom: 40px;
}

.koodi-fast-btn {
    display: inline-block;
    padding: 20px 55px;
    background-color: var(--lime);
    border: 4px solid var(--black);
    border-radius: 60px;
    font-family: var(--font-family);
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
    box-shadow: 5px 5px 0 var(--black);
    transition: all 0.3s ease;
}

.koodi-fast-btn:hover {
    transform: translateY(-4px);
    box-shadow: 8px 8px 0 var(--black);
}

/* Right - Slush.app Style Vertical Card Deck */
.fast-slider-wrapper {
    flex: 1;
    position: relative;
    height: 580px;
    overflow: visible;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
    perspective: 1200px;
    perspective-origin: 50% 20%;
}

.fast-slider-wrapper:active {
    cursor: grabbing;
}

.fast-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

/* Fast Card - Slush.app style: cards stack VERTICALLY with 3D depth */
.fast-card {
    position: absolute;
    left: 50%;
    top: 0;
    width: 380px;
    height: 520px;
    margin-left: -190px;
    text-decoration: none;
    transform-style: preserve-3d;
    transform-origin: center top;
    will-change: transform, opacity;
    backface-visibility: hidden;
    /* Smooth transitions for all transforms */
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1),
                opacity 0.5s ease,
                filter 0.5s ease;
}

.fast-card-inner {
    width: 100%;
    height: 100%;
    border-radius: 45px;
    border: 5px solid var(--black);
    padding: 35px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.4),
                8px 8px 0 var(--black);
    transform-style: preserve-3d;
}

/* Card Colors */
.fast-card-inner.card-lime { background-color: var(--lime); }
.fast-card-inner.card-blue { background-color: var(--blue); }
.fast-card-inner.card-orange { background-color: var(--orange); }
.fast-card-inner.card-pink { background-color: var(--pink); }

/* Card Top */
.fast-card-top {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.fast-card-icon {
    font-size: 85px;
    margin-bottom: 15px;
}

.fast-card-top h3 {
    font-family: var(--font-family);
    font-size: 30px;
    font-weight: 900;
    color: var(--black);
    line-height: 1.1;
}

/* Card Bottom */
.fast-card-bottom {
    background-color: var(--black);
    border-radius: 25px;
    padding: 22px;
    margin-top: auto;
}

.fast-card-bottom p {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 12px;
}

.fast-card-meta {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
}

/* Badges */
.fast-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px 16px;
    border-radius: 25px;
    font-family: var(--font-family);
    font-size: 13px;
    font-weight: 700;
    background-color: var(--black);
    color: var(--white);
}

/* Navigation - positioned at bottom center */
.fast-nav {
    position: absolute;
    bottom: -90px;
    left: 50%;
    transform: translateX(-50%);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 4px solid var(--black);
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 5px 5px 0 var(--black);
    transition: all 0.3s ease;
    z-index: 100;
}

.fast-nav svg {
    width: 28px;
    height: 28px;
    transform: rotate(90deg); /* Arrow points down */
}

.fast-nav-next {
    right: auto;
}

.fast-nav:hover {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 7px 7px 0 var(--black);
}

/* Responsive */
@media (max-width: 1400px) {
    .koodi-fast-text { flex: 0 0 380px; }
    .logo-black, .logo-colorful { font-size: 90px; }
    .fast-card { width: 340px; height: 480px; margin-left: -170px; }
}

@media (max-width: 1100px) {
    .koodi-fast-section { padding: 80px 0; }
    .koodi-fast-container { flex-direction: column; padding: 0 30px; }
    .koodi-fast-text { flex: none; text-align: center; max-width: 550px; }
    .fast-slider-wrapper { width: 100%; height: 520px; }
    .fast-card { width: 320px; height: 460px; margin-left: -160px; }
}

@media (max-width: 768px) {
    .logo-black, .logo-colorful { font-size: 65px; }
    .koodi-fast-desc { font-size: 18px; }
    .fast-slider-wrapper { height: 460px; }
    .fast-card { width: 290px; height: 420px; margin-left: -145px; }
    .fast-card-inner { padding: 25px; border-radius: 35px; }
    .fast-card-icon { font-size: 60px; }
    .fast-card-top h3 { font-size: 24px; }
    .fast-nav { width: 55px; height: 55px; bottom: -70px; }
}
/* ===== SECTION 10 - GROW TEXT ===== */
.grow-section {
    padding: 200px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.grow-text {
    font-family: var(--font-family);
    font-size: 350px;
    font-weight: 900;
    color: var(--black);
    text-align: center;
    line-height: 1;
    letter-spacing: -8px;
}

.grow-letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(100px) rotate(10deg);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.grow-letter.visible {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
}

/* Responsive */
@media (max-width: 1400px) {
    .grow-text {
        font-size: 280px;
    }
}

@media (max-width: 1100px) {
    .grow-section {
        padding: 150px 20px;
    }

    .grow-text {
        font-size: 200px;
    }
}

@media (max-width: 768px) {
    .grow-section {
        padding: 100px 15px;
    }

    .grow-text {
        font-size: 120px;
        letter-spacing: -3px;
    }
}

@media (max-width: 480px) {
    .grow-text {
        font-size: 80px;
    }
}
/* ===== SECTION 11 - DOWNLOAD APP ===== */
.download-section {
    position: relative;
    min-height: 750px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 1;
    padding: 80px 20px;
}

.download-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 90%;
    z-index: 0;
    pointer-events: none;
}

.download-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.download-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.download-title {
    font-family: var(--font-family);
    font-size: 72px;
    font-weight: 900;
    color: var(--black);
    line-height: 1.1;
    margin-bottom: 45px;
    max-width: 750px;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 30px;
    background: var(--white);
    border: 4px solid var(--black);
    border-radius: 60px;
    text-decoration: none;
    box-shadow: 5px 5px 0 var(--black);
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-4px);
    box-shadow: 8px 8px 0 var(--black);
}

.download-btn:active {
    transform: translateY(-1px);
    box-shadow: 3px 3px 0 var(--black);
}

.download-icon {
    width: 32px;
    height: 32px;
    color: var(--black);
}

.download-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.download-btn-small {
    font-family: var(--font-family);
    font-size: 12px;
    font-weight: 600;
    color: var(--black);
    line-height: 1;
}

.download-btn-big {
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 800;
    color: var(--black);
    line-height: 1.2;
}

/* Responsive */
@media (max-width: 1100px) {
    .download-section {
        min-height: 650px;
    }
    
    .download-title {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .download-section {
        min-height: 550px;
        padding: 60px 20px;
    }
    
    .download-title {
        font-size: 40px;
        margin-bottom: 35px;
    }
    
    .download-btn {
        padding: 14px 24px;
        border-width: 3px;
        box-shadow: 4px 4px 0 var(--black);
    }
    
    .download-icon {
        width: 28px;
        height: 28px;
    }
    
    .download-btn-big {
        font-size: 16px;
    }
    
    .download-bg {
        width: 150%;
        height: 150%;
    }
}

@media (max-width: 480px) {
    .download-title {
        font-size: 32px;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .download-btn {
        width: 100%;
        max-width: 240px;
        justify-content: center;
    }
}
/* ===== SECTION 12 - APP SHOWCASE ===== */
.showcase-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 60px 20px;
}

.showcase-video {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
}

.showcase-video video {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
}

@media (max-width: 768px) {
    .showcase-section {
        min-height: auto;
        padding: 40px 15px;
    }
    
    .showcase-video video {
        max-height: 60vh;
    }
}
.showcase-video {
    will-change: transform;
    transform-style: preserve-3d;
}

/* Pills */
.marquee-pill {
    flex-shrink: 0;
    width: 180px;
    height: 55px;
    border-radius: 60px;
}

.pill-blue { background-color: var(--blue); }
.pill-lime { background-color: var(--lime); }
.pill-orange { background-color: var(--orange); }
.pill-pink { background-color: var(--pink); }

/* Center Image */
.showcase-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.showcase-image img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
}

.koodi-club-character {
    will-change: transform;
    transform-style: preserve-3d;
}

/* Responsive */
@media (max-width: 1100px) {
    .showcase-section {
        min-height: 80vh;
    }
    
    .marquee-pill {
        width: 150px;
        height: 45px;
    }
}

@media (max-width: 768px) {
    .showcase-section {
        min-height: 70vh;
    }
    
    .marquee-pill {
        width: 120px;
        height: 40px;
    }
    
    .showcase-image img {
        max-height: 60vh;
    }
}

@media (max-width: 480px) {
    .marquee-pill {
        width: 100px;
        height: 35px;
    }
}

/* ===== SECTION 13 - KOODI CLUB ===== */
.koodi-club-section {
    padding: 120px 60px;
    background-color: transparent;
    position: relative;
    z-index: 1;
}

.koodi-club-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

/* Left - Character */
.koodi-club-character {
    flex: 1;
    max-width: 550px;
}

.koodi-club-character img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Right - Text */
.koodi-club-text {
    flex: 1;
    max-width: 600px;
    text-align: right;
}

.koodi-club-logo {
    margin-bottom: 35px;
}

.club-logo-black {
    display: block;
    font-family: var(--font-family);
    font-size: 100px;
    font-weight: 900;
    color: var(--black);
    line-height: 0.95;
}

.club-logo-pink {
    display: block;
    font-family: var(--font-family);
    font-size: 100px;
    font-weight: 900;
    color: var(--pink);
    line-height: 0.95;
}

.koodi-club-desc {
    font-family: var(--font-family);
    font-size: 22px;
    font-weight: 600;
    color: var(--black);
    line-height: 1.5;
    margin-bottom: 45px;
}

.koodi-club-btn {
    display: inline-block;
    padding: 22px 55px;
    background-color: var(--pink);
    border: 4px solid var(--black);
    border-radius: 60px;
    font-family: var(--font-family);
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
    box-shadow: 6px 6px 0 var(--black);
    transition: all 0.3s ease;
}

.koodi-club-btn:hover {
    transform: translateY(-5px);
    box-shadow: 10px 10px 0 var(--black);
    background-color: var(--lime);
}

.koodi-club-btn:active {
    transform: translateY(-2px);
    box-shadow: 4px 4px 0 var(--black);
}

/* Responsive */
@media (max-width: 1200px) {
    .koodi-club-container {
        gap: 50px;
    }

    .club-logo-black,
    .club-logo-pink {
        font-size: 80px;
    }

    .koodi-club-character {
        max-width: 450px;
    }
}

@media (max-width: 1000px) {
    .koodi-club-section {
        padding: 80px 30px;
    }

    .koodi-club-container {
        flex-direction: column;
        text-align: center;
    }

    .koodi-club-text {
        text-align: center;
        max-width: 100%;
    }

    .koodi-club-character {
        max-width: 400px;
    }

    .club-logo-black,
    .club-logo-pink {
        font-size: 70px;
    }
}

@media (max-width: 768px) {
    .koodi-club-section {
        padding: 60px 20px;
    }

    .club-logo-black,
    .club-logo-pink {
        font-size: 55px;
    }

    .koodi-club-desc {
        font-size: 18px;
        margin-bottom: 35px;
    }

    .koodi-club-btn {
        font-size: 18px;
        padding: 18px 40px;
    }

    .koodi-club-character {
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .club-logo-black,
    .club-logo-pink {
        font-size: 42px;
    }

    .koodi-club-desc {
        font-size: 16px;
    }

    .koodi-club-btn {
        font-size: 16px;
        padding: 16px 35px;
        box-shadow: 4px 4px 0 var(--black);
    }

    .koodi-club-character {
        max-width: 260px;
    }
}

/* ===== SECTION 14 - SLUSH STYLE MARQUEE ===== */
.slush-marquee-section {
    padding: 20px 0;
    background-color: transparent;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.slush-row {
    display: flex;
    width: 100%;
    margin: 4px 0;
}

.slush-track {
    display: flex;
    gap: 4px;
    width: max-content;
}

.slush-row-right .slush-track {
    animation: slushMoveRight 35s linear infinite;
}

.slush-row-left .slush-track {
    animation: slushMoveLeft 35s linear infinite;
}

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

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

/* Slush Item */
.slush-item {
    flex-shrink: 0;
    padding: 40px 65px;
    border-radius: 20px;
    border: 5px solid var(--black);
    font-family: var(--font-family);
    font-size: 80px;
    font-weight: 900;
    color: var(--black);
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 8px 8px 0 var(--black);
    transition: transform 0.3s ease,
                box-shadow 0.3s ease,
                background-color 0.3s ease;
}

/* Colors */
.slush-lime { background-color: var(--lime); }
.slush-pink { background-color: var(--pink); }
.slush-blue { background-color: var(--blue); }
.slush-orange { background-color: var(--orange); }

/* Hover - lift up and change color */
.slush-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 12px 16px 0 var(--black);
}

.slush-lime:hover { background-color: var(--pink); }
.slush-pink:hover { background-color: var(--lime); }
.slush-blue:hover { background-color: var(--orange); }
.slush-orange:hover { background-color: var(--blue); }

/* Pause animation on hover */
.slush-row:hover .slush-track {
    animation-play-state: paused;
}

/* Responsive */
@media (max-width: 1400px) {
    .slush-item {
        padding: 35px 55px;
        font-size: 65px;
    }
}

@media (max-width: 1100px) {
    .slush-item {
        padding: 28px 45px;
        font-size: 50px;
        box-shadow: 6px 6px 0 var(--black);
    }

    .slush-item:hover {
        box-shadow: 10px 12px 0 var(--black);
    }
}

@media (max-width: 768px) {
    .slush-marquee-section {
        padding: 15px 0;
    }

    .slush-row {
        margin: 3px 0;
    }

    .slush-track {
        gap: 3px;
    }

    .slush-item {
        padding: 22px 35px;
        font-size: 36px;
        border-radius: 14px;
        border-width: 4px;
        box-shadow: 5px 5px 0 var(--black);
    }

    .slush-item:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 8px 10px 0 var(--black);
    }
}

@media (max-width: 480px) {
    .slush-track {
        gap: 3px;
    }

    .slush-item {
        padding: 16px 24px;
        font-size: 26px;
        border-radius: 12px;
        border-width: 3px;
        box-shadow: 4px 4px 0 var(--black);
    }

    .slush-item:hover {
        transform: translateY(-4px) scale(1.01);
        box-shadow: 6px 8px 0 var(--black);
    }
}

/* ===== FOOTER ===== */
.site-footer {
    padding: 50px 60px;
    background-color: var(--white);
    position: relative;
    z-index: 1;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 25px;
    max-width: 1800px;
    margin: 0 auto;
}

/* Left - Social Icons Grid */
.footer-socials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    flex-shrink: 0;
}

.social-box {
    width: 320px;
    height: 320px;
    border-radius: 45px;
    border: 6px solid var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 10px 10px 0 var(--black);
    text-decoration: none;
}

.social-box svg {
    width: 160px;
    height: 160px;
    color: var(--black);
}

.social-box.social-pink { background-color: var(--pink); }
.social-box.social-lime { background-color: var(--lime); }
.social-box.social-blue { background-color: var(--blue); }
.social-box.social-orange { background-color: var(--orange); }

.social-box:hover {
    transform: translateY(-5px);
    box-shadow: 12px 12px 0 var(--black);
}

/* Right - Info Block */
.footer-info {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding: 30px 50px;
    border: 5px solid var(--black);
    border-radius: 35px;
}

.footer-info-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.footer-logo img {
    height: 160px;
    width: auto;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.footer-nav a {
    font-family: var(--font-family);
    font-size: 36px;
    font-weight: 900;
    font-style: italic;
    color: var(--black);
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.1;
}

.footer-nav a:hover {
    color: var(--pink);
}

.footer-bottom {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: auto;
}

.footer-bottom span,
.footer-bottom a {
    font-family: var(--font-family);
    font-size: 20px;
    font-weight: 600;
    font-style: italic;
    color: var(--black);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--pink);
}

/* Footer Responsive */
@media (max-width: 1600px) {
    .social-box {
        width: 280px;
        height: 280px;
    }

    .social-box svg {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 1400px) {
    .social-box {
        width: 240px;
        height: 240px;
        border-radius: 38px;
    }

    .social-box svg {
        width: 120px;
        height: 120px;
    }

    .footer-nav a {
        font-size: 32px;
    }
}

@media (max-width: 1200px) {
    .site-footer {
        padding: 40px;
    }

    .social-box {
        width: 200px;
        height: 200px;
        border-radius: 32px;
    }

    .social-box svg {
        width: 100px;
        height: 100px;
    }

    .footer-nav a {
        font-size: 28px;
    }
}

@media (max-width: 1100px) {
    .site-footer {
        padding: 40px 30px;
    }

    .footer-container {
        gap: 20px;
    }

    .social-box {
        width: 170px;
        height: 170px;
        border-radius: 28px;
    }

    .social-box svg {
        width: 85px;
        height: 85px;
    }

    .footer-nav a {
        font-size: 24px;
    }

    .footer-logo img {
        height: 70px;
    }

    .footer-info {
        padding: 25px 35px;
    }
}

@media (max-width: 900px) {
    .social-box {
        width: 150px;
        height: 150px;
    }

    .social-box svg {
        width: 75px;
        height: 75px;
    }

    .footer-nav a {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 30px 20px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .footer-socials {
        order: 2;
    }

    .footer-info {
        order: 1;
        width: 100%;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px;
        min-height: auto;
        gap: 25px;
    }

    .footer-info-left {
        align-items: center;
        gap: 20px;
    }

    .footer-nav {
        align-items: center;
    }

    .footer-nav a {
        font-size: 22px;
    }

    .social-box {
        width: 140px;
        height: 140px;
        border-radius: 22px;
    }

    .social-box svg {
        width: 65px;
        height: 65px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

    .footer-bottom span,
    .footer-bottom a {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .footer-socials {
        gap: 10px;
    }

    .social-box {
        width: 110px;
        height: 110px;
        border-radius: 18px;
        border-width: 4px;
        box-shadow: 5px 5px 0 var(--black);
    }

    .social-box svg {
        width: 50px;
        height: 50px;
    }

    .footer-nav a {
        font-size: 18px;
    }

    .footer-info {
        border-width: 4px;
        border-radius: 20px;
    }

    .footer-logo img {
        height: 50px;
    }
}
/* Hero Animations */
.hero-title {
    perspective: 1000px;
}

.hero-char {
    display: inline-block;
    transform-style: preserve-3d;
}

.floating-icon {
    will-change: transform;
}

/* Magnetic button reset */
.cta-buttons .btn {
    will-change: transform;
}
