/* ============================================================
   SWARNA-KAMAL DICTIONARY — DESIGN SYSTEM
   DICTIONARY.OAKOKHO.COM
   DEDICATED TO MAA & BABA
   ============================================================ */

/* ------------------------------------------------------------
   GOOGLE FONTS IMPORT
   ------------------------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=Noto+Sans+Bengali:wght@300;400;500;600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ------------------------------------------------------------
   CSS VARIABLES — COLOR & TYPOGRAPHY TOKENS
   ------------------------------------------------------------ */
:root {
    /* GOLD PALETTE — SWARNA */
    --gold-deep: #8B6914;
    --gold-mid: #C4922A;
    --gold-light: #E8B84B;
    --gold-pale: #F5E6C0;
    --gold-whisper: #FDF7EB;

    /* TEAL PALETTE */
    --teal-deep: #0D3D3A;
    --teal-mid: #1A5C57;
    --teal-light: #2E8B84;
    --teal-pale: #D4ECEA;

    /* NEUTRAL PALETTE */
    --ink: #1C1A18;
    --ink-soft: #3D3A35;
    --ink-muted: #7A756C;
    --ink-faint: #B5AFA5;
    --border: #E2DAD0;
    --border-light: #F0EBE3;
    --surface: #FEFCF9;
    --surface-warm: #FAF6F0;
    --white: #FFFFFF;

    /* ACCENT */
    --lotus-rose: #C1665A;
    --lotus-pale: #F5E8E6;

    /* TYPOGRAPHY */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-assamese: 'Noto Sans Bengali', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    /* SPACING */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 999px;

    /* SHADOWS */
    --shadow-sm: 0 1px 4px rgba(28, 26, 24, 0.08);
    --shadow-md: 0 4px 16px rgba(28, 26, 24, 0.10);
    --shadow-lg: 0 8px 32px rgba(28, 26, 24, 0.12);
    --shadow-gold: 0 4px 20px rgba(196, 146, 42, 0.25);

    /* TRANSITIONS */
    --transition: all 0.2s ease;
    --transition-slow: all 0.4s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--surface);
    color: var(--ink);
    line-height: 1.7;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--teal-mid);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--gold-mid);
}

/* ------------------------------------------------------------
   ASSAMESE TEXT — FONT OVERRIDE
   ------------------------------------------------------------ */
.as-text,
[lang="as"] {
    font-family: var(--font-assamese);
    font-weight: 400;
}

/* ------------------------------------------------------------
   LAYOUT
   ------------------------------------------------------------ */
.sk-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.sk-container--narrow {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ------------------------------------------------------------
   HEADER
   ------------------------------------------------------------ */
.sk-header {
    background: var(--teal-deep);
    border-bottom: 3px solid var(--gold-mid);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-md);
}

.sk-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: 68px;
    max-width: 1100px;
    margin: 0 auto;
}

.sk-logo {
    display: flex;
    align-items: center;
    line-height: 1;
}

.sk-logo__letters {
    font-family: var(--font-assamese);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1;
    display: inline-block;
}

.sk-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sk-nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gold-pale);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    transition: var(--transition);
    opacity: 0.85;
}

.sk-nav__link:hover,
.sk-nav__link.active {
    background: rgba(232, 184, 75, 0.15);
    color: var(--gold-light);
    opacity: 1;
}

.sk-header__user {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 8px;
    flex-shrink: 0;
}

.sk-header__username {
    font-size: 0.8rem;
    color: var(--gold-pale);
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.sk-nav__link--cta {
    background: var(--gold-mid);
    color: var(--teal-deep) !important;
    opacity: 1 !important;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition);
}

.sk-nav__link--cta:hover {
    background: var(--gold-light);
}

/* HAMBURGER BUTTON */
.sk-hamburger {
    display: none;
    background: transparent;
    border: none;
    color: var(--gold-pale);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    line-height: 1;
}

.sk-hamburger:hover,
.sk-hamburger.open {
    background: rgba(232, 184, 75, 0.15);
    color: var(--gold-light);
}

/* MOBILE USER SECTION — hidden on desktop */
.sk-nav__mobile-user {
    display: none;
}

/* ------------------------------------------------------------
   HERO — HOMEPAGE SEARCH
   ------------------------------------------------------------ */
.sk-hero {
    background: linear-gradient(160deg, var(--teal-deep) 0%, var(--teal-mid) 60%, var(--teal-light) 100%);
    padding: 72px 24px 80px;
    text-align: center;
    position: relative;
    overflow: visible;
}

.sk-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(232, 184, 75, 0.07) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(232, 184, 75, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

/* LOTUS DECORATIVE ELEMENT */
.sk-hero__lotus {
    font-size: 2rem;
    margin-bottom: 16px;
    opacity: 0.7;
    display: block;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.sk-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
    letter-spacing: 0.01em;
}

.sk-hero__title span {
    color: var(--gold-light);
}

.sk-hero__subtitle {
    font-family: var(--font-assamese);
    font-size: 1.1rem;
    color: var(--gold-pale);
    opacity: 0.85;
    margin-bottom: 8px;
}

.sk-hero__dedication {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--gold-pale);
    opacity: 0.65;
    margin-bottom: 40px;
}

/* ------------------------------------------------------------
   SEARCH BOX
   ------------------------------------------------------------ */
.sk-search {
    position: relative;
    max-width: 620px;
    margin: 0 auto;
}

.sk-search__input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-gold);
    overflow: hidden;
    border: 2px solid transparent;
    transition: var(--transition);
}

.sk-search__input-wrap:focus-within {
    border-color: var(--gold-light);
    box-shadow: 0 0 0 4px rgba(232, 184, 75, 0.2), var(--shadow-gold);
}

.sk-search__icon {
    padding: 0 16px 0 20px;
    color: var(--ink-muted);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.sk-search__input {
    flex: 1;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--ink);
    padding: 16px 0;
    background: transparent;
}

.sk-search__input::placeholder {
    color: var(--ink-faint);
    font-style: italic;
}

.sk-search__kbd-btn {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--ink-muted);
    font-family: var(--font-assamese);
    font-size: 1rem;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 6px;
}

.sk-search__kbd-btn:hover,
.sk-search__kbd-btn.active {
    background: var(--gold-mid);
    border-color: var(--gold-mid);
    color: var(--teal-deep);
}

.sk-search__btn {
    background: var(--gold-mid);
    border: none;
    color: var(--teal-deep);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0 24px;
    height: 100%;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    min-height: 56px;
}

.sk-search__btn:hover {
    background: var(--gold-light);
}

.sk-search__toggle {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.sk-search__toggle-btn {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold-pale);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    padding: 5px 16px;
    cursor: pointer;
    transition: var(--transition);
}

.sk-search__toggle-btn.active,
.sk-search__toggle-btn:hover {
    background: var(--gold-mid);
    border-color: var(--gold-mid);
    color: var(--teal-deep);
}

/* ------------------------------------------------------------
   SEARCH DROPDOWN SUGGEST
   ------------------------------------------------------------ */
.sk-suggest {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    display: none;
    z-index: 9999;
    animation: dropIn 0.18s ease;
}

@keyframes dropIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sk-suggest.open {
    display: block;
}

.sk-suggest__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-light);
}

.sk-suggest__item:last-child {
    border-bottom: none;
}

.sk-suggest__item:hover,
.sk-suggest__item.focused {
    background: var(--gold-whisper);
}

.sk-suggest__label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--ink);
}

.sk-suggest__sublabel {
    font-family: var(--font-assamese);
    font-size: 0.85rem;
    color: var(--ink-muted);
    margin-top: 1px;
}

.sk-suggest__type {
    font-size: 0.75rem;
    color: var(--teal-light);
    background: var(--teal-pale);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-weight: 500;
    flex-shrink: 0;
    margin-left: 12px;
}

.sk-suggest__empty {
    padding: 20px;
    text-align: center;
    color: var(--ink-muted);
    font-size: 0.9rem;
    font-style: italic;
}

/* ------------------------------------------------------------
   WORD OF THE DAY
   ------------------------------------------------------------ */
.sk-wod {
    padding: 56px 24px;
    background: var(--surface-warm);
    border-bottom: 1px solid var(--border);
}

.sk-section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.sk-section-label__icon {
    width: 36px;
    height: 36px;
    background: var(--gold-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.sk-section-label__text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--ink);
}

.sk-wod__card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 36px;
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: start;
    max-width: 760px;
    transition: var(--transition-slow);
}

.sk-wod__card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--gold-pale);
}

.sk-wod__en {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.2;
}

.sk-wod__type {
    font-size: 0.8rem;
    color: var(--teal-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-left: 8px;
    vertical-align: middle;
}

.sk-wod__pronunciation {
    font-size: 0.95rem;
    color: var(--ink-muted);
    margin-top: 4px;
    font-style: italic;
}

.sk-wod__as {
    font-family: var(--font-assamese);
    font-size: 1.4rem;
    color: var(--teal-mid);
    margin-top: 12px;
    font-weight: 500;
}

.sk-wod__meaning {
    font-size: 0.95rem;
    color: var(--ink-soft);
    margin-top: 10px;
    line-height: 1.6;
}

.sk-wod__link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-mid);
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.sk-wod__link:hover {
    color: var(--gold-deep);
    gap: 8px;
}

.sk-wod__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

/* ------------------------------------------------------------
   BROWSE SECTION
   ------------------------------------------------------------ */
.sk-browse {
    padding: 56px 24px;
}

.sk-browse__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(48px, 1fr));
    gap: 8px;
    margin-top: 20px;
}

.sk-browse__letter {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ink-soft);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.sk-browse__letter:hover {
    background: var(--teal-deep);
    border-color: var(--teal-deep);
    color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* ------------------------------------------------------------
   BUTTONS
   ------------------------------------------------------------ */
.sk-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.sk-btn--primary {
    background: var(--teal-mid);
    color: var(--white);
}

.sk-btn--primary:hover {
    background: var(--teal-deep);
    color: var(--white);
}

.sk-btn--gold {
    background: var(--gold-mid);
    color: var(--teal-deep);
    font-weight: 600;
}

.sk-btn--gold:hover {
    background: var(--gold-light);
    color: var(--teal-deep);
}

.sk-btn--ghost {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--ink-soft);
}

.sk-btn--ghost:hover {
    border-color: var(--teal-light);
    color: var(--teal-mid);
}

.sk-btn--icon {
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
    font-size: 1rem;
}

.sk-btn--bookmark {
    background: var(--gold-whisper);
    border: 1.5px solid var(--gold-pale);
    color: var(--gold-deep);
}

.sk-btn--bookmark:hover,
.sk-btn--bookmark.bookmarked {
    background: var(--gold-pale);
    border-color: var(--gold-mid);
    color: var(--gold-deep);
}

.sk-btn--audio {
    background: var(--teal-pale);
    border: 1.5px solid var(--teal-pale);
    color: var(--teal-mid);
}

.sk-btn--audio:hover,
.sk-btn--audio.playing {
    background: var(--teal-mid);
    border-color: var(--teal-mid);
    color: var(--white);
}

/* ------------------------------------------------------------
   WORD DETAIL PAGE
   ------------------------------------------------------------ */
.sk-word-page {
    padding: 40px 24px 80px;
}

.sk-word-header {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 36px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

/* BOOKMARK — ABSOLUTE TOP RIGHT */
.sk-word-header__actions {
    position: absolute;
    top: 28px;
    right: 28px;
}

/* ENGLISH + ASSAMESE BLOCKS */
.sk-word-header__block {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sk-word-header__block--as {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

/* WORD TITLE LINE */
.sk-word-header__word {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    color: var(--ink);
    line-height: 1.15;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* ASSAMESE WORD SIZE */
.sk-word-header__as.sk-word-header__word {
    font-family: var(--font-assamese);
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    color: var(--teal-mid);
}

/* PRONUNCIATION ROW — IPA LEFT, SPEAKER RIGHT */
.sk-word-header__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.sk-word-header__ipa {
    font-size: 1rem;
    color: var(--ink-muted);
    font-style: italic;
}

.sk-word-header__type {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--teal-light);
    background: var(--teal-pale);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    vertical-align: middle;
    flex-shrink: 0;
}

/* ------------------------------------------------------------
   MEANINGS CARD
   ------------------------------------------------------------ */
.sk-meanings {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 40px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.sk-meanings__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}

.sk-meaning {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border-light);
}

.sk-meaning:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sk-meaning__num {
    width: 28px;
    height: 28px;
    background: var(--gold-pale);
    color: var(--gold-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.sk-meaning__body {
    flex: 1;
}

.sk-meaning__en {
    font-size: 1rem;
    color: var(--ink-soft);
    line-height: 1.6;
}

.sk-meaning__as {
    font-family: var(--font-assamese);
    font-size: 1rem;
    color: var(--teal-mid);
    margin-top: 6px;
    font-weight: 500;
}

.sk-meaning__example {
    margin-top: 12px;
    padding: 12px 16px;
    background: var(--surface-warm);
    border-left: 3px solid var(--gold-mid);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.sk-meaning__example-en {
    font-size: 0.9rem;
    color: var(--ink-soft);
    font-style: italic;
}

.sk-meaning__example-as {
    font-family: var(--font-assamese);
    font-size: 0.9rem;
    color: var(--teal-light);
    margin-top: 4px;
}

/* ------------------------------------------------------------
   RELATED WORDS
   ------------------------------------------------------------ */
.sk-related {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 40px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.sk-related__group {
    margin-bottom: 20px;
}

.sk-related__group:last-child {
    margin-bottom: 0;
}

.sk-related__type {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-muted);
    margin-bottom: 10px;
}

.sk-related__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sk-related__tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    background: var(--surface-warm);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--ink-soft);
    transition: var(--transition);
    text-decoration: none;
}

.sk-related__tag:hover {
    background: var(--teal-pale);
    border-color: var(--teal-light);
    color: var(--teal-mid);
}

/* ------------------------------------------------------------
   BREADCRUMB
   ------------------------------------------------------------ */
.sk-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 0;
    font-size: 0.85rem;
    color: var(--ink-muted);
    margin-bottom: 24px;
}

.sk-breadcrumb a {
    color: var(--teal-light);
}

.sk-breadcrumb a:hover {
    color: var(--gold-mid);
}

.sk-breadcrumb__sep {
    color: var(--ink-faint);
}

/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */
.sk-footer {
    background: var(--teal-deep);
    padding: 48px 24px 32px;
    margin-top: auto;
}

.sk-footer__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.sk-footer__col-title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 12px;
    letter-spacing: 0.04em;
}

.sk-footer__social {
    display: flex;
    gap: 14px;
    margin-top: 16px;
}

.sk-footer__social a {
    color: var(--gold-pale);
    font-size: 1.1rem;
    opacity: 0.65;
    transition: var(--transition);
}

.sk-footer__social a:hover {
    opacity: 1;
    color: var(--gold-light);
}

.sk-footer__brand {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold-light);
}

.sk-footer__tagline {
    font-size: 0.85rem;
    color: var(--gold-pale);
    opacity: 0.6;
    margin-top: 4px;
}

.sk-footer__dedication {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.9rem;
    color: var(--gold-pale);
    opacity: 0.55;
    margin-top: 16px;
}

.sk-footer__links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.sk-footer__links a {
    font-size: 0.85rem;
    color: var(--gold-pale);
    opacity: 0.65;
    display: block;
}

.sk-footer__links a:hover {
    opacity: 1;
    color: var(--gold-light);
}

.sk-footer__copy {
    max-width: 1100px;
    margin: 32px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.78rem;
    color: var(--gold-pale);
    opacity: 0.4;
    text-align: center;
}

/* ------------------------------------------------------------
   TOAST NOTIFICATION
   ------------------------------------------------------------ */
.sk-toast {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: var(--teal-deep);
    color: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    box-shadow: var(--shadow-lg);
    border-left: 3px solid var(--gold-mid);
    z-index: 1000;
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.sk-toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* ------------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------------ */
@media (max-width: 768px) {

    /* HEADER HEIGHT */
    .sk-header__inner {
        height: 58px;
    }

    /* SHOW HAMBURGER, HIDE DESKTOP USER AREA */
    .sk-hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 8px;
    }

    .sk-header__user--desktop {
        display: none;
    }

    /* NAV — HIDDEN BY DEFAULT, DROPS DOWN ON OPEN */
    .sk-nav {
        display: none;
        position: absolute;
        top: 58px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        background: var(--teal-deep);
        border-top: 1px solid rgba(232, 184, 75, 0.2);
        border-bottom: 3px solid var(--gold-mid);
        box-shadow: var(--shadow-md);
        padding: 8px 0 12px;
        z-index: 99;
    }

    .sk-nav.open {
        display: flex;
    }

    .sk-nav__link {
        width: 100%;
        padding: 11px 24px;
        border-radius: 0;
        font-size: 0.95rem;
        text-align: left;
    }

    .sk-nav__link:hover,
    .sk-nav__link.active {
        border-radius: 0;
        background: rgba(232, 184, 75, 0.12);
    }

    /* SHOW MOBILE USER SECTION IN NAV DROPDOWN */
    .sk-nav__mobile-user {
        display: flex;
        align-items: center;
        gap: 8px;
        border-top: 1px solid rgba(232, 184, 75, 0.15);
        margin-top: 6px;
        padding-top: 6px;
    }

    /* LOGO SIZE */
    .sk-logo__letters {
        font-size: 1.6rem;
    }

    /* WIDER CARDS — reduce container side padding */
    .sk-container,
    .sk-container--narrow {
        padding: 0 10px;
    }

    /* WORD PAGE OUTER PADDING */
    .sk-word-page {
        padding: 24px 0 60px;
    }

    /* CARDS — tighter inner padding on mobile */
    .sk-word-header {
        padding: 20px 20px 20px 20px;
        border-radius: var(--radius-md);
    }

    .sk-word-header__actions {
        top: 16px;
        right: 16px;
    }

    .sk-word-header__word {
        font-size: 1.8rem;
        padding-right: 44px;
        /* avoid overlap with bookmark */
    }

    .sk-meanings,
    .sk-related {
        padding: 20px;
        border-radius: var(--radius-md);
    }

    /* REST OF PAGE */
    .sk-hero {
        padding: 48px 16px 56px;
    }

    .sk-wod__card {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .sk-wod__actions {
        flex-direction: row;
        align-items: center;
    }

    .sk-footer__inner {
        grid-template-columns: 1fr 1fr;
    }

    .sk-footer__links {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .sk-browse__grid {
        grid-template-columns: repeat(auto-fill, minmax(40px, 1fr));
    }
}