/* =========================
   VARIABLES
========================= */
:root {
    --bg: #050816;
    --bg-soft: rgba(255,255,255,0.05);
    --border: rgba(255,255,255,0.12);

    --text: #ffffff;
    --muted: #a8b0c3;

    --primary: #4f8cff;
    --primary-2: #7c5cff;
    --accent: #00d4ff;

    --shadow: 0 20px 60px rgba(0,0,0,0.35);
}

/* =========================
   RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: Inter, system-ui, Arial, sans-serif;
    background:
            radial-gradient(circle at 15% 20%, rgba(62,166,255,0.12), transparent 25%),
            radial-gradient(circle at 85% 75%, rgba(124,92,255,0.14), transparent 25%),
            radial-gradient(circle at 50% 50%, rgba(0,212,255,0.06), transparent 35%),
            linear-gradient(180deg, #050816 0%, #040611 100%);
    color: var(--text);
    scroll-behavior: smooth;
    overflow-x: hidden;
    min-height: 100vh;
}

/* =========================
   BACKGROUND
========================= */
#bg-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.22;
    z-index: 0;
    pointer-events: none;
}

.glow-1 {
    width: 460px;
    height: 460px;
    background: #2b7cff;
    top: -100px;
    left: -100px;
    animation: pulse1 9s infinite;
}

.glow-2 {
    width: 420px;
    height: 420px;
    background: #7c5cff;
    bottom: -120px;
    right: -80px;
    animation: pulse2 10s infinite;
}

.glow-3 {
    width: 320px;
    height: 320px;
    background: #00d4ff;
    top: 40%;
    left: 55%;
    animation: pulse3 12s infinite;
}

@keyframes pulse1 {
    50% { transform: scale(1.1) translate(20px,10px); }
}
@keyframes pulse2 {
    50% { transform: scale(1.08) translate(-15px,-12px); }
}
@keyframes pulse3 {
    50% { transform: scale(1.15) translate(-10px,20px); }
}

/* =========================
   GLOBAL LAYOUT
========================= */
.navbar,
.hero,
.section,
.footer,
.admin-wrap {
    width: min(1120px, 92%);
    margin-inline: auto;
    position: relative;
    z-index: 2;
}

/* =========================
   NAVBAR
========================= */
.navbar {
    margin-top: 24px;
    padding: 18px 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;

    background: rgba(8,12,28,0.6);
    border: 1px solid var(--border);
    backdrop-filter: blur(14px);
    border-radius: 20px;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
}

.logo span {
    color: var(--accent);
}

.site-logo {
    max-height: 42px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    transition: 0.25s;
    font-weight: 500;
}

.nav-links a:hover {
    color: #fff;
}

.lang-switch-inline {
    display: flex;
    align-items: center;
}

/* =========================
   LANGUAGE SWITCHER
========================= */
.language-switcher {
    display: flex;
    gap: 8px;
    align-items: center;
}

.language-switcher a {
    min-width: 42px;
    text-align: center;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    color: var(--muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 700;
}

.language-switcher a.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #fff;
}

/* =========================
   BUTTONS PREMIUM
========================= */
.btn,
.btn-nav {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    overflow: hidden;
    transition:
            transform 0.28s ease,
            box-shadow 0.28s ease,
            opacity 0.28s ease,
            border-color 0.28s ease;
    will-change: transform;
}

.btn::before,
.btn-nav::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
            120deg,
            transparent 0%,
            rgba(255,255,255,0.10) 30%,
            rgba(255,255,255,0.28) 50%,
            transparent 100%
    );
    transform: skewX(-20deg);
    transition: left 0.8s ease;
}

.btn:hover::before,
.btn-nav:hover::before {
    left: 130%;
}

.btn:hover,
.btn-nav:hover {
    transform: translateY(-4px) scale(1.02);
}

.btn:active,
.btn-nav:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-primary,
.btn-nav {
    background: linear-gradient(135deg, #4f8cff 0%, #7c5cff 100%);
    color: #fff !important;
    box-shadow:
            0 12px 30px rgba(79, 140, 255, 0.28),
            0 0 0 1px rgba(255,255,255,0.06) inset;
}

.btn-primary:hover,
.btn-nav:hover {
    box-shadow:
            0 18px 45px rgba(79, 140, 255, 0.40),
            0 0 22px rgba(124, 92, 255, 0.28);
}

.btn-secondary {
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(12px);
    box-shadow:
            0 10px 24px rgba(0,0,0,0.16),
            0 0 0 1px rgba(255,255,255,0.03) inset;
}

.btn-secondary:hover {
    border-color: rgba(79, 140, 255, 0.35);
    box-shadow:
            0 18px 38px rgba(0,0,0,0.22),
            0 0 18px rgba(79, 140, 255, 0.14);
}

.full-btn {
    width: 100%;
    margin-top: 18px;
}

/* =========================
   HERO
========================= */
.hero {
    padding: 90px 0 30px;
}

.hero-content {
    max-width: 780px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 22px;
    font-weight: 600;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5.8rem);
    line-height: 0.98;
    letter-spacing: -2px;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #dce9ff 60%, #b8d2ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    color: var(--muted);
    margin-bottom: 28px;
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 620px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* =========================
   SECTION HEAD
========================= */
.section {
    margin-top: 90px;
}

.section-head {
    margin-bottom: 28px;
}

.section-tag {
    color: #7fb5ff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.section h2 {
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.05;
}

/* =========================
   GRIDS
========================= */
.plans-grid,
.promo-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

/* =========================
   CARDS
========================= */
.plan-card,
.promo-card,
.admin-card {
    padding: 28px;
    border-radius: 28px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(14px);
    transition:
            transform 0.35s ease,
            border-color 0.35s ease,
            box-shadow 0.35s ease;
}

.plan-card:hover,
.promo-card:hover,
.admin-card:hover {
    transform: translateY(-8px);
    border-color: rgba(79, 140, 255, 0.28);
    box-shadow:
            0 24px 60px rgba(0,0,0,0.28),
            0 0 22px rgba(79, 140, 255, 0.10);
}

.plan-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.plan-country {
    font-size: 0.95rem;
    color: #d7e6ff;
    font-weight: 700;
}

.badge-popular,
.promo-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(79, 140, 255, 0.14);
    border: 1px solid rgba(79, 140, 255, 0.18);
    font-size: 0.82rem;
    font-weight: 700;
    color: #b7d1ff;
}

.plan-card h3,
.promo-card h3 {
    font-size: 1.45rem;
    line-height: 1.2;
    margin-bottom: 12px;
}

.plan-card p,
.promo-card p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 18px;
}

.price-box {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    margin-top: 12px;
}

.price-box strong {
    font-size: 2rem;
    line-height: 1;
}

.price-box span {
    color: var(--muted);
    font-size: 0.95rem;
}

/* =========================
   FOOTER
========================= */
.footer {
    text-align: center;
    padding: 60px 0 30px;
    color: var(--muted);
}

.footer a {
    color: var(--muted);
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
}

/* =========================
   ADMIN
========================= */
.admin-wrap {
    margin-top: 40px;
}

.admin-card input,
.admin-card textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.04);
    color: #fff;
    margin: 8px 0 16px;
}

.admin-dashboard-card {
    max-width: 980px;
    margin: 80px auto;
    padding: 40px;
    border-radius: 28px;
    background: rgba(10, 16, 34, 0.72);
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(18px);
}

.admin-header {
    margin-bottom: 28px;
}

.admin-kicker {
    font-size: 0.9rem;
    font-weight: 700;
    color: #7fb5ff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.admin-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
    line-height: 1.1;
}

.admin-subtext {
    color: var(--muted);
    max-width: 700px;
    line-height: 1.7;
    font-size: 1rem;
}

.admin-menu-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.admin-menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 22px 24px;
    border-radius: 22px;
    text-decoration: none;
    color: #fff;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.admin-menu-item strong {
    display: block;
    font-size: 1.08rem;
    margin-bottom: 6px;
}

.admin-menu-item span {
    display: block;
    color: var(--muted);
    font-size: 0.95rem;
}

.admin-arrow {
    font-size: 1.5rem;
    color: #8ab8ff !important;
    flex-shrink: 0;
}

/* =========================
   ANALYTICS
========================= */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.stat-box {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.stat-box span {
    display: block;
    color: var(--muted);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.stat-box strong {
    font-size: 2.2rem;
    line-height: 1;
}

.map-card {
    margin-top: 30px;
    padding: 24px;
    border-radius: 28px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.map-card h2 {
    margin-bottom: 18px;
}

#worldMap {
    width: 100%;
    height: 520px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}

.analytics-country-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.analytics-country-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
}

.analytics-live-bar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 12px 0 24px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--muted);
    font-size: 0.95rem;
}

.live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #27ff91;
    box-shadow: 0 0 0 0 rgba(39,255,145,0.6);
    animation: livePulse 1.8s infinite;
}

@keyframes livePulse {
    70% {
        transform: scale(1.15);
        box-shadow: 0 0 0 12px rgba(39,255,145,0);
    }
}

/* =========================
   SETTINGS TOGGLE
========================= */
.admin-form-premium {
    margin-top: 24px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: #fff;
}

.settings-toggle-card {
    margin-top: 18px;
    padding: 22px 24px;
    border-radius: 22px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.settings-toggle-card strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.05rem;
}

.settings-toggle-card span {
    display: block;
    color: var(--muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.switch {
    position: relative;
    display: inline-block;
    width: 66px;
    height: 36px;
    flex-shrink: 0;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    inset: 0;
    cursor: pointer;
    background: rgba(255,255,255,0.12);
    border-radius: 999px;
    transition: 0.3s ease;
    border: 1px solid rgba(255,255,255,0.08);
}

.slider::before {
    content: "";
    position: absolute;
    width: 28px;
    height: 28px;
    left: 4px;
    top: 3px;
    background: #fff;
    border-radius: 50%;
    transition: 0.3s ease;
}

.switch input:checked + .slider {
    background: linear-gradient(135deg, #4f8cff, #7c5cff);
}

.switch input:checked + .slider::before {
    transform: translateX(29px);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 980px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 70px;
    }

    .hero h1 {
        font-size: 2.9rem;
        letter-spacing: -1px;
    }

    .plans-grid,
    .promo-grid {
        grid-template-columns: 1fr;
    }

    .price-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-dashboard-card {
        padding: 24px;
        margin: 40px auto;
    }

    .settings-toggle-card,
    .analytics-country-item,
    .admin-menu-item {
        flex-direction: column;
        align-items: flex-start;
    }

    #worldMap {
        height: 380px;
    }
}
/* =========================
   TWO FACTOR AUTH
========================= */

.twofa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.twofa-card {
    padding: 28px;
    border-radius: 28px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
}

.twofa-card h2 {
    margin-bottom: 18px;
}

.twofa-qr {
    width: 220px;
    max-width: 100%;
    border-radius: 18px;
    background: white;
    padding: 12px;
    display: block;
    margin-bottom: 20px;
}

.twofa-secret-label {
    margin-bottom: 8px;
    color: var(--muted);
}

.twofa-secret {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: #8ec5ff;
    font-size: 1rem;
    word-break: break-word;
}
/* =========================
   SOCIAL CONTACT SECTION
========================= */

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.social-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 24px;
    border-radius: 24px;
    text-decoration: none;
    color: #fff;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    transition:
            transform 0.28s ease,
            border-color 0.28s ease,
            box-shadow 0.28s ease,
            background 0.28s ease;
}

.social-card:hover {
    transform: translateY(-6px);
    border-color: rgba(79,140,255,0.28);
    background: rgba(255,255,255,0.06);
    box-shadow:
            0 20px 50px rgba(0,0,0,0.25),
            0 0 18px rgba(79,140,255,0.12);
}

.social-card strong {
    font-size: 1.15rem;
}

.social-card span {
    color: var(--muted);
    line-height: 1.6;
}
/* =========================
   PREMIUM SOCIAL SECTION
========================= */

.social-premium-section {
    position: relative;
}

.social-premium-wrap {
    display: grid;
    grid-template-columns: 1.6fr 0.9fr;
    gap: 28px;
    align-items: stretch;
}

.social-premium-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.social-premium-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px 24px;
    border-radius: 28px;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(18px);
    overflow: hidden;
    transition:
            transform 0.3s ease,
            border-color 0.3s ease,
            box-shadow 0.3s ease,
            background 0.3s ease;
}

.social-premium-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
            radial-gradient(circle at top left, rgba(99, 102, 241, 0.12), transparent 45%),
            radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.10), transparent 42%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.social-premium-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.28);
    box-shadow:
            0 24px 60px rgba(0,0,0,0.28),
            0 0 30px rgba(99,102,241,0.12);
    background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.04));
}

.social-premium-card:hover::before {
    opacity: 1;
}

.social-icon {
    position: relative;
    z-index: 2;
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 1.8rem;
    background: linear-gradient(135deg, rgba(79,140,255,0.18), rgba(146,92,255,0.16));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.social-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.social-content strong {
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.social-content span {
    color: var(--muted);
    line-height: 1.6;
    font-size: 0.96rem;
}

.social-arrow {
    position: relative;
    z-index: 2;
    margin-left: auto;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.72);
    transition: transform 0.28s ease, color 0.28s ease;
}

.social-premium-card:hover .social-arrow {
    transform: translate(4px, -4px);
    color: #9ec8ff;
}

/* CTA SIDE */

.social-premium-cta {
    position: relative;
    padding: 34px 30px;
    border-radius: 32px;
    background:
            linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.035));
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 22px 60px rgba(0,0,0,0.24);
}

.social-premium-cta::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -70px;
    top: -70px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79,140,255,0.18), transparent 65%);
    filter: blur(8px);
}

.social-premium-cta::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    left: -60px;
    bottom: -60px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(146,92,255,0.16), transparent 65%);
    filter: blur(8px);
}

.social-premium-cta > * {
    position: relative;
    z-index: 2;
}

.social-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(79,140,255,0.12);
    border: 1px solid rgba(79,140,255,0.18);
    color: #9ec8ff;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.social-premium-cta h3 {
    font-size: clamp(1.8rem, 2vw, 2.4rem);
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.social-premium-cta p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 26px;
    max-width: 420px;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
    .social-premium-wrap {
        grid-template-columns: 1fr;
    }

    .social-premium-cta {
        min-height: 280px;
    }
}

@media (max-width: 720px) {
    .social-premium-grid {
        grid-template-columns: 1fr;
    }

    .social-premium-card {
        padding: 20px;
        border-radius: 24px;
    }

    .social-icon {
        width: 54px;
        height: 54px;
        min-width: 54px;
        font-size: 1.5rem;
    }

    .social-premium-cta {
        padding: 28px 22px;
        border-radius: 26px;
    }

    .social-premium-cta h3 {
        font-size: 1.7rem;
    }
}
/* =========================
   LEGAL PAGES
========================= */

.legal-page {
    padding-top: 140px;
    padding-bottom: 100px;
}

.legal-wrap {
    max-width: 920px;
    margin: 0 auto;
}

.legal-content {
    margin-top: 28px;
    padding: 32px;
    border-radius: 28px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    line-height: 1.9;
    color: #d7deee;
    font-size: 1.02rem;
    white-space: pre-wrap;
    box-shadow: 0 20px 50px rgba(0,0,0,0.22);
}