:root {
    color-scheme: light;
    --bg-start: #efe3d2;
    --bg-end: #e6d6c1;
    --bg-glow-primary: rgba(187, 90, 60, 0.16);
    --bg-glow-accent: rgba(53, 109, 99, 0.14);
    --panel: rgba(255, 249, 241, 0.94);
    --panel-soft: rgba(255, 255, 255, 0.52);
    --line: rgba(58, 40, 27, 0.12);
    --text: #25170f;
    --muted: #7d6759;
    --primary: #bb5a3c;
    --primary-strong: #9f4428;
    --primary-soft: rgba(187, 90, 60, 0.14);
    --accent: #356d63;
    --accent-soft: rgba(53, 109, 99, 0.14);
    --danger: #b64238;
    --danger-soft: rgba(182, 66, 56, 0.14);
    --shadow: 0 18px 40px rgba(90, 56, 35, 0.14);
    --button-muted-bg: rgba(37, 23, 15, 0.06);
    --empty-bg: rgba(255, 255, 255, 0.36);
    --status-bg: rgba(255, 255, 255, 0.45);
    --nav-bg: rgba(255, 248, 239, 0.94);
    --nav-line: rgba(58, 40, 27, 0.08);
    --overlay-bg: rgba(36, 22, 14, 0.28);
    --toast-bg: rgba(255, 250, 244, 0.96);
    --toast-line: rgba(58, 40, 27, 0.12);
    --toast-shadow: 0 18px 34px rgba(90, 56, 35, 0.18);
    --intro-bg: rgba(239, 227, 210, 0.92);
    --intro-text: #25170f;
    --intro-muted: #7d6759;
}

:root.dark {
    color-scheme: dark;
    --bg-start: #140f0d;
    --bg-end: #201613;
    --bg-glow-primary: rgba(255, 128, 85, 0.13);
    --bg-glow-accent: rgba(113, 196, 180, 0.1);
    --panel: rgba(36, 25, 20, 0.92);
    --panel-soft: rgba(255, 255, 255, 0.04);
    --line: rgba(255, 236, 216, 0.08);
    --text: #f6ede3;
    --muted: #baa89a;
    --primary: #ff8d63;
    --primary-strong: #ff7446;
    --primary-soft: rgba(255, 141, 99, 0.14);
    --accent: #7fd4c1;
    --accent-soft: rgba(127, 212, 193, 0.14);
    --danger: #ff887e;
    --danger-soft: rgba(255, 136, 126, 0.14);
    --shadow: 0 22px 44px rgba(0, 0, 0, 0.34);
    --button-muted-bg: rgba(255, 255, 255, 0.06);
    --empty-bg: rgba(255, 255, 255, 0.03);
    --status-bg: rgba(255, 255, 255, 0.05);
    --nav-bg: rgba(29, 20, 16, 0.94);
    --nav-line: rgba(255, 255, 255, 0.08);
    --overlay-bg: rgba(7, 6, 8, 0.54);
    --toast-bg: rgba(41, 28, 22, 0.96);
    --toast-line: rgba(255, 255, 255, 0.07);
    --toast-shadow: 0 18px 34px rgba(0, 0, 0, 0.34);
    --intro-bg: rgba(20, 15, 13, 0.92);
    --intro-text: #f6ede3;
    --intro-muted: #baa89a;
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

[hidden] {
    display: none !important;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    color: var(--text);
    font-family: 'Manrope', sans-serif;
    background:
        radial-gradient(circle at top left, var(--bg-glow-primary), transparent 34%),
        radial-gradient(circle at top right, var(--bg-glow-accent), transparent 28%),
        linear-gradient(180deg, var(--bg-start) 0%, var(--bg-end) 100%);
    transition: background .35s ease, color .35s ease;
}

button,
input,
textarea {
    font: inherit;
}

body.is-booting {
    overflow: hidden;
}

body.has-overlay {
    overflow: hidden;
}

.app-shell {
    max-width: 420px;
    margin: 0 auto;
    padding: 18px 16px 104px;
    opacity: 0;
    transform: translateY(18px) scale(0.985);
    transition: opacity .45s ease, transform .45s ease;
}

body.is-app-ready .app-shell {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-label {
    display: inline-flex;
    align-items: center;
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--primary-soft);
    border: 1px solid color-mix(in srgb, var(--primary) 20%, transparent);
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.refresh-button {
    position: relative;
    border: 0;
    border-radius: 999px;
    padding: 10px 14px;
    background: var(--button-muted-bg);
    color: var(--text);
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: opacity .2s ease, transform .2s ease, background .2s ease;
}

.icon-button,
.theme-toggle {
    position: relative;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0;
    background: var(--button-muted-bg);
    color: var(--text);
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.icon-button:hover,
.theme-toggle:hover {
    transform: translateY(-1px);
    background: var(--panel-soft);
}

.icon-button:active,
.theme-toggle:active {
    transform: translateY(1px);
}

.icon-button__icon {
    width: 18px;
    height: 18px;
    display: block;
    margin: auto;
}

.notification-dot {
    position: absolute;
    top: 9px;
    right: 9px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--danger);
    box-shadow: 0 0 0 2px var(--panel);
}

.theme-toggle__icon {
    position: absolute;
    inset: 0;
    width: 18px;
    height: 18px;
    margin: auto;
    transition: opacity .24s ease, transform .24s ease;
}

.theme-toggle__icon--sun {
    opacity: 0;
    transform: scale(.78) rotate(-10deg);
}

.theme-toggle__icon--moon {
    opacity: 1;
    transform: scale(1) rotate(0);
}

:root.dark .theme-toggle__icon--sun {
    opacity: 1;
    transform: scale(1) rotate(0);
}

:root.dark .theme-toggle__icon--moon {
    opacity: 0;
    transform: scale(.78) rotate(10deg);
}

.refresh-button:hover {
    transform: translateY(-1px);
}

.refresh-button:disabled,
.refresh-button.is-loading {
    opacity: 0.6;
    cursor: default;
    transform: none;
}

.view-panel {
    display: none;
    animation: panel-fade .18s ease;
}

.view-panel.is-active {
    display: block;
}

.hero-card,
.card,
.profile-card,
.list-item {
    border: 1px solid var(--line);
    background: var(--panel);
    box-shadow: var(--shadow);
}

.hero-card {
    border-radius: 28px;
    padding: 22px;
    margin-bottom: 16px;
}

.hero-label,
.card-label {
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-title,
.section-title,
.profile-name,
.stat-value,
.intro-line {
    font-family: 'Unbounded', sans-serif;
    letter-spacing: -0.04em;
}

.hero-title {
    margin: 0 0 8px;
    font-size: 28px;
    line-height: 1.08;
}

.hero-text,
.card-text,
.empty-text {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    background: var(--button-muted-bg);
    color: var(--text);
}

.pill--accent {
    background: var(--accent-soft);
    color: var(--accent);
}

.pill--primary {
    background: var(--primary-soft);
    color: var(--primary);
}



.stats-grid--triple {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stats-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 16px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--panel-soft);
    overflow: hidden;
}

.stats-strip__item {
    padding: 16px 12px;
    text-align: center;
    border-right: 1px solid var(--line);
}

.stats-strip__item:last-child {
    border-right: 0;
}

.stats-strip .stat-label {
    margin-bottom: 6px;
    font-size: 11px;
}

.stats-strip .stat-value {
    font-size: 21px;
}

.stat-card,
.card,
.profile-card,
.empty-card {
    border-radius: 22px;
    padding: 18px;
}

.stat-card {
    border: 1px solid var(--line);
    background: var(--panel-soft);
}

.stat-label {
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 12px;
}

.stat-value {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.card-stack {
    display: grid;
    gap: 12px;
    margin-bottom: 16px;
}

.section-title {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.1;
}

.section-subtitle {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.profile-card {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.avatar {
    width: 68px;
    height: 68px;
    flex-shrink: 0;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, #d88b49 100%);
    color: #fff8f2;
    font-size: 24px;
    font-weight: 800;
}

:root.dark .avatar {
    background: linear-gradient(135deg, var(--primary) 0%, #b15b38 100%);
}

.profile-name {
    margin: 0 0 5px;
    font-size: 20px;
    font-weight: 700;
}

.profile-meta {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
    word-break: break-word;
}

.detail-list {
    display: grid;
    gap: 10px;
}

.detail-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}

.detail-row:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.detail-key {
    color: var(--muted);
    font-size: 13px;
}

.detail-value {
    max-width: 58%;
    text-align: right;
    font-size: 14px;
    font-weight: 800;
    word-break: break-word;
}

.list {
    display: grid;
    gap: 12px;
}

.list-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    border-radius: 20px;
    padding: 16px;
}

.list-title {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 800;
}

.list-meta {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.empty-card {
    border: 1px dashed color-mix(in srgb, var(--text) 16%, transparent);
    background: var(--empty-bg);
}

.referral-code {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 48px;
    width: 100%;
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    background: var(--button-muted-bg);
    color: var(--text);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
    word-break: break-all;
}

.referral-actions {
    margin-top: 12px;
}

.copy-button {
    width: 100%;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-strong) 100%);
    color: #fffaf5;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 24px color-mix(in srgb, var(--primary) 24%, transparent);
    transition: transform .2s ease, opacity .2s ease;
}

.copy-button:hover {
    transform: translateY(-1px);
}

.copy-button:active {
    transform: translateY(1px);
}

.ghost-button {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--button-muted-bg);
    color: var(--text);
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

.ghost-button:hover {
    transform: translateY(-1px);
    background: var(--panel-soft);
}

.ghost-button:active {
    transform: translateY(1px);
}

.notification-card {
    position: relative;
}

.notification-card--unread {
    border-color: color-mix(in srgb, var(--primary) 34%, var(--line));
    background: color-mix(in srgb, var(--panel) 88%, var(--primary-soft));
}

.notification-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.notification-card__badge {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.notification-card__date {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.subscription-card {
    margin-bottom: 16px;
}

.subscription-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.subscription-card__title-row {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.subscription-card__title {
    margin-bottom: 0;
}

.subscription-card__state {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.subscription-card__state--active {
    background: var(--accent-soft);
    color: var(--accent);
}

.subscription-card__state--inactive {
    background: var(--danger-soft);
    color: var(--danger);
}

.subscription-card__state--idle {
    background: var(--button-muted-bg);
    color: var(--muted);
}

.subscription-card__hint {
    margin-top: 14px;
}

.subscription-card__action {
    margin-top: 14px;
}

.subscription-status-dot {
    position: relative;
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    border-radius: 50%;
}

.subscription-status-dot--active {
    background: var(--accent);
    box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent) 18%, transparent);
    animation: subscription-pulse 1.7s ease-out infinite;
}

.subscription-status-dot--inactive {
    background: var(--danger);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--danger) 14%, transparent);
}

.subscription-status-dot--idle {
    background: var(--muted);
    opacity: 0.55;
}

.setup-links,
.subscription-actions {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.setup-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.setup-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 88px;
    width: 100%;
    border-radius: 16px;
    padding: 12px 10px;
    background: var(--button-muted-bg);
    border: 1px solid var(--line);
    color: var(--text);
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
    transition: transform .2s ease, background .2s ease;
}

.setup-link:hover {
    transform: translateY(-1px);
    background: var(--panel-soft);
}

.setup-link__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.setup-link__icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.setup-link__label {
    line-height: 1.2;
}

.setup-link--disabled {
    color: var(--muted);
    cursor: default;
    pointer-events: none;
}

.setup-link--disabled .setup-link__icon {
    color: var(--muted);
}

@keyframes subscription-pulse {
    0% {
        box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 28%, transparent);
    }
    70% {
        box-shadow: 0 0 0 10px color-mix(in srgb, var(--accent) 0%, transparent);
    }
    100% {
        box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 0%, transparent);
    }
}

@media (max-width: 380px) {
    .setup-links {
        gap: 8px;
    }

    .setup-link {
        min-height: 82px;
        padding: 10px 8px;
        font-size: 12px;
    }
}

.status-bar {
    margin-bottom: 16px;
    border-radius: 18px;
    padding: 14px 16px;
    background: var(--status-bg);
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.bottom-nav {
    position: fixed;
    left: 50%;
    bottom: 12px;
    z-index: 20;
    transform: translateX(-50%) translateY(18px);
    width: min(420px, calc(100% - 24px));
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    padding: 8px;
    border-radius: 24px;
    border: 1px solid var(--nav-line);
    background: var(--nav-bg);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease, transform .35s ease;
}

body.is-app-ready .bottom-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border: 0;
    border-radius: 16px;
    padding: 8px 6px;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.nav-button:hover {
    transform: translateY(-1px);
}

.nav-button.is-active {
    background: var(--primary-soft);
    color: var(--primary);
}

.nav-button--danger {
    color: var(--danger);
}

.nav-icon {
    width: 20px;
    height: 20px;
    display: block;
    flex-shrink: 0;
    opacity: 0.98;
}

.intro-screen {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--intro-bg);
    transition: opacity .45s ease, visibility .45s ease;
}

.intro-screen.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.intro-orb {
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    filter: blur(26px);
    opacity: 0.45;
}

.intro-orb--left {
    left: -70px;
    top: -30px;
    background: var(--primary-soft);
}

.intro-orb--right {
    right: -90px;
    bottom: -30px;
    background: var(--accent-soft);
}

.intro-stage {
    position: relative;
    z-index: 1;
    width: min(320px, calc(100% - 48px));
    text-align: center;
}

.intro-kicker {
    margin: 0 0 18px;
    color: var(--intro-muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.intro-line,
.intro-subline {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .32s ease, transform .32s ease;
}

.intro-line.is-visible,
.intro-subline.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.intro-line {
    margin: 0;
    color: var(--intro-text);
    font-size: clamp(28px, 7vw, 42px);
    line-height: 1.05;
}

.intro-subline {
    margin: 14px 0 0;
    color: var(--intro-muted);
    font-size: 15px;
    line-height: 1.45;
}

.overlay-loader {
    position: fixed;
    inset: 0;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
}

.overlay-loader.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.overlay-loader__backdrop {
    position: absolute;
    inset: 0;
    background: var(--overlay-bg);
    backdrop-filter: blur(3px);
}

.overlay-loader__panel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 168px;
    padding: 18px 18px 16px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: var(--panel);
    box-shadow: var(--shadow);
    text-align: center;
}

.loader-spinner {
    width: 42px;
    height: 42px;
    margin: 0 auto 12px;
    border-radius: 50%;
    border: 3px solid color-mix(in srgb, var(--primary) 18%, transparent);
    border-top-color: var(--primary);
    animation: spin .8s linear infinite;
}

.overlay-loader__text {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.toast-stack {
    position: fixed;
    top: 18px;
    left: 50%;
    z-index: 70;
    display: grid;
    gap: 10px;
    width: min(360px, calc(100% - 28px));
    transform: translateX(-50%);
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid var(--toast-line);
    background: var(--toast-bg);
    color: var(--text);
    box-shadow: var(--toast-shadow);
    opacity: 0;
    transform: translateY(-10px) scale(.98);
    transition: opacity .2s ease, transform .2s ease;
}

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

.toast.is-removing {
    opacity: 0;
    transform: translateY(-8px) scale(.98);
}

.toast__dot {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--primary);
}

.toast--success .toast__dot {
    background: var(--accent);
}

.toast--error .toast__dot {
    background: var(--danger);
}

.toast__text {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

@keyframes panel-fade {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 380px) {
    .app-shell {
        padding-left: 12px;
        padding-right: 12px;
    }



    .stats-grid--triple {
        gap: 8px;
    }

    .stats-grid--triple .stat-card {
        padding: 14px 12px;
    }

    .stats-grid--triple .stat-value {
        font-size: 20px;
    }

    .stats-strip {
        gap: 0;
    }

    .stats-strip__item {
        padding: 14px 8px;
    }

    .stats-strip .stat-value {
        font-size: 18px;
    }

    .bottom-nav {
        gap: 4px;
        width: calc(100% - 16px);
    }

    .nav-button {
        min-height: 44px;
        padding-left: 4px;
        padding-right: 4px;
    }

    .nav-icon {
        width: 18px;
        height: 18px;
    }

    .toast-stack {
        width: calc(100% - 18px);
    }
}

.hero-text[hidden],
.pill-row[hidden] {
    display: none !important;
}

.trial-offer {
    margin-bottom: 16px;
}

.trial-offer__title {
    margin: 0 0 10px;
    font-family: 'Unbounded', sans-serif;
    font-size: 18px;
    line-height: 1.22;
    letter-spacing: -0.03em;
}

.trial-offer__text {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.trial-offer__button {
    width: 100%;
    margin-top: 14px;
}

.copy-button:disabled,
.refresh-button:disabled,
.theme-toggle:disabled {
    opacity: 0.6;
    cursor: default;
    transform: none;
    box-shadow: none;
}

@media (max-width: 380px) {
    .trial-offer__title {
        font-size: 16px;
    }
}
