/* ═══════════════════════════════════════════
   Lucky Bear Zerkalo — Dark Premium Theme
   Domain: luckybear-zerkalo.com
   ═══════════════════════════════════════════ */

:root {
    --bg: #06090f;
    --bg-card: #0d1117;
    --bg-section: #0a0e16;
    --bg-hero: #060a12;
    --text: #e2e8f0;
    --text-muted: #8892a4;
    --text-heading: #f8fafc;
    --accent: #00e5ff;
    --accent-glow: rgba(0, 229, 255, 0.15);
    --accent2: #a5ff00;
    --accent2-glow: rgba(165, 255, 0, 0.15);
    --gold: #ffd700;
    --border: rgba(255,255,255,0.06);
    --radius: 12px;
    --radius-lg: 20px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --max-w: 1200px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: #33ecff; }

img { max-width: 100%; height: auto; }

.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
}

/* ── HEADER ─────────────────────────────── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(6, 9, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text-heading);
    letter-spacing: -0.02em;
    flex-shrink: 0;
}
.logo:hover { color: var(--accent); }
.logo svg { flex-shrink: 0; }

.nav {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.nav::-webkit-scrollbar { display: none; }

.nav-link {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 8px;
    white-space: nowrap;
    transition: all var(--transition);
}
.nav-link:hover { color: var(--text-heading); background: rgba(255,255,255,0.05); }

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.burger span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ── BUTTONS ────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-decoration: none;
    gap: 8px;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #00b8d4);
    color: #000;
    box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 229, 255, 0.3);
    color: #000;
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 1.5px solid var(--accent);
}
.btn-outline:hover {
    background: var(--accent-glow);
    transform: translateY(-2px);
}

.btn-sm { padding: 8px 18px; font-size: 0.85rem; border-radius: 8px; }
.btn-full { width: 100%; }

.center-btn { text-align: center; margin-top: 32px; }

/* ── HERO ───────────────────────────────── */
.hero {
    position: relative;
    padding: 140px 0 80px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0, 229, 255, 0.08), transparent),
        radial-gradient(ellipse 40% 60% at 80% 30%, rgba(165, 255, 0, 0.04), transparent),
        var(--bg-hero);
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent-glow);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-heading);
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.2;
}
.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ── PAGE HERO (subpages) ────────────────── */
.page-hero {
    padding: 120px 0 60px;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0, 229, 255, 0.06), transparent),
        var(--bg-hero);
    text-align: center;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-heading);
    margin-bottom: 16px;
}

.page-hero-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 28px;
}

.breadcrumb {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.breadcrumb a { color: var(--accent); }

/* ── SECTIONS ───────────────────────────── */
.section {
    padding: 80px 0;
}

.section-dark {
    background: var(--bg-section);
}

.section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 16px;
}

.section-sub {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

/* ── CONTENT BLOCK ──────────────────────── */
.content-block {
    max-width: 820px;
}

.content-block h2 {
    margin-top: 48px;
    margin-bottom: 16px;
}
.content-block h2:first-child { margin-top: 0; }

.content-block p {
    margin-bottom: 16px;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.8;
}

.content-block ul, .content-block ol {
    margin: 16px 0;
    padding-left: 24px;
}
.content-block li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.content-block strong { color: var(--text-heading); }

/* ── TWO-COL LAYOUT ─────────────────────── */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 32px;
}

.col-text p { margin-bottom: 16px; }

.col-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ── FEATURE CARDS ──────────────────────── */
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: all var(--transition);
}
.feature-card:hover {
    border-color: rgba(0, 229, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.feature-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── GAME CARDS ─────────────────────────── */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.game-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    text-decoration: none;
}
.game-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 229, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.game-img {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.game-info {
    padding: 14px;
}
.game-info h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 4px;
}
.game-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ── BONUS CARDS ────────────────────────── */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.bonus-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    position: relative;
    transition: all var(--transition);
}
.bonus-card:hover {
    border-color: rgba(0, 229, 255, 0.15);
    transform: translateY(-3px);
}

.bonus-welcome {
    border-color: rgba(0, 229, 255, 0.2);
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.05), rgba(165, 255, 0, 0.03));
}

.bonus-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--accent);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 6px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bonus-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 12px;
}

.bonus-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* ── PROVIDERS ──────────────────────────── */
.providers-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
    justify-content: center;
}

.provider {
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: all var(--transition);
}
.provider:hover {
    border-color: rgba(0, 229, 255, 0.15);
    color: var(--text-heading);
}

/* ── STEPS ──────────────────────────────── */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.step {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
}
.step:hover {
    border-color: rgba(0, 229, 255, 0.15);
    transform: translateY(-3px);
}

.step-num {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), #00b8d4);
    color: #000;
    font-weight: 800;
    font-size: 1.2rem;
    border-radius: 50%;
    margin-bottom: 16px;
}

.step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 10px;
}

.step p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── FAQ ────────────────────────────────── */
.faq-list {
    max-width: 800px;
    margin-top: 32px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item[open] {
    border-color: rgba(0, 229, 255, 0.15);
}

.faq-item summary {
    padding: 18px 24px;
    font-weight: 600;
    color: var(--text-heading);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.95rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--accent);
    font-weight: 300;
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform var(--transition);
}
.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 24px 18px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ── LINKS GRID ─────────────────────────── */
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    margin-top: 32px;
}

.link-card {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    transition: all var(--transition);
}
.link-card:hover {
    border-color: rgba(0, 229, 255, 0.2);
    background: rgba(0, 229, 255, 0.03);
    color: var(--accent);
    transform: translateY(-2px);
}

/* ── CTA BLOCK ──────────────────────────── */
.cta-block {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.06), rgba(165, 255, 0, 0.03));
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    margin: 48px 0 24px;
}

.cta-block h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.cta-block p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* ── FOOTER ─────────────────────────────── */
.footer {
    background: var(--bg-section);
    border-top: 1px solid var(--border);
    padding: 60px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-heading);
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px 16px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color var(--transition);
    white-space: nowrap;
}
.footer-links a:hover { color: var(--accent); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
}
.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}

/* ── POPUP ──────────────────────────────── */
.popup {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.popup.active { display: flex; }

.popup-inner {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: popupIn 0.3s ease-out;
}

@keyframes popupIn {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition);
}
.popup-close:hover { color: var(--text); }

.popup-icon { font-size: 3rem; margin-bottom: 16px; }

.popup-inner h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.popup-inner p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

/* ── SCROLL REVEAL ──────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 960px) {
    .nav { display: none; }
    .nav.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(6, 9, 15, 0.97);
        backdrop-filter: blur(20px);
        padding: 20px;
        gap: 4px;
        border-bottom: 1px solid var(--border);
        max-height: calc(100vh - 64px);
        overflow-y: auto;
    }
    .nav.open .nav-link {
        padding: 12px 16px;
        font-size: 1rem;
    }
    .burger { display: flex; }

    .two-col { grid-template-columns: 1fr; gap: 32px; }
    .col-features { grid-template-columns: 1fr 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-links { grid-template-columns: repeat(2, 1fr); }

    .hero { padding: 120px 0 60px; min-height: auto; }
    .hero-stats { gap: 24px; }
}

@media (max-width: 640px) {
    body { font-size: 15px; }

    .hero-btns { flex-direction: column; align-items: center; }
    .hero-btns .btn { width: 100%; max-width: 300px; }

    .hero-stats { gap: 16px; }
    .stat-num { font-size: 1.4rem; }

    .col-features { grid-template-columns: 1fr; }
    .games-grid { grid-template-columns: repeat(2, 1fr); }
    .bonus-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .links-grid { grid-template-columns: repeat(2, 1fr); }

    .section { padding: 60px 0; }
    .page-hero { padding: 100px 0 48px; }

    .cta-block { padding: 28px 20px; }
    .footer-links { grid-template-columns: 1fr 1fr; }

    .faq-item summary { padding: 16px 18px; font-size: 0.9rem; }
}

/* ── Schema.org hidden ──────────────────── */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ── REFERRAL POPUP (enhanced) ──────────── */
.popup-logo { margin-bottom: 16px; }

.popup-promo {
    background: rgba(0, 229, 255, 0.06);
    border: 1px dashed rgba(0, 229, 255, 0.3);
    border-radius: 12px;
    padding: 16px;
    margin: 16px 0;
    text-align: center;
}

.promo-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.promo-code {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 0.15em;
    font-family: var(--font);
    margin-bottom: 10px;
    text-shadow: 0 0 20px var(--accent-glow);
}

.promo-copy {
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.2);
    color: var(--accent);
    padding: 6px 18px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}
.promo-copy:hover {
    background: rgba(0, 229, 255, 0.2);
}

.popup-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px !important;
    padding: 0 !important;
    line-height: 1.6;
}
.popup-desc strong { color: var(--accent); }

.popup-divider {
    height: 1px;
    background: var(--border);
    margin: 20px 0;
}

.popup-ref {
    text-align: center;
}

.popup-ref-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 6px;
}

.popup-ref-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.popup-share {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all var(--transition);
    text-decoration: none;
}

.share-tg {
    background: rgba(0, 136, 204, 0.15);
    color: #29b6f6;
    border: 1px solid rgba(0, 136, 204, 0.25);
}
.share-tg:hover {
    background: rgba(0, 136, 204, 0.25);
    color: #29b6f6;
    transform: translateY(-2px);
}

.share-vk {
    background: rgba(69, 102, 142, 0.15);
    color: #5181b8;
    border: 1px solid rgba(69, 102, 142, 0.25);
}
.share-vk:hover {
    background: rgba(69, 102, 142, 0.25);
    color: #5181b8;
    transform: translateY(-2px);
}

.share-wa {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
    border: 1px solid rgba(37, 211, 102, 0.25);
}
.share-wa:hover {
    background: rgba(37, 211, 102, 0.25);
    color: #25d366;
    transform: translateY(-2px);
}

@media (max-width: 640px) {
    .popup-inner { padding: 28px 20px; }
    .promo-code { font-size: 1.4rem; }
    .popup-share { gap: 8px; }
    .share-btn { padding: 8px 12px; font-size: 0.75rem; }
}

/* ── LOGO — LuckyBear brand style ───────── */
.logo-text {
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.logo-lucky { color: #ffffff; }
.logo-bear { color: #00e5ff; }

.logo:hover .logo-lucky { color: #e2e8f0; }
.logo:hover .logo-bear { color: #33ecff; }

.footer-logo .logo-text {
    font-size: 1.1rem;
}
