/* Landing styles for Big Bass promo */
:root {
    color-scheme: dark;
    --bg: #000000;
    --bg-soft: #090909;
    --card: #0c0c0c;
    --card-strong: #111111;
    --line: rgba(255, 241, 32, 0.18);
    --line-strong: rgba(255, 241, 32, 0.34);
    --text: #f5f5f5;
    --muted: #b7b7b7;
    --accent: #fff120;
    --accent-soft: rgba(255, 241, 32, 0.14);
    --shadow: 0 26px 84px rgba(0, 0, 0, 0.55);
    --radius: 20px;
}

* {
    box-sizing: border-box;
}

html {
    touch-action: manipulation;
    -webkit-text-size-adjust: 100%;
    scrollbar-color: #fff120 #0b0b0b;
    scrollbar-width: thin;
}

*::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

*::-webkit-scrollbar-track {
    background: #0b0b0b;
}

*::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #fff120 0%, #d8cb00 100%);
    border: 2px solid #0b0b0b;
    border-radius: 999px;
}

*::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #fff57a 0%, #fff120 100%);
}

*::-webkit-scrollbar-corner {
    background: #0b0b0b;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(255, 241, 32, 0.15), transparent 28%),
        radial-gradient(circle at top right, rgba(255, 241, 32, 0.08), transparent 24%),
        linear-gradient(180deg, #000000 0%, #060606 55%, #0a0a0a 100%);
    color: var(--text);
    line-height: 1.55;
    overflow-x: hidden;
}

body.no-zoom {
    overscroll-behavior: contain;
}

.logocont {
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    padding: 20px 0 0;
}

.lang-switcher {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 40;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 6px 6px;
    background: var(--card-strong);
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--text);
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: border-color 0.2s ease, background 0.2s ease;
}

.lang-toggle:hover,
.lang-toggle:focus-visible {
    border-color: var(--line-strong);
    outline: none;
}

.lang-flag {
    display: block;
    width: 26px;
    height: 26px;
    flex: 0 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.lang-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lang-code {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.lang-chevron {
    width: 14px;
    height: 14px;
    color: var(--muted);
    transition: transform 0.2s ease;
}

.lang-toggle[aria-expanded="true"] .lang-chevron {
    transform: rotate(180deg);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 150px;
    margin: 0;
    padding: 6px;
    list-style: none;
    background: var(--card-strong);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.lang-menu li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.lang-menu li:hover {
    background: var(--accent-soft);
    color: var(--text);
}

.lang-menu li.is-active {
    background: var(--accent-soft);
    color: var(--accent);
}

.lang-menu li .lang-flag {
    width: 22px;
    height: 22px;
}

.logocont img,
.oc-logo {
    display: block;
    width: 100%;
    height: auto;
}

img {
    display: block;
    max-width: 100%;
}

button,
a {
    font: inherit;
}

.oc-shell {
    position: relative;
    width: min(1200px, calc(100% - 24px));
    margin: 0 auto;
    padding: 20px 0 32px;
}

.oc-shell::before,
.oc-shell::after {
    content: "";
    position: fixed;
    inset: auto;
    width: 22rem;
    height: 22rem;
    border-radius: 50%;
    filter: blur(18px);
    opacity: 0.11;
    pointer-events: none;
    z-index: -1;
    will-change: transform, opacity;
}

.oc-shell::before {
    top: -7rem;
    left: -7rem;
    background: var(--accent);
    animation: ambientFloatA 14s ease-in-out infinite;
}

.oc-shell::after {
    right: -8rem;
    bottom: -8rem;
    background: var(--accent);
    animation: ambientFloatB 18s ease-in-out infinite;
}

.oc-banner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 241, 32, 0.06);
    color: var(--text);
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    backdrop-filter: blur(14px);
    margin-bottom: 18px;
}

.oc-banner-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 18px rgba(255, 241, 32, 0.9);
}

.oc-page-title {
    margin: 0 0 20px;
    font-size: clamp(2.1rem, 3.7vw, 4.2rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
    max-width: none;
    color: var(--text);
    text-align: center;
    text-wrap: balance;
}

.oc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
    margin-top: 20px;
}

.oc-card {
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.98), rgba(10, 10, 10, 0.98));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.oc-hero-media {
    padding: 0px;
    background: linear-gradient(180deg, #000000, #0a0a0a);
    margin-bottom: 20px;
}

.oc-hero-media img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    background: #000;
}

.oc-hero-copy {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: clamp(20px, 4vw, 42px);
}

.oc-eyebrow {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: #fffbe0;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.oc-headline {
    margin: 0;
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    line-height: 0.96;
    letter-spacing: -0.07em;
    text-wrap: balance;
    color: var(--text);
}

.oc-subtitle {
    margin: 0;
    color: var(--muted);
    font-size: clamp(0.8rem, 1.8vw, 1.08rem);
    text-align: center;
}

.oc-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.oc-metric {
    padding: 14px 16px;
    border-radius: 15px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.02);
}

.oc-metric strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--text);
}

.oc-metric span {
    color: var(--muted);
    font-size: 0.9rem;
}

.oc-code-box {
    display: grid;
    margin: 0 auto;
    gap: 10px;
    padding: 18px;
    border-radius: 15px;
    border: 1px solid var(--line-strong);
    background: linear-gradient(180deg, rgba(255, 241, 32, 0.1), rgba(255, 241, 32, 0.03)), rgba(255, 255, 255, 0.02);
    max-width: 520px;
    font-style:italic;
}

.oc-code-label {
    color: #fff7b5;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    animation: blinkText 0.5s steps(2, end) infinite;
}

.oc-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 74px;
    border-radius: 20px;
    border: 1px solid rgba(255, 241, 32, 0.6);
    background: linear-gradient(180deg, #000000 0%, #111111 100%);
    color: var(--accent);
    font-size: clamp(1.7rem, 4vw, 2rem);
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-align: center;
    animation: pulseGlow 1.15s ease-in-out infinite, blinkText 1s steps(2, end) infinite;
    box-shadow: 0 0 0 1px rgba(255, 241, 32, 0.16), 0 0 26px rgba(255, 241, 32, 0.25);
}

.oc-code-note {
    margin: 0;
    color: var(--muted);
    font-size: 0.7rem;
}

.oc-cta-row {
    display: flex-wrap;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
    align-self: center;
}

.oc-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 22px;
    border-radius: 100px;
    border: 1px solid rgba(255, 241, 32, 0.75);
    background: linear-gradient(135deg, var(--accent) 0%, #d7ca00 100%);
    color: #000;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: 0.02em;
    box-shadow: 0 18px 36px rgba(255, 241, 32, 0.18);
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
    margin:0px auto
}

.oc-cta:hover,
.oc-cta:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 22px 42px rgba(255, 241, 32, 0.24);
    filter: saturate(1.04);
    outline: none;
}

.oc-link-secondary {
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    padding: 0 6px;
    opacity: 0.92;
    margin: 0 auto;
}

.oc-link-secondary:hover,
.oc-link-secondary:focus-visible {
    color: var(--accent);
    outline: none;
}

.oc-section {
    margin-top: 20px;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.02);
}

.oc-section h2,
.oc-section h3 {
    margin: 0 0 12px;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: var(--text);
}

.oc-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.oc-step {
    padding: 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 241, 32, 0.14);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    transition: background 260ms ease, color 260ms ease, border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.oc-step.is-active {
    background: linear-gradient(180deg, #fff120 0%, #e7d900 100%);
    border-color: rgba(255, 241, 32, 0.95);
    box-shadow: 0 14px 34px rgba(255, 241, 32, 0.26);
    transform: translateY(-2px);
}

.oc-step.is-active h3,
.oc-step.is-active p,
.oc-step.is-active .oc-highlight {
    color: #090909;
    animation: none;
}

.oc-step.is-active .oc-step-number {
    background: #090909;
    color: #fff120;
}

.oc-step-number {
    display: inline-flex;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    background: rgba(255, 241, 32, 0.16);
    color: var(--accent);
    font-weight: 900;
}

.oc-step h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
}

.oc-step p {
    margin: 0;
    color: var(--muted);
    font-size: 0.8rem;
}

.oc-highlight {
    color: var(--accent);
    font-weight: 800;
    animation: blinkText 0.5s steps(2, end) infinite;
}

.oc-terms {
    margin-top: 20px;
    padding: 0;
}

.oc-terms-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    color: var(--text);
    cursor: pointer;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.oc-terms-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.oc-terms-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: rgba(255, 241, 32, 0.1);
    color: #fff5a6;
    flex-shrink: 0;
}

.oc-terms-icon svg {
    width: 18px;
    height: 18px;
}

.oc-terms-copy {
    display: grid;
    gap: 2px;
    text-align: left;
}

.oc-terms-title {
    font-size: 1.02rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.oc-terms-hint {
    color: #fff3a0;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.oc-terms-right {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.oc-terms-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 241, 32, 0.55);
    background: rgba(255, 241, 32, 0.18);
    color: #fff7bf;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    animation: tapPulse 1.25s ease-in-out infinite;
}

.oc-terms-chevron {
    width: 20px;
    height: 20px;
    transition: transform 180ms ease, color 180ms ease;
}

.oc-terms-toggle:hover,
.oc-terms-toggle:focus-visible {
    border-color: var(--line-strong);
    box-shadow: 0 0 0 2px rgba(255, 241, 32, 0.2);
    transform: translateY(-1px);
    outline: none;
}

.oc-terms.is-open .oc-terms-toggle {
    border-color: var(--line-strong);
}

.oc-terms.is-open .oc-terms-chevron {
    transform: rotate(180deg);
    color: var(--accent);
}

.oc-terms.is-open .oc-terms-pill {
    animation: none;
    background: rgba(255, 241, 32, 0.24);
}

.oc-terms-panel {
    display: grid;
    gap: 12px;
    margin-top: 12px;
    padding: 18px 20px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.02);
}

.oc-terms-panel[hidden] {
    display: none;
}

.oc-terms-panel p,
.oc-note {
    margin: 0;
    color: var(--muted);
    font-size: 0.8rem;
}

.oc-note {
    margin-top: 2px;
}

.oc-footer {
    margin-top: 16px;
    color: rgba(183, 183, 183, 0.78);
    font-size: 0.82rem;
    text-align: center;
}

@keyframes pulseGlow {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 1px rgba(255, 241, 32, 0.16), 0 0 26px rgba(255, 241, 32, 0.25);
    }
    50% {
        transform: scale(1.015);
        box-shadow: 0 0 0 1px rgba(255, 241, 32, 0.3), 0 0 36px rgba(255, 241, 32, 0.38);
    }
}

@keyframes blinkText {
    0%,
    49% {
        color: var(--accent);
    }
    50%,
    100% {
        color: var(--text);
    }
}

@keyframes ambientFloatA {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.1;
    }
    50% {
        transform: translate3d(14px, 10px, 0) scale(1.06);
        opacity: 0.16;
    }
}

@keyframes ambientFloatB {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.1;
    }
    50% {
        transform: translate3d(-16px, -12px, 0) scale(1.08);
        opacity: 0.15;
    }
}

@keyframes tapPulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 241, 32, 0.38);
    }
    50% {
        transform: scale(1.06);
        box-shadow: 0 0 0 8px rgba(255, 241, 32, 0);
    }
}

@media (max-width: 920px) {
    .oc-grid {
        grid-template-columns: 1fr;
    }

    .oc-steps,
    .oc-metrics {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .lang-switcher {
        top: 10px;
        right: 10px;
    }

    .lang-toggle {
        gap: 6px;
        padding: 5px 10px 5px 5px;
    }

    .lang-flag {
        width: 22px;
        height: 22px;
    }

    .lang-code {
        font-size: 0.7rem;
    }

    .logocont {
        max-width: 120px;
    }

    .oc-shell {
        width: min(100% - 16px, 1200px);
        padding-top: 10px;
    }

    .oc-page-title {
        font-size: clamp(1.25rem, 5.8vw, 1.9rem);
        text-wrap: pretty;
    }

    .oc-terms-toggle {
        padding: 14px 14px;
        gap: 10px;
    }

    .oc-terms-icon {
        width: 30px;
        height: 30px;
    }

    .oc-terms-title {
        font-size: 0.6rem;
    }

    .oc-terms-hint {
        font-size: 0.69rem;
    }

    .oc-terms-pill {
        min-width: 42px;
        height: 24px;
        padding: 0 8px;
    }

    .oc-hero-copy {
        gap: 16px;
        padding: 18px;
    }

    .oc-section {
        padding: 16px;
    }

    .oc-cta,
    .oc-terms-toggle {
        width: 100%;
    }
}

@media (min-width: 641px) {
    .oc-page-title {
        white-space: nowrap;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
