/* 카지노바 admin — banner navy + gold + cyan theme */
:root {
    --color-bg: #0a1628;
    --color-bg-elevated: #0f1f3d;
    --color-surface: #122447;
    --color-surface-2: #0d1b36;
    --color-input: #162d55;
    --color-accent: #d4af37;
    --color-accent-secondary: #bf953f;
    --color-accent-hover: #f5e6a8;
    --color-accent-text: #0a1628;
    --color-cyan: #00c8ff;
    --color-cyan-soft: rgba(0, 200, 255, 0.12);
    --color-cyan-glow: rgba(0, 200, 255, 0.35);
    --color-cta: #a91d35;
    --color-cta-hover: #c41e3a;
    --color-cta-deep: #7a1528;
    --color-text: #ffffff;
    --color-text-muted: #9eb0cc;
    --color-border: rgba(0, 200, 255, 0.1);
    --color-border-accent: rgba(212, 175, 55, 0.4);
    --color-gold-glow: rgba(212, 175, 55, 0.35);
    --color-gold-soft: rgba(212, 175, 55, 0.1);
    --color-success: #22c55e;
    --radius-card: 16px;
    --radius-input: 12px;
    --radius-btn: 12px;
    --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 8px 28px rgba(212, 175, 55, 0.32);
    --shadow-cyan: 0 0 24px rgba(0, 200, 255, 0.12);
    --shadow-cta: 0 8px 28px rgba(169, 29, 53, 0.38);
    --sidebar-width: 240px;
    --topbar-height: 64px;
    --font: "Inter", system-ui, -apple-system, sans-serif;
}

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

html,
body {
    height: 100%;
}

body {
    font-family: var(--font);
    background: var(--color-bg);
    color: var(--color-text);
}

/* ----- Auth (login / index) ----- */
body.theme-auth {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1rem, 4vw, 2rem);
    background:
        radial-gradient(ellipse 90% 55% at 50% -15%, rgba(0, 200, 255, 0.14), transparent 55%),
        radial-gradient(ellipse 70% 45% at 85% 90%, rgba(169, 29, 53, 0.1), transparent 50%),
        radial-gradient(ellipse 60% 40% at 10% 80%, rgba(212, 175, 55, 0.08), transparent 45%),
        linear-gradient(165deg, #060e1c 0%, var(--color-bg) 45%, #0d1b36 100%);
}

.auth-card {
    width: 100%;
    max-width: 420px;
    background: linear-gradient(155deg, rgba(18, 36, 71, 0.96), rgba(13, 27, 54, 0.98));
    border: 1px solid var(--color-border-accent);
    border-radius: 20px;
    padding: clamp(1.75rem, 5vw, 2.25rem);
    box-shadow: var(--shadow-soft), var(--shadow-cyan);
    backdrop-filter: blur(12px);
}

.auth-card__brand {
    text-align: center;
    margin-bottom: 1.75rem;
}

.auth-card__logo {
    text-align: center;
    margin-bottom: 1rem;
}

.auth-card__logo img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.auth-card__title {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    text-shadow:
        0 1px 0 rgba(245, 230, 168, 0.45),
        0 0 28px var(--color-gold-glow);
}

.auth-card__subtitle {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--color-cyan);
    text-shadow: 0 0 12px var(--color-cyan-glow);
}

.auth-field {
    margin-bottom: 0.875rem;
}

.auth-field:last-of-type {
    margin-bottom: 1.35rem;
}

.auth-input {
    width: 100%;
    min-height: 52px;
    padding: 0.875rem 1rem;
    font-family: inherit;
    font-size: 0.9375rem;
    color: var(--color-text);
    background: var(--color-input);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-input);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-input::placeholder {
    color: var(--color-text-muted);
}

.auth-input:focus {
    border-color: var(--color-cyan);
    box-shadow: 0 0 0 3px var(--color-cyan-soft), 0 0 16px var(--color-cyan-glow);
}

.auth-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    padding: 0.9375rem 1.5rem;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #ffffff;
    background: linear-gradient(180deg, var(--color-cta-hover), var(--color-cta));
    border: none;
    border-radius: var(--radius-btn);
    box-shadow: var(--shadow-cta);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.auth-submit:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
    box-shadow: 0 12px 32px rgba(169, 29, 53, 0.48);
}

.auth-submit:active {
    transform: translateY(0);
}

/* ----- Admin shell ----- */
body.theme-admin {
    min-height: 100vh;
    min-height: 100dvh;
    background:
        radial-gradient(ellipse 100% 55% at 50% -8%, rgba(0, 200, 255, 0.1), transparent 52%),
        radial-gradient(ellipse 55% 40% at 100% 100%, rgba(169, 29, 53, 0.07), transparent 48%),
        linear-gradient(180deg, #060e1c 0%, var(--color-bg) 50%, #0d1b36 100%);
}

.admin-shell {
    display: flex;
    min-height: 100vh;
    min-height: 100dvh;
}

.admin-sidebar {
    width: var(--sidebar-width);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, var(--color-surface-2), #081428);
    border-right: 1px solid var(--color-border);
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.25);
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 200;
}

.admin-sidebar__brand {
    padding: 1.25rem 1.25rem 1rem;
    border-bottom: 1px solid var(--color-border);
}

.admin-sidebar__logo {
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: var(--color-accent);
    text-decoration: none;
}

.admin-sidebar__tag {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.admin-sidebar__nav {
    flex: 1;
    padding: 1rem 0.75rem;
    overflow-y: auto;
}

.admin-sidebar__group {
    margin-bottom: 1.25rem;
}

.admin-sidebar__label {
    display: block;
    padding: 0 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--color-text-muted);
}

.admin-sidebar__link {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 0.75rem;
    margin-bottom: 0.2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-muted);
    text-decoration: none;
    border-radius: 10px;
    transition: color 0.2s ease, background 0.2s ease;
}

.admin-sidebar__link i {
    font-size: 1.05rem;
    width: 1.25rem;
    text-align: center;
}

.admin-sidebar__link:hover {
    color: var(--color-text);
    background: var(--color-cyan-soft);
}

.admin-sidebar__link.is-active {
    color: var(--color-accent-hover);
    background: var(--color-gold-soft);
    box-shadow: inset 3px 0 0 var(--color-accent);
}

.admin-sidebar__link.is-active i {
    color: var(--color-accent);
}

.admin-sidebar__footer {
    padding: 1rem 0.75rem;
    border-top: 1px solid var(--color-border);
}

.admin-sidebar__link--logout:hover {
    color: #f87171;
    background: rgba(248, 113, 113, 0.08);
}

.admin-body {
    flex: 1;
    margin-left: var(--sidebar-width);
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.admin-topbar {
    height: var(--topbar-height);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0 1.5rem;
    background: rgba(10, 22, 40, 0.88);
    border-bottom: 1px solid var(--color-border);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.admin-topbar__brand {
    display: none;
    flex-shrink: 0;
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: var(--color-accent);
    text-decoration: none;
}

.admin-topbar__title {
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    min-width: 0;
}

.admin-topbar__title i {
    margin-right: 0.5rem;
    color: var(--color-accent);
}

.admin-topbar__user {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.admin-topbar__avatar {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-secondary));
    border-radius: 50%;
    color: var(--color-accent-text);
    font-size: 0.875rem;
    font-weight: 700;
}

.admin-topbar__user strong {
    color: var(--color-accent);
    font-weight: 600;
}

.admin-mobile-nav {
    display: none;
}

.admin-main {
    flex: 1;
    padding: clamp(1.25rem, 3vw, 1.75rem);
    max-width: 900px;
    width: 100%;
}

.admin-main--wide {
    max-width: 1200px;
}

.admin-panel {
    background: linear-gradient(160deg, rgba(18, 36, 71, 0.92), rgba(13, 27, 54, 0.95));
    border: 1px solid var(--color-border-accent);
    border-radius: var(--radius-card);
    padding: clamp(1.25rem, 4vw, 1.75rem);
    box-shadow: var(--shadow-soft), var(--shadow-cyan);
}

.admin-panel__title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-accent-hover);
    text-shadow: 0 0 20px var(--color-gold-glow);
}

.admin-panel__title i {
    color: var(--color-accent);
}

.admin-hint {
    margin: -0.75rem 0 1.25rem;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.admin-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.admin-row__check {
    flex-shrink: 0;
    width: 1.125rem;
    height: 1.125rem;
    accent-color: var(--color-accent);
    cursor: pointer;
}

.admin-input {
    flex: 1;
    min-width: 0;
    min-height: 48px;
    padding: 0.75rem 1rem;
    font-family: inherit;
    font-size: 0.9375rem;
    color: var(--color-text);
    background: var(--color-input);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-input);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.admin-input:focus {
    border-color: var(--color-cyan);
    box-shadow: 0 0 0 3px var(--color-cyan-soft), 0 0 12px var(--color-cyan-glow);
}

.admin-textarea {
    flex: none;
    width: 100%;
    min-height: 88px;
    resize: vertical;
    line-height: 1.5;
}

.banner-promo-preview {
    margin-top: 1.25rem;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
}

.banner-promo-preview__label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--color-text-muted);
}

.banner-promo-preview__stage {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 12px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-input);
    overflow-x: auto;
}

.banner-promo-preview__stage .promo_marquee_wrap {
    width: 1070px;
    max-width: 100%;
    flex-shrink: 0;
    border-top: 2px solid var(--color-cyan);
}

.banner-promo-preview__stage.is-hidden {
    display: none;
}

.banner-promo-preview__hint {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.admin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

@media (max-width: 520px) {
    .admin-grid {
        grid-template-columns: 1fr;
    }
}

.admin-field label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text-muted);
}

.admin-field label em {
    font-style: normal;
    color: var(--color-accent);
}

.admin-field .admin-input {
    width: 100%;
}

.admin-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
}

.admin-option {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.admin-option input {
    accent-color: var(--color-accent);
    width: 1rem;
    height: 1rem;
    cursor: pointer;
}

.admin-option:has(input:checked) {
    color: var(--color-text);
    background: var(--color-gold-soft);
    border-color: var(--color-border-accent);
}

.admin-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    margin-top: 0.75rem;
    padding: 0.9375rem 1.5rem;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #ffffff;
    background: linear-gradient(180deg, var(--color-cta-hover), var(--color-cta));
    border: none;
    border-radius: var(--radius-btn);
    box-shadow: var(--shadow-cta);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.admin-submit:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
    box-shadow: 0 12px 32px rgba(169, 29, 53, 0.48);
}

.admin-submit:active {
    transform: translateY(0);
}

/* ----- URL page ----- */
.url-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.url-card {
    padding: 1rem 1.125rem;
    background: var(--color-input);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-input);
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.url-card:hover {
    border-color: var(--color-cyan);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 0 16px var(--color-cyan-glow);
}

.url-card:active {
    opacity: 0.9;
}

.url-card__title {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--color-accent-text);
    background: linear-gradient(180deg, var(--color-accent-hover), var(--color-accent));
    padding: 0.25rem 0.625rem;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.url-card__text {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--color-text-muted);
    word-break: break-all;
    user-select: text;
    -webkit-user-select: text;
}

.copy-helper {
    position: fixed;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    padding: 0;
    border: 0;
    margin: 0;
    opacity: 0.01;
    z-index: -1;
}

.copy-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
}

.copy-modal.is-open {
    display: flex;
}

.copy-modal__box {
    width: 100%;
    max-width: 520px;
    padding: 1.5rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    color: var(--color-text);
    box-shadow: var(--shadow-soft);
}

.copy-modal__box p {
    margin: 0 0 12px;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.copy-modal__box strong {
    color: var(--color-accent);
}

.copy-modal__input {
    width: 100%;
    box-sizing: border-box;
    padding: 0.75rem 1rem;
    font-family: inherit;
    font-size: 0.875rem;
    color: var(--color-text);
    background: var(--color-input);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-input);
}

.copy-modal__btn {
    margin-top: 12px;
    padding: 0.6rem 1.25rem;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(180deg, var(--color-cta-hover), var(--color-cta));
    border: none;
    border-radius: var(--radius-btn);
    cursor: pointer;
}

.admin-toast {
    position: fixed;
    top: 1.25rem;
    right: 1.25rem;
    left: auto;
    max-width: 320px;
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
    background: var(--color-success);
    border-radius: var(--radius-btn);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 300;
}

.admin-toast.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ----- Banner page ----- */
.banner-section {
    margin-bottom: 1.5rem;
}

.banner-section__title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.banner-section__title i {
    color: var(--color-accent);
}

.banner-hero-preview {
    margin-bottom: 1.25rem;
    padding: 1.25rem;
    border-radius: var(--radius-card);
    background:
        linear-gradient(135deg, var(--color-cyan-soft), transparent 50%),
        linear-gradient(135deg, var(--color-gold-soft), transparent 55%),
        var(--color-input);
    border: 1px dashed var(--color-border-accent);
}

.banner-hero-preview__label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-accent-secondary);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.banner-hero-preview__frame {
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-preview {
    margin: 1rem 0;
    padding: 0.75rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-input);
    text-align: center;
}

.banner-preview img {
    max-width: 100%;
    height: auto;
    display: none;
}

.banner-preview img.is-visible {
    display: inline-block;
}

.banner-preview__empty {
    display: none;
    padding: 2rem 1rem;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.banner-preview__empty.is-visible {
    display: block;
}

.banner-upload {
    margin-top: 0.75rem;
}

.banner-upload__label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.admin-file-input {
    width: 100%;
    padding: 0.75rem;
    font-family: inherit;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    background: var(--color-input);
    border: 1px dashed var(--color-border-accent);
    border-radius: var(--radius-input);
    cursor: pointer;
}

.admin-file-input::file-selector-button {
    margin-right: 0.75rem;
    padding: 0.5rem 0.875rem;
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-accent-text);
    background: var(--color-accent);
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

/* ----- Responsive (mobile: top nav) ----- */
@media (max-width: 768px) {
    .admin-sidebar {
        display: none;
    }

    .admin-body {
        margin-left: 0;
        width: 100%;
    }

    .admin-topbar {
        height: auto;
        min-height: 56px;
        padding: 0.65rem 1rem;
        position: sticky;
        top: 0;
        z-index: 101;
    }

    .admin-topbar__brand {
        display: block;
    }

    .admin-topbar__title {
        font-size: 0.9375rem;
        min-width: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .admin-topbar__title i {
        display: none;
    }

    .admin-topbar__user span {
        display: none;
    }

    .admin-topbar__avatar {
        width: 32px;
        height: 32px;
        font-size: 0.8125rem;
    }

    .admin-mobile-nav {
        display: flex;
        align-items: stretch;
        gap: 0.4rem;
        padding: 0.5rem 0.75rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        background: var(--color-surface-2);
        border-bottom: 1px solid var(--color-border);
        position: sticky;
        top: 56px;
        z-index: 99;
    }

    .admin-mobile-nav::-webkit-scrollbar {
        display: none;
    }

    .admin-mobile-nav__link {
        flex: 1 0 auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.35rem;
        min-height: 40px;
        padding: 0.45rem 0.75rem;
        font-size: 0.6875rem;
        font-weight: 600;
        letter-spacing: 0.04em;
        color: var(--color-text-muted);
        text-decoration: none;
        white-space: nowrap;
        background: var(--color-input);
        border: 1px solid var(--color-border);
        border-radius: 999px;
        transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    }

    .admin-mobile-nav__link i {
        font-size: 1rem;
        flex-shrink: 0;
    }

    .admin-mobile-nav__link:hover {
        color: var(--color-text);
        border-color: rgba(255, 255, 255, 0.15);
    }

    .admin-mobile-nav__link.is-active {
        color: #ffffff;
        background: linear-gradient(180deg, var(--color-accent-hover), var(--color-accent));
        border-color: transparent;
        box-shadow: var(--shadow-gold);
    }

    .admin-mobile-nav__link.is-active i {
        color: inherit;
    }

    .admin-mobile-nav__link--logout.is-active {
        color: #fff;
        background: var(--color-cta);
        box-shadow: var(--shadow-cta);
    }

    .admin-mobile-nav__link--logout:not(.is-active):hover {
        color: #f87171;
        border-color: rgba(248, 113, 113, 0.35);
    }

    .admin-main {
        max-width: none;
        padding: 1rem 0.75rem 1.5rem;
    }

    .admin-panel {
        padding: 1rem;
        border-radius: 14px;
    }

    .admin-panel__title {
        font-size: 1rem;
        margin-bottom: 1.25rem;
        padding-bottom: 0.875rem;
    }

    .admin-submit {
        min-height: 48px;
    }

    .admin-toast {
        top: auto;
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .admin-topbar__title {
        font-size: 0.875rem;
    }

    .admin-mobile-nav {
        padding: 0.45rem 0.5rem;
        gap: 0.3rem;
    }

    .admin-mobile-nav__link {
        flex-direction: column;
        gap: 0.15rem;
        min-width: 3.5rem;
        padding: 0.4rem 0.5rem;
        font-size: 0.5625rem;
    }

    .admin-mobile-nav__link i {
        font-size: 1.125rem;
    }

    .admin-row {
        flex-wrap: wrap;
    }

    .admin-row__check {
        order: -1;
    }

    .url-card__text {
        font-size: 0.6875rem;
    }

    .banner-hero-preview {
        padding: 0.875rem;
    }

    .copy-modal {
        padding: 12px;
    }

    .copy-modal__box {
        padding: 1rem;
    }
}
