:root {
    --bg-dark: #05070f;
    --bg-alt: #0d101d;
    --accent: #ff7f50;
    --accent-secondary: #8d9dff;
    --text-main: #f5f7ff;
    --text-muted: #a9b1d6;
    --border: rgba(255, 255, 255, 0.12);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --shadow-soft: 0 25px 60px rgba(0, 0, 0, 0.45);
    --shadow-tiny: 0 6px 18px rgba(0, 0, 0, 0.25);
    --transition: all 0.3s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-main);
    background: var(--bg-dark);
    line-height: 1.6;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(18px);
    background: rgba(5, 7, 15, 0.82);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
    overflow: visible;
}

.site-header::before {
    content: '';
    position: absolute;
    inset: -140% 45% auto -40%;
    height: 360%;
    background: radial-gradient(circle at center, rgba(141, 157, 255, 0.42), rgba(255, 127, 80, 0) 55%);
    transform: rotate(12deg);
    pointer-events: none;
    opacity: 0.45;
}

.header-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    z-index: 101;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
    transition: none;
}

.logo:hover,
.logo:focus-visible {
    transform: none;
    box-shadow: none;
}

.logo-title {
    font-size: 0.92rem;
    letter-spacing: 0.16em;
}

.logo-year {
    font-size: 0.9rem;
    color: var(--accent-secondary);
    text-shadow: 0 0 18px rgba(141, 157, 255, 0.45);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    position: relative;
    -webkit-tap-highlight-color: rgba(255, 127, 80, 0.2);
    touch-action: manipulation;
}

.menu-toggle-bar {
    width: 100%;
    height: 3px;
    background: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

.main-nav {
    display: flex;
    gap: 24px;
}

.nav-link {
    font-weight: 500;
    opacity: 0.7;
    position: relative;
    padding-bottom: 4px;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
    opacity: 1;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after {
    width: 100%;
}

.header-meta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    border-radius: 0;
    background: none;
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(241, 244, 255, 0.86);
    box-shadow: none;
}

.header-meta-dot {
    display: none;
}

.header-meta-year {
    font-weight: 700;
    color: var(--accent);
}


.hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding: 140px 32px 160px;
    background: url('images/hero-background.jpg') center / cover no-repeat;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/hero-background.jpg') center / cover no-repeat;
    filter: blur(8px);
    -webkit-filter: blur(8px);
    transform: scale(1.1);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 7, 15, 0.12), rgba(5, 7, 15, 0.32));
    z-index: 1;
}

.hero-layout {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1180px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 36px;
}

.hero-frame {
    flex: 1 1 520px;
    max-width: 620px;
    background: linear-gradient(150deg, rgba(9, 12, 24, 0.82), rgba(9, 13, 26, 0.6));
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-lg);
    padding: 38px 40px 42px;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
}

.hero-content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-title {
    margin: 0;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    line-height: 1.1;
    font-weight: 700;
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    text-transform: uppercase;
}

.hero-title-line {
    display: inline-block;
}

.hero-title-animated {
    background: linear-gradient(120deg, var(--accent) 10%, var(--accent-secondary) 80%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: titleFade 1.4s ease forwards;
    transform-origin: left center;
    opacity: 0;
}

@keyframes titleFade {
    0% {
        opacity: 0;
        transform: translateY(18px) scale(0.96);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.page-fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

.page-fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.page-fade-in-delay-1 {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.1s forwards;
}

.page-fade-in-delay-2 {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.page-fade-in-delay-3 {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

.page-fade-in-delay-4 {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.page-fade-in-left {
    opacity: 0;
    animation: fadeInLeft 0.8s ease forwards;
}

.page-fade-in-right {
    opacity: 0;
    animation: fadeInRight 0.8s ease forwards;
}

@media (prefers-reduced-motion: reduce) {
    .page-fade-in,
    .page-fade-in-up,
    .page-fade-in-delay-1,
    .page-fade-in-delay-2,
    .page-fade-in-delay-3,
    .page-fade-in-delay-4,
    .page-fade-in-left,
    .page-fade-in-right {
        animation: none;
        opacity: 1;
    }
}

.hero-subtitle {
    margin: 0;
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 540px;
}

.hero-cta {
    margin-top: 12px;
}

.hero-actions {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 12px;
}

.hero-actions .hero-cta {
    margin-top: 0;
}

.hero-visual {
    flex: 1 1 420px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(5, 7, 15, 0.65));
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.hero-visual-gallery {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-visual-gallery img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 105%;
    height: 105%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: saturate(1.08) brightness(1.1);
}

@media (prefers-reduced-motion: reduce) {
    .hero-visual-gallery img {
        transition: none;
    }
}

.hero-visual::before,
.hero-visual::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(0);
    opacity: 0.65;
}

.hero-visual::before {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle at center, rgba(255, 127, 80, 0.18), transparent 68%);
    top: -60px;
    left: -40px;
}

.hero-visual::after {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle at center, rgba(141, 157, 255, 0.22), transparent 70%);
    bottom: -100px;
    right: -40px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(120deg, var(--accent), var(--accent-secondary));
    color: var(--bg-dark);
    font-weight: 600;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    -webkit-tap-highlight-color: rgba(255, 127, 80, 0.2);
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
}

.hero-cta:hover,
.hero-cta:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 32px 60px rgba(141, 157, 255, 0.35);
}

.hero-cta-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: var(--shadow-tiny);
}

.hero-cta-secondary:hover,
.hero-cta-secondary:focus-visible {
    box-shadow: 0 28px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(141, 157, 255, 0.5);
}

/* --- Blendrix Mini Game --- */
.blend-game {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(130deg, rgba(13, 16, 29, 0.95), rgba(7, 9, 19, 0.88));
    border-block: 1px solid rgba(255, 255, 255, 0.06);
    overflow-x: hidden;
    overflow-y: visible;
}

.blend-game::before,
.blend-game::after {
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
}

.blend-game::before {
    top: -160px;
    right: -120px;
    background: radial-gradient(circle at center, rgba(141, 157, 255, 0.6), transparent 65%);
}

.blend-game::after {
    bottom: -200px;
    left: -80px;
    background: radial-gradient(circle at center, rgba(255, 127, 80, 0.55), transparent 70%);
}

.blend-game-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 48px;
    width: 100%;
    box-sizing: border-box;
}

.blend-game-head {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.blend-game-intro {
    max-width: 640px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.blend-game-tag {
    align-self: flex-start;
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(120deg, rgba(255, 127, 80, 0.25), rgba(141, 157, 255, 0.25));
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
}

.blend-game-title {
    margin: 0;
    font-size: clamp(2rem, 1.4rem + 2vw, 2.8rem);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.blend-game-description {
    margin: 0;
    color: var(--text-muted);
    max-width: 520px;
}

.blend-game-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 22px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(9, 12, 24, 0.7);
    box-shadow: var(--shadow-tiny);
}

.blend-game-counter {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.counter-label {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(241, 244, 255, 0.7);
}

.counter-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
}

.counter-value.is-updated {
    animation: scorePop 0.6s ease;
}

@keyframes scorePop {
    0% {
        transform: scale(1);
    }
    40% {
        transform: scale(1.16);
    }
    100% {
        transform: scale(1);
    }
}

.blend-reset {
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(13, 16, 29, 0.8);
    color: var(--text-main);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.blend-reset:hover,
.blend-reset:focus-visible {
    border-color: rgba(255, 127, 80, 0.6);
    transform: translateY(-1px);
}

.blend-game-stage {
    display: grid;
    grid-template-columns: minmax(260px, 0.95fr) minmax(320px, 1.05fr);
    gap: 32px;
    width: 100%;
    min-width: 0;
}

.fruit-panel {
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(135deg, rgba(12, 15, 28, 0.92), rgba(8, 10, 21, 0.92));
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
}

.fruit-panel-title {
    margin: 0;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fruit-panel-hint {
    margin: 8px 0 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.mobile-scroll-hint {
    display: none;
}

.fruit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    position: relative;
}

.fruit-token {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    font-weight: 600;
    font-size: 1rem;
    cursor: grab;
    transition: border-color 0.25s ease, transform 0.2s ease, background 0.25s ease;
    touch-action: pan-y;
    overflow: visible;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
}

.fruit-token:focus-visible {
    outline: none;
    border-color: rgba(255, 127, 80, 0.6);
    box-shadow: 0 0 0 4px rgba(255, 127, 80, 0.18);
}

.fruit-token:hover {
    border-color: rgba(141, 157, 255, 0.6);
    transform: translateY(-3px);
}

.fruit-token:active {
    cursor: grabbing;
}

.fruit-token.is-dragging {
    opacity: 0.5;
    transform: scale(0.96);
}

.fruit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-size: 1.7rem;
    line-height: 1;
}

.fruit-name {
    flex: 1;
}

.fruit-token::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(120deg, rgba(255, 127, 80, 0.16), rgba(141, 157, 255, 0.16));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.fruit-token:hover::after,
.fruit-token.is-dragging::after {
    opacity: 1;
}

.fruit-tip {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.fruit-token-bounce {
    animation: fruitBounce 0.5s ease;
}

@keyframes fruitBounce {
    0%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    70% {
        transform: translateY(3px);
    }
}

.fruit-avatar {
    position: fixed;
    z-index: 15;
    pointer-events: none;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text-main);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    transition: transform 0.24s ease, opacity 0.24s ease;
}

.blender-panel {
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(140deg, rgba(10, 12, 24, 0.92), rgba(7, 9, 20, 0.92));
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: relative;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
}

.blender-dropzone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 28px 24px 36px;
    border-radius: var(--radius-md);
    border: 1px dashed rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.03);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: visible;
    width: 100%;
    box-sizing: border-box;
}

.blender-dropzone::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(255, 127, 80, 0.12), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blender-dropzone.dropzone-pulse::before {
    opacity: 1;
}

.blender-dropzone.dropzone-pulse {
    animation: dropPulse 0.6s ease;
}

.blender-dropzone.dropzone-hover {
    border-color: rgba(255, 127, 80, 0.5);
    box-shadow: 0 18px 40px rgba(255, 127, 80, 0.22);
}

@keyframes dropPulse {
    0% {
        box-shadow: 0 0 0 rgba(255, 127, 80, 0);
        border-color: rgba(255, 255, 255, 0.16);
    }
    40% {
        box-shadow: 0 18px 40px rgba(255, 127, 80, 0.25);
        border-color: rgba(255, 127, 80, 0.45);
    }
    100% {
        box-shadow: 0 0 0 rgba(255, 127, 80, 0);
        border-color: rgba(255, 255, 255, 0.16);
    }
}

.blender-vessel {
    position: relative;
    width: clamp(180px, 32vw, 260px);
    height: clamp(220px, 36vw, 320px);
    border-radius: 120px 120px 40px 40px / 200px 200px 40px 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
    box-shadow: inset 0 0 36px rgba(255, 255, 255, 0.12), 0 24px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin: 0 auto;
}

.blender-vessel::after {
    content: '';
    position: absolute;
    bottom: -18px;
    width: 60%;
    height: 30px;
    border-radius: 40px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(8, 10, 21, 0.85));
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.blender-liquid {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 127, 80, 0.85), rgba(141, 157, 255, 0.7));
    opacity: 0;
    transition: height 0.4s ease, opacity 0.4s ease, background 0.4s ease;
    backdrop-filter: blur(2px);
}

.blender-highlight {
    position: absolute;
    inset: 12px 24px;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 70%);
    pointer-events: none;
    opacity: 0.4;
}

.blender-trail {
    position: absolute;
    bottom: 18%;
    display: flex;
    gap: 6px;
    justify-content: center;
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.blender-trail span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
    font-size: 1.2rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
    overflow: visible;
}

.blender-trail span.trail-icon-blueberry {
    background: radial-gradient(circle at 35% 36%, #f8f7ff 0%, #d6ccff 28%, #a78bfa 55%, #7c3aed 78%, #4c1d95 100%);
    border: 1px solid rgba(165, 180, 252, 0.7);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24), 0 0 18px rgba(130, 92, 255, 0.42);
}

.dropzone-hint {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
}

.current-mix {
    padding: 24px 22px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    box-sizing: border-box;
}

.current-mix-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.current-mix-head h3 {
    margin: 0;
    font-size: 1.1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.mix-count {
    font-weight: 600;
    color: var(--accent-secondary);
}

.current-mix-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.current-mix-list li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(13, 16, 29, 0.7);
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    overflow: visible;
}

.mix-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    font-size: 1.2rem;
}

.fruit-icon-blueberry {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 32%, #f7f5ff 0%, #c4b5fd 38%, #8b5cf6 62%, #5b21b6 90%);
    border: 1px solid rgba(165, 180, 252, 0.75);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.26), 0 6px 15px rgba(118, 92, 255, 0.45);
    position: relative;
}

.fruit-icon-blueberry::before,
.mix-icon-blueberry::before,
.trail-icon-blueberry::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    width: 16px;
    height: 13px;
    border-radius: 12px 12px 0 0;
    background: linear-gradient(140deg, #7bd387, #47ad5c);
    transform: translateX(-50%) rotate(-8deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
}

.fruit-icon-blueberry::after,
.mix-icon-blueberry::after,
.trail-icon-blueberry::after {
    content: '';
    position: absolute;
    top: 26%;
    left: 30%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0));
    filter: blur(0.4px);
}

.mix-icon-blueberry {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 32%, #f4f3ff 0%, #c4b5fd 42%, #8b5cf6 66%, #4c1d95 92%);
    border: 1px solid rgba(165, 180, 252, 0.65);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2), 0 4px 10px rgba(118, 92, 255, 0.35);
    position: relative;
}

.trail-icon-blueberry {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 36%, #f8f7ff 0%, #d6ccff 28%, #a78bfa 55%, #7c3aed 78%, #4c1d95 100%);
    border: 1px solid rgba(165, 180, 252, 0.7);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24), 0 0 18px rgba(130, 92, 255, 0.42);
    position: relative;
}

.blend-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    width: 100%;
    box-sizing: border-box;
}

.blend-btn {
    flex: 1;
    min-width: 160px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.3s ease, background 0.3s ease;
    -webkit-tap-highlight-color: rgba(255, 127, 80, 0.2);
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
}

.blend-btn.blend-primary {
    background: linear-gradient(120deg, var(--accent), var(--accent-secondary));
    color: var(--bg-dark);
    box-shadow: 0 22px 40px rgba(141, 157, 255, 0.28);
}

.blend-btn.blend-primary:hover,
.blend-btn.blend-primary:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 32px 60px rgba(141, 157, 255, 0.36);
}

.blend-btn.blend-ghost {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.16);
    color: var(--text-main);
}

.blend-btn.blend-ghost:hover,
.blend-btn.blend-ghost:focus-visible {
    border-color: rgba(255, 127, 80, 0.5);
}

.blend-btn:disabled {
    cursor: not-allowed;
    opacity: 0.55;
    box-shadow: none;
    transform: none;
}

.blend-result {
    min-height: 90px;
    width: 100%;
    box-sizing: border-box;
}

.result-card {
    padding: 22px 24px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(5, 7, 15, 0.4));
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.result-card::after {
    content: '';
    position: absolute;
    inset: -40% 60% -40% -20%;
    background: radial-gradient(circle at center, rgba(255, 127, 80, 0.32), transparent 60%);
    opacity: 0.6;
    pointer-events: none;
}

.result-card.success::after {
    background: radial-gradient(circle at center, rgba(141, 157, 255, 0.4), transparent 65%);
}

.result-card-top {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.result-title {
    margin: 0;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.result-description {
    margin: 6px 0 0;
    color: rgba(241, 244, 255, 0.72);
}

.result-score {
    font-weight: 700;
    color: var(--accent);
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

main {
    display: flex;
    flex-direction: column;
    gap: 120px;
    padding: 0 32px 140px;
}

.section-heading h2 {
    margin: 0 0 32px;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.features {
    max-width: 1180px;
    margin: 0 auto;
}

.feature-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.feature-item {
    padding: 32px 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: rgba(13, 16, 29, 0.8);
    box-shadow: var(--shadow-tiny);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-item h3 {
    margin: 0 0 12px;
    font-size: 1.2rem;
}

.feature-item p {
    margin: 0;
    color: var(--text-muted);
}

.feature-item:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 127, 80, 0.35);
}

.process {
    background: var(--bg-alt);
    border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.process-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 100px 0;
    display: grid;
    gap: 48px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    align-items: center;
}

.process-copy h2 {
    margin: 0 0 18px;
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.process-description {
    margin: 0 0 32px;
    color: var(--text-muted);
}

.process-sequence {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sequence-step {
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(141, 157, 255, 0.15);
    color: var(--text-muted);
    transition: var(--transition);
}

.sequence-step.active {
    color: var(--text-main);
    border-color: rgba(255, 127, 80, 0.5);
    background: rgba(255, 127, 80, 0.08);
    box-shadow: 0 16px 32px rgba(255, 127, 80, 0.12);
}

.process-visual img {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-soft);
    object-fit: cover;
}

.faq {
    max-width: 980px;
    margin: 0 auto;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq details {
    padding: 20px 24px;
    background: rgba(13, 16, 29, 0.85);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: border-color 0.3s ease;
}

.faq summary {
    cursor: pointer;
    font-weight: 600;
    outline: none;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary::after {
    content: '+';
    float: right;
    transition: transform 0.3s ease;
}

.faq details[open] summary::after {
    transform: rotate(45deg);
}

.faq details p {
    margin: 16px 0 0;
    color: var(--text-muted);
}

.faq details[open] {
    border-color: rgba(141, 157, 255, 0.45);
}

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(5, 7, 15, 0.9);
    padding: 80px 32px 100px;
}

.footer-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    text-align: center;
}

.footer-title {
    margin: 0;
    font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.footer-form {
    width: min(100%, 600px);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-form input,
.footer-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(13, 16, 29, 0.6);
    color: var(--text-main);
    font: inherit;
    resize: vertical;
    min-height: 52px;
}

.footer-form textarea {
    min-height: 100px;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
    color: rgba(169, 177, 214, 0.6);
}

.footer-submit {
    align-self: center;
    padding: 12px 24px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(120deg, var(--accent), var(--accent-secondary));
    color: var(--bg-dark);
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.footer-submit:hover,
.footer-submit:focus-visible {
    transform: translateY(-1px);
}

.footer-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.footer-link {
    color: var(--text-main);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease;
    padding: 8px 0;
}

.footer-link:hover,
.footer-link:focus-visible {
    color: var(--accent-secondary);
}

.footer-separator {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 500;
}

.footer-signature {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.cookie-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 7, 15, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    padding: 24px;
    z-index: 20;
}

.cookie-modal.visible {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    max-width: 440px;
    width: 100%;
    background: rgba(13, 16, 29, 0.96);
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.cookie-modal h2 {
    margin: 0 0 12px;
}

.cookie-modal p {
    margin: 0 0 24px;
    color: var(--text-muted);
}

.cookie-accept {
    padding: 12px 28px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(120deg, var(--accent), var(--accent-secondary));
    color: var(--bg-dark);
    font-weight: 600;
    cursor: pointer;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

@media (max-width: 1080px) {
    .blend-game {
        overflow-x: hidden;
        overflow-y: visible;
    }

    .blend-game-inner {
        padding: 0 24px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .blend-game-stage {
        grid-template-columns: 1fr;
        gap: 24px;
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .blend-game-stats {
        width: 100%;
        justify-content: space-between;
    }

    .blender-panel {
        padding: 28px;
    }

    .fruit-panel {
        order: 2;
        width: 100%;
        min-width: 0;
        max-width: 100%;
        box-sizing: border-box;
    }

    .blender-panel {
        order: 1;
        width: 100%;
        min-width: 0;
        max-width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 820px) {
    .menu-toggle {
        display: flex;
    }

    .header-inner {
        flex-wrap: nowrap;
        justify-content: space-between;
        position: relative;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        min-height: 100vh;
        max-height: 100vh;
        background: linear-gradient(135deg, rgba(9, 12, 24, 0.98), rgba(7, 9, 19, 0.98));
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        padding: 80px 24px 40px;
        transform: translateX(-100%);
        transition: transform 0.3s ease, opacity 0.3s ease;
        opacity: 0;
        visibility: hidden;
        z-index: 1001;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
        margin: 0;
        border: none;
    }

    .main-nav.nav-open {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 16px 24px;
        width: 100%;
        text-align: center;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        opacity: 1;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover,
    .nav-link:focus-visible,
    .nav-link.active {
        background: linear-gradient(120deg, rgba(255, 127, 80, 0.2), rgba(141, 157, 255, 0.2));
        border-color: rgba(255, 127, 80, 0.4);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(255, 127, 80, 0.2);
    }

    .header-meta {
        display: none;
    }

    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
    }

    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        pointer-events: none;
    }
}

@media (max-width: 900px) {
    .header-inner {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-layout {
        flex-direction: column;
        align-items: center;
    }

    .hero-frame,
    .hero-visual {
        width: min(100%, 640px);
    }

    .hero-visual {
        min-height: 320px;
    }

    .blend-game-head {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
    }

    .blend-game-stats {
        align-self: stretch;
        flex-wrap: wrap;
    }

    .blend-game-stage {
        gap: 24px;
    }

    .fruit-panel {
        order: 2;
    }

    .blender-panel {
        order: 1;
    }

    .fruit-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 14px;
    }

    .fruit-token {
        padding: 12px 14px;
        font-size: 0.95rem;
    }

    .blender-vessel {
        width: clamp(160px, 35vw, 220px);
        height: clamp(200px, 35vw, 280px);
        margin: 0 auto;
    }

    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .header-meta {
        order: 3;
    }
}


@media (max-width: 720px) {
    .hero::before {
        filter: blur(6px);
        -webkit-filter: blur(6px);
        transform: scale(1.05);
    }

    .hero {
        padding: 100px 20px 100px;
        text-align: center;
        min-height: auto;
    }

    .hero-layout {
        flex-direction: column;
        gap: 24px;
    }

    .hero-visual {
        order: 1;
    }

    .hero-frame {
        order: 2;
    }

    .hero-frame {
        padding: 28px 24px 32px;
        width: 100%;
        max-width: 100%;
    }

    .hero-content {
        align-items: center;
        gap: 20px;
    }

    .hero-title {
        align-items: center;
        text-align: center;
    }

    .hero-subtitle {
        max-width: none;
        text-align: center;
        font-size: 0.95rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-cta {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }

    .blend-game {
        padding: 60px 0;
        overflow-x: hidden;
        overflow-y: visible;
    }

    .blend-game-inner {
        padding: 0 16px;
        gap: 28px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .blend-game-stage {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .fruit-panel,
    .blender-panel {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        box-sizing: border-box;
    }

    .blend-game-head {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .blend-game-intro {
        max-width: 100%;
        align-items: center;
    }

    .blend-game-tag {
        align-self: center;
    }

    .blend-game-stats {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }

    .blend-game-stage {
        gap: 20px;
    }

    .fruit-panel {
        order: 2;
        padding: 20px 16px;
    }

    .blender-panel {
        order: 1;
        padding: 20px 16px;
    }

    .blender-dropzone {
        padding: 20px 16px 24px;
    }

    .blender-vessel {
        width: clamp(150px, 45vw, 200px);
        height: clamp(190px, 45vw, 250px);
        margin: 0 auto;
    }

    .dropzone-hint {
        font-size: 0.9rem;
        padding: 0 8px;
    }

    .fruit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .fruit-token {
        padding: 12px 14px;
        font-size: 0.9rem;
        min-height: 48px;
        justify-content: center;
    }

    .fruit-icon {
        width: 30px;
        height: 30px;
        font-size: 1.6rem;
    }

    .blend-game-title {
        font-size: clamp(1.6rem, 4vw, 2rem);
    }

    .blend-game-description {
        text-align: center;
    }

    .blend-controls {
        flex-direction: column;
        gap: 12px;
    }

    .blend-btn {
        min-width: unset;
        width: 100%;
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    .current-mix {
        padding: 18px 16px;
    }

    .current-mix-head {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .current-mix-list {
        justify-content: center;
    }

    .feature-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
    }

    .hero-visual {
        padding: 16px;
        min-height: 280px;
    }

    .hero-visual-gallery {
        position: static;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    .hero-visual-gallery img {
        position: static;
        width: 100%;
        height: auto;
        max-height: 260px;
        transform: none;
        object-fit: contain;
        filter: saturate(1) brightness(1);
        border-radius: var(--radius-sm);
    }

    main {
        gap: 70px;
        padding: 0 20px 80px;
    }

    .process-inner {
        padding: 60px 20px;
        grid-template-columns: 1fr;
    }

    .process-visual img {
        width: 100%;
        height: auto;
        max-height: 300px;
        object-fit: contain;
    }

    .footer-form {
        width: 100%;
    }

    .section-heading {
        text-align: center;
    }

    .faq {
        padding: 0;
    }
}

@media (max-width: 540px) {
    .header-inner {
        padding: 14px 16px;
    }

    .logo {
        font-size: 0.85rem;
    }

    .logo-title {
        font-size: 0.85rem;
    }

    .logo-year {
        font-size: 0.8rem;
    }

    .menu-toggle {
        width: 28px;
        height: 28px;
    }

    .menu-toggle-bar {
        height: 2.5px;
    }

    .main-nav {
        padding: 70px 20px 24px;
        gap: 16px;
        width: 100%;
        height: 100vh;
        min-height: 100vh;
    }

    .nav-link {
        padding: 14px 20px;
        font-size: 1.1rem;
    }

    .hero::before {
        filter: blur(5px);
        -webkit-filter: blur(5px);
        transform: scale(1.03);
    }

    .hero {
        padding: 80px 16px 80px;
        min-height: auto;
    }

    .hero-visual {
        order: 1;
    }

    .hero-frame {
        order: 2;
    }

    .hero-frame {
        padding: 24px 20px 28px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.4rem);
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-cta {
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    .blend-game {
        padding: 50px 0;
        overflow-x: hidden;
        overflow-y: visible;
    }

    .blend-game-inner {
        padding: 0 12px;
        gap: 24px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .blend-game-stage {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .fruit-panel,
    .blender-panel {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        box-sizing: border-box;
    }

    .blend-game-head {
        gap: 16px;
        text-align: center;
    }

    .blend-game-intro {
        max-width: none;
        align-items: center;
    }

    .blend-game-tag {
        align-self: center;
        padding: 8px 16px;
        font-size: 0.75rem;
    }

    .blend-game-title {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
    }

    .blend-game-description {
        font-size: 0.88rem;
        max-width: none;
        text-align: center;
    }

    .blend-game-stats {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 16px 18px;
    }

    .blend-game-counter {
        text-align: center;
    }

    .counter-value {
        font-size: 1.6rem;
    }

    .counter-label {
        font-size: 0.75rem;
    }

    .blend-reset {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .blend-game-stage {
        gap: 18px;
    }

    .fruit-panel {
        order: 2;
        padding: 18px 14px;
    }

    .blender-panel {
        order: 1;
        padding: 18px 14px;
    }

    .fruit-panel-head {
        text-align: center;
        margin-bottom: 12px;
    }

    .fruit-panel-title {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }

    .fruit-panel-hint {
        font-size: 0.85rem;
        margin: 0;
    }

    .mobile-scroll-hint {
        display: inline;
        color: rgba(255, 127, 80, 0.9);
        font-weight: 600;
    }

    .fruit-panel-hint::after {
        content: ' 👈👉';
        display: inline-block;
        margin-left: 4px;
        animation: swipeHint 2s ease-in-out infinite;
    }

    @keyframes swipeHint {
        0%, 100% {
            transform: translateX(0);
        }
        50% {
            transform: translateX(4px);
        }
    }

    .fruit-tip {
        font-size: 0.85rem;
        text-align: center;
        margin-top: 8px;
    }

    .fruit-grid {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        overflow-y: visible;
        padding: 0 8px 16px 8px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scroll-padding: 0 8px;
        position: relative;
        touch-action: pan-x;
    }

    /* Градиенты для индикации прокрутки */
    .fruit-grid::before,
    .fruit-grid::after {
        content: '';
        position: sticky;
        top: 0;
        width: 20px;
        height: 100%;
        pointer-events: none;
        z-index: 1;
        flex-shrink: 0;
    }

    .fruit-grid::before {
        left: 0;
        background: linear-gradient(to right, rgba(12, 15, 28, 0.95), transparent);
        margin-right: -20px;
    }

    .fruit-grid::after {
        right: 0;
        background: linear-gradient(to left, rgba(12, 15, 28, 0.95), transparent);
        margin-left: -20px;
    }

    .fruit-grid::-webkit-scrollbar {
        height: 6px;
    }

    .fruit-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 3px;
        margin: 0 8px;
    }

    .fruit-grid::-webkit-scrollbar-thumb {
        background: linear-gradient(90deg, rgba(255, 127, 80, 0.8), rgba(141, 157, 255, 0.8));
        border-radius: 3px;
    }

    .fruit-grid::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(90deg, rgba(255, 127, 80, 1), rgba(141, 157, 255, 1));
    }

    .fruit-token {
        min-width: 145px;
        max-width: 145px;
        flex-shrink: 0;
        scroll-snap-align: start;
        padding: 12px 14px;
        font-size: 0.88rem;
        min-height: 50px;
        justify-content: center;
        touch-action: pan-y;
        cursor: pointer;
    }

    .fruit-token:active {
        cursor: grabbing;
    }

    .fruit-icon {
        width: 28px;
        height: 28px;
        font-size: 1.5rem;
    }

    .fruit-name {
        font-size: 0.88rem;
    }

    .blender-dropzone {
        padding: 18px 14px 22px;
    }

    .dropzone-hint {
        font-size: 0.85rem;
        margin-top: 10px;
        padding: 0 8px;
        line-height: 1.4;
    }

    .blender-vessel {
        width: clamp(130px, 50vw, 170px);
        height: clamp(160px, 50vw, 210px);
        margin: 0 auto;
    }

    .current-mix {
        padding: 16px 14px;
    }

    .current-mix-head {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
    }

    .current-mix-head h3 {
        font-size: 0.95rem;
    }

    .mix-count {
        font-size: 0.9rem;
    }

    .blend-controls {
        gap: 10px;
    }

    .blend-btn {
        padding: 13px 20px;
        font-size: 0.9rem;
    }

    .current-mix-list {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .current-mix-list li {
        font-size: 0.85rem;
        padding: 8px 12px;
    }

    .mix-icon {
        width: 22px;
        height: 22px;
        font-size: 1.1rem;
    }

    .result-card {
        padding: 18px 16px;
    }

    .result-title {
        font-size: 1rem;
    }

    .result-description {
        font-size: 0.88rem;
    }

    .process-inner {
        padding: 50px 16px;
    }

    .process-copy h2 {
        font-size: clamp(1.5rem, 5vw, 1.9rem);
    }

    .process-description {
        font-size: 0.9rem;
    }

    .process-visual img {
        width: 100%;
        height: auto;
        max-height: 250px;
        object-fit: contain;
    }

    .feature-item {
        padding: 20px 18px;
    }

    .feature-item h3 {
        font-size: 1.1rem;
    }

    .feature-item p {
        font-size: 0.9rem;
    }

    .faq-accordion {
        gap: 10px;
    }

    .faq details {
        padding: 16px 18px;
    }

    .faq summary {
        font-size: 0.95rem;
    }

    .faq details p {
        font-size: 0.88rem;
        margin-top: 12px;
    }

    .cookie-modal {
        padding: 16px;
    }

    .cookie-modal-content {
        padding: 24px 20px;
        max-width: 100%;
    }

    .cookie-modal h2 {
        font-size: 1.3rem;
    }

    .cookie-modal p {
        font-size: 0.9rem;
    }

    .cookie-accept {
        width: 100%;
        padding: 14px 24px;
    }

    .footer-form {
        padding: 24px 20px;
    }

    .footer-form input,
    .footer-form textarea {
        padding: 12px 14px;
        font-size: 0.95rem;
    }

    .footer-submit {
        width: 100%;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    .header-inner {
        padding: 12px 14px;
    }

    .menu-toggle {
        width: 26px;
        height: 26px;
    }

    .menu-toggle-bar {
        height: 2px;
    }

    .main-nav {
        padding: 60px 16px 20px;
        gap: 12px;
        width: 100%;
        height: 100vh;
        min-height: 100vh;
    }

    .nav-link {
        padding: 12px 18px;
        font-size: 1rem;
    }

    .hero::before {
        filter: blur(4px);
        -webkit-filter: blur(4px);
        transform: scale(1.02);
    }

    .hero {
        padding: 70px 12px 70px;
    }

    .hero-visual {
        order: 1;
    }

    .hero-frame {
        order: 2;
        padding: 20px 18px 24px;
    }

    .hero-title {
        font-size: clamp(1.6rem, 7vw, 2rem);
        gap: 2px;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .blend-game {
        padding: 40px 0;
        overflow-x: hidden;
        overflow-y: visible;
    }

    .blend-game-inner {
        padding: 0 10px;
        gap: 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .blend-game-stage {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .fruit-panel,
    .blender-panel {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        box-sizing: border-box;
    }

    .blend-game-title {
        font-size: clamp(1.2rem, 6vw, 1.6rem);
    }

    .blend-game-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .blend-game-tag {
        padding: 7px 14px;
        font-size: 0.7rem;
    }

    .blend-game-stats {
        padding: 14px 16px;
        gap: 10px;
    }

    .counter-value {
        font-size: 1.5rem;
    }

    .counter-label {
        font-size: 0.7rem;
    }

    .blend-reset {
        padding: 11px 18px;
        font-size: 0.85rem;
    }

    .fruit-panel {
        order: 2;
        padding: 16px 12px;
    }

    .blender-panel {
        order: 1;
        padding: 16px 12px;
    }

    .fruit-panel-title {
        font-size: 0.9rem;
    }

    .fruit-panel-hint {
        font-size: 0.8rem;
    }

    .fruit-tip {
        font-size: 0.8rem;
    }

    .fruit-grid {
        gap: 8px;
        padding: 0 6px 14px 6px;
        scroll-padding: 0 6px;
    }

    .fruit-grid::before,
    .fruit-grid::after {
        width: 15px;
    }

    .fruit-grid::before {
        margin-right: -15px;
    }

    .fruit-grid::after {
        margin-left: -15px;
    }

    .fruit-grid::-webkit-scrollbar {
        height: 5px;
    }

    .fruit-grid::-webkit-scrollbar-track {
        margin: 0 6px;
    }

    .fruit-token {
        min-width: 135px;
        max-width: 135px;
        padding: 11px 12px;
        font-size: 0.85rem;
        min-height: 46px;
    }

    .fruit-icon {
        width: 26px;
        height: 26px;
        font-size: 1.4rem;
    }

    .fruit-name {
        font-size: 0.85rem;
    }

    .blender-dropzone {
        padding: 16px 10px 20px;
    }

    .dropzone-hint {
        font-size: 0.8rem;
        padding: 0 4px;
        line-height: 1.4;
    }

    .blender-vessel {
        width: clamp(120px, 55vw, 150px);
        height: clamp(150px, 55vw, 190px);
        margin: 0 auto;
    }

    .current-mix {
        padding: 14px 12px;
    }

    .current-mix-head h3 {
        font-size: 0.9rem;
    }

    .mix-count {
        font-size: 0.85rem;
    }

    .blend-btn {
        padding: 12px 18px;
        font-size: 0.88rem;
    }

    .current-mix-list li {
        font-size: 0.82rem;
        padding: 7px 11px;
    }

    .mix-icon {
        width: 20px;
        height: 20px;
        font-size: 1rem;
    }

    .result-card {
        padding: 16px 14px;
    }

    .result-title {
        font-size: 0.95rem;
    }

    .result-description {
        font-size: 0.85rem;
    }

    .result-score {
        font-size: 0.88rem;
    }

    .mix-icon {
        width: 20px;
        height: 20px;
        font-size: 0.95rem;
    }

    .current-mix-list li {
        padding: 6px 10px;
        font-size: 0.8rem;
    }

    main {
        gap: 60px;
        padding: 0 12px 60px;
    }

    .section-heading h2 {
        font-size: clamp(1.4rem, 6vw, 1.8rem);
    }

    .feature-item {
        padding: 18px 16px;
    }

    .process-inner {
        padding: 40px 12px;
    }

    .faq details {
        padding: 14px 16px;
    }

    .site-footer {
        padding: 60px 16px 80px;
    }

    .footer-form {
        padding: 20px 16px;
    }
}

