/* ── Contend Kids Splash ─────────────────────────────────────── */

.ck-splash {
    display: flex;
    flex-direction: column;
    min-height: 100svh;
    font-family: 'Figtree', sans-serif;
    background: #FFE81A;
}

/* ── Nav ──────────────────────────────────────────────────────── */

.ck-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 52px;
    background: transparent;
}

.ck-nav__logo-img {
    height: 20px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(9%) sepia(60%) saturate(4800%) hue-rotate(234deg) brightness(80%) contrast(110%);
}

.ck-nav__burger {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
}

.ck-nav__burger-line {
    display: block;
    height: 2px;
    background: #F5F5F5;
}

.ck-nav__burger-line--long {
    width: 22px;
    background: #1A1A6E;
}

.ck-nav__burger-line--short {
    width: 14px;
    background: #FF8C00;
}

/* ── Hero ─────────────────────────────────────────────────────── */

.ck-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 16px 24px 0;
}

.ck-hero__sparkle {
    font-size: 36px;
    text-align: center;
}

.ck-hero__title {
    font-family: 'Baloo 2', cursive;
    font-size: 48px;
    font-weight: 800;
    line-height: 0.9;
    text-align: center;
    color: #1A1A6E;
    margin: 0;
}

.ck-hero__chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    border-radius: 20px;
    background: #60286C;
    color: #FFE81A;
    font-family: 'Figtree', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
}

/* ── Doodles ──────────────────────────────────────────────────── */

.ck-doodles {
    position: relative;
    width: 100%;
    height: 160px;
}

.ck-doodle {
    position: absolute;
}

.ck-doodle--circle-outline {
    border: 4px solid #1A1A6E;
    border-radius: 50%;
}

.ck-doodle--dot-pink {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #FF3B7A;
}

.ck-doodle--dot-teal {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #0FACB2;
}

.ck-doodle--dot-orange {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #FF8C00;
}

.ck-doodle--rect-pink {
    width: 30px;
    height: 12px;
    border-radius: 6px;
    background: #FF3B7A;
}

.ck-doodle--circle-outline-orange {
    border: 3px solid #FF8C00;
    border-radius: 50%;
}

.ck-doodle--emoji {
    font-size: 22px;
}

/* ── Torn Edge ────────────────────────────────────────────────── */

.ck-torn-edge {
    width: 100%;
    height: 14px;
    background: #FFFFFF;
}

/* ── Bottom ───────────────────────────────────────────────────── */

.ck-bottom {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #FFFFFF;
    padding: 20px 24px 28px;
}

/* ── Intro ────────────────────────────────────────────────────── */

.ck-intro {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ck-intro__line {
    font-family: 'Baloo 2', cursive;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    color: #1A1A6E;
}

.ck-intro__highlight {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 6px;
    background: #FF3B7A;
    color: #FFFFFF;
    font-family: 'Baloo 2', cursive;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 1px;
    width: fit-content;
}

/* ── Description ──────────────────────────────────────────────── */

.ck-desc {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #555555;
    margin: 0;
}

/* ── Buttons ──────────────────────────────────────────────────── */

.ck-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ck-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 52px;
    border-radius: 12px;
    color: #FFFFFF;
    font-family: 'Figtree', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.ck-btn--teal {
    background: #0FACB2;
}

.ck-btn--purple {
    background: #60286C;
}

.ck-btn--pink {
    background: #FF3B7A;
}

/* ── Menu Overlay ─────────────────────────────────────────────── */

.ck-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    font-family: 'Figtree', sans-serif;
    transform: translateX(100%);
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}

.ck-menu.is-open {
    transform: translateX(0);
    pointer-events: auto;
}

.ck-menu__tab-bar {
    display: flex;
    height: 5px;
    width: 100%;
}

.ck-menu__tab-strip {
    flex: 1;
    height: 100%;
}

.ck-menu__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 48px;
}

.ck-menu__label {
    font-family: 'Figtree', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #AAAAAA;
    text-transform: uppercase;
}

.ck-menu__close {
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    width: 32px;
    height: 32px;
}

.ck-menu__close .ck-nav__burger-line--long {
    background: #0FACB2;
    align-self: flex-end;
}

.ck-menu__close .ck-nav__burger-line--short {
    background: #FF8C00;
    align-self: flex-start;
}

.ck-menu__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 28px 24px 0;
}

.ck-menu__link {
    font-family: 'Lilita One', cursive;
    font-size: 34px;
    font-weight: 400;
    line-height: 1.2;
    color: #1A1A6E;
    text-decoration: none;
    text-transform: uppercase;
}

.ck-menu__link-sub {
    font-family: 'Figtree', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    display: inline;
    margin-left: 8px;
    color: #1A1A6E;
}

.ck-menu__link--current {
    padding-left: 16px;
    border-left: 4px solid currentColor;
}

.ck-menu__link--muted {
    color: #AAAAAA;
}

/* ── Location ─────────────────────────────────────────────────── */

.ck-menu__location {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px 24px 0;
}

.ck-menu__location-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #AAAAAA;
}

.ck-menu__location-pills {
    display: flex;
    gap: 8px;
    margin-bottom: 4px;
}
.ck-menu__location-pill {
    padding: 4px 14px;
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    background: transparent;
    color: #9CA3AF;
    font-family: 'Figtree', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.2s;
}
.ck-menu__location-pill--active {
    background: #0FACB2;
    border-color: #0FACB2;
    color: #FFFFFF;
}
.ck-menu__location-day {
    font-family: 'Figtree', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #0FACB2;
    display: block;
    margin-bottom: 4px;
}

.ck-menu__location-value {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    color: #1A1A6E;
}

/* ── Social ───────────────────────────────────────────────────── */

.ck-menu__social {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 24px 0;
}

.ck-menu__social-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #AAAAAA;
}

.ck-menu__social-dots {
    display: flex;
    gap: 8px;
}

.ck-menu__dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.ck-menu__dot--white {
    background: #E8E8E8;
}

.ck-menu__dot--grey {
    background: #D0D0D0;
}

.ck-menu__spacer {
    flex: 1;
}

/* ── Bottom Card ──────────────────────────────────────────────── */

.ck-menu__card {
    position: relative;
    background: #30373B;
    border-radius: 12px 12px 0 0;
    padding: 18px 24px;
    overflow: hidden;
}
.ck-menu__card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.ck-menu__card-toggle {
    font-size: 20px;
    font-weight: 700;
    color: #9CA3AF;
    flex-shrink: 0;
    transition: transform 0.2s;
}
.ck-menu__card.is-collapsed .ck-menu__card-toggle {
    transform: rotate(0deg);
}
.ck-menu__card:not(.is-collapsed) .ck-menu__card-toggle {
    transform: rotate(45deg);
}
.ck-menu__card-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
    max-height: 200px;
    opacity: 1;
    transition: max-height 0.3s ease, margin-top 0.3s ease, opacity 0.2s ease;
}
.ck-menu__card.is-collapsed .ck-menu__card-body {
    max-height: 0;
    margin-top: 0;
    opacity: 0;
}
.ck-menu__card.is-collapsed .ck-menu__card-dots {
    display: none;
}

.ck-menu__card-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    padding-right: 40px;
}

.ck-menu__card-title {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #FFFFFF;
}
.ck-menu__card-logo {
    width: 80px;
    height: auto;
    filter: brightness(0) invert(1);
    display: block;
}

.ck-menu__card-sub {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    color: #9CA3AF;
}

.ck-menu__card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    padding: 0 14px;
    border-radius: 6px;
    background: #FFFFFF;
    color: #30373B;
    font-family: 'Figtree', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    width: fit-content;
    margin-top: 4px;
}

.ck-menu__card-dots {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
    padding-bottom: 4px;
}

.ck-menu__card-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/* ── Desktop gate ─────────────────────────────────────────────── */

@media (min-width: 850px) {
    .ck-splash {
        max-width: 390px;
        margin: 0 auto;
        min-height: 100vh;
        box-shadow: 0 0 40px rgba(0,0,0,0.1);
    }

    .ck-menu {
        max-width: 390px;
        left: 50%;
        transform: translateX(-50%);
    }
}
