/* ========================================
   brooklinecsi.org — Cyberpunk Casino Theme
   Fonts: Outfit (headings) + DM Sans (body)
   Palette: #0a0a0f (bg), #ff1744 (red neon), #d4a574 (gold), #00e676 (green)
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800;900&family=DM+Sans:wght@400;500;700&display=swap');

/* ── Reset & Base ────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg-deep: #0a0a0f;
    --bg-card: rgba(255,255,255,0.03);
    --bg-card-hover: rgba(255,255,255,0.06);
    --red-neon: #ff1744;
    --red-glow: rgba(255,23,68,0.4);
    --gold: #d4a574;
    --gold-light: #e8c89e;
    --green-neon: #00e676;
    --green-glow: rgba(0,230,118,0.3);
    --text-primary: #f0f0f5;
    --text-secondary: #a0a0b0;
    --text-muted: #666680;
    --border-subtle: rgba(255,255,255,0.08);
    --border-glow: rgba(255,23,68,0.3);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --max-width: 1100px;
    --radius: 12px;
    --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 17px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        linear-gradient(rgba(255,23,68,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,23,68,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold-light); }

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); margin-bottom: 0.75rem; }

p { margin-bottom: 1rem; color: var(--text-secondary); }

.wrapper { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; }

/* ── Header / Nav ────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10,10,15,0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0.75rem 0;
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-logo .neon-dot {
    width: 10px;
    height: 10px;
    background: var(--red-neon);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--red-glow), 0 0 20px var(--red-glow);
    animation: neon-blink 3s infinite;
}

@keyframes neon-blink {
    0%, 90%, 100% { opacity: 1; }
    95% { opacity: 0.3; }
}

.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--red-neon); }

.nav-cta {
    background: var(--red-neon) !important;
    color: #fff !important;
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 0 15px var(--red-glow);
    transition: transform 0.3s, box-shadow 0.3s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 4px 25px var(--red-glow); }

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ── Hero Section ────────────────────── */
.hero-zone {
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-zone::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--red-glow) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,23,68,0.1);
    border: 1px solid rgba(255,23,68,0.3);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--red-neon);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-zone h1 {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-zone h1 .highlight-word {
    -webkit-text-fill-color: var(--red-neon);
    text-shadow: 0 0 30px var(--red-glow);
}

.hero-text { font-size: 1.1rem; margin-bottom: 2rem; }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid var(--border-glow);
}

.hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--red-neon), var(--gold)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* ── Buttons ─────────────────────────── */
.main-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    color: #fff;
}

.main-button.red-glow {
    background: linear-gradient(135deg, var(--red-neon) 0%, #d50000 100%);
    box-shadow: 0 0 20px var(--red-glow), 0 4px 15px rgba(0,0,0,0.3);
}
.main-button.red-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px var(--red-glow), 0 8px 25px rgba(0,0,0,0.4);
}

.main-button.gold-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}
.main-button.gold-outline:hover {
    background: rgba(212,165,116,0.1);
    transform: translateY(-3px);
}

.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--red-neon) 0%, #d50000 100%);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 0 25px var(--red-glow), 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s;
}
.action-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 40px var(--red-glow), 0 8px 30px rgba(0,0,0,0.4);
    color: #fff;
}

/* ── Section Blocks ──────────────────── */
.content-block {
    padding: 4rem 0;
    position: relative;
}

.content-block + .content-block {
    border-top: 1px solid var(--border-subtle);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--red-neon);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.section-intro {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin-bottom: 2.5rem;
}

/* ── Cards ───────────────────────────── */
.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.info-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glow);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--red-neon), var(--gold));
    opacity: 0;
    transition: opacity 0.3s;
}

.info-card:hover::before { opacity: 1; }

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

/* ── Stats Row ───────────────────────── */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
}

.stat-number {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--red-neon), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

/* ── Comparison Table ────────────────── */
.compare-table-wrap {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: var(--radius);
    border: 1px solid var(--border-subtle);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.compare-table th {
    background: rgba(255,23,68,0.1);
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-subtle);
}

.compare-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-secondary);
}

.compare-table tr:last-child td { border-bottom: none; }

.compare-table tr.row-featured {
    background: rgba(255,23,68,0.05);
}

.compare-table tr.row-featured td {
    color: var(--text-primary);
    font-weight: 500;
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255,23,68,0.15);
    color: var(--red-neon);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* ── CTA Box ─────────────────────────── */
.cta-block {
    background: linear-gradient(135deg, rgba(255,23,68,0.08) 0%, rgba(212,165,116,0.05) 100%);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius);
    padding: 3rem;
    text-align: center;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.cta-block::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,23,68,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-block h2 { margin-bottom: 1rem; }
.cta-block p { max-width: 600px; margin: 0 auto 2rem; }

/* ── Urgency Counter ─────────────────── */
.urgency-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255,23,68,0.08);
    border: 1px solid rgba(255,23,68,0.2);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1.5rem;
    margin: 1.5rem auto;
    max-width: 500px;
    font-size: 0.9rem;
    color: var(--red-neon);
    font-weight: 600;
}

.urgency-strip .slot-count {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--red-neon);
    text-shadow: 0 0 10px var(--red-glow);
}

/* ── FAQ Accordion ───────────────────── */
.faq-block { margin: 2rem 0; }

.question-item {
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: border-color 0.3s;
}

.question-item:hover { border-color: var(--border-glow); }

.question-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    background: var(--bg-card);
    transition: background 0.3s;
    user-select: none;
}

.question-header:hover { background: var(--bg-card-hover); }

.question-header h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
    flex: 1;
    padding-right: 1rem;
}

.question-toggle {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    color: var(--red-neon);
    font-size: 1.2rem;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.question-item.open .question-toggle { transform: rotate(45deg); }

.question-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.question-body-inner {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ── Toast Notification (Social Proof) ── */
.notification-popup {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    background: rgba(10,10,15,0.95);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 380px;
    transform: translateX(-120%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 15px var(--red-glow);
}

.notification-popup.visible { transform: translateX(0); }

.notification-popup .notif-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.notification-popup .notif-text {
    font-size: 0.85rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.notification-popup .notif-text strong {
    color: var(--green-neon);
}

.notification-popup .notif-text .notif-brand {
    color: var(--red-neon);
    font-weight: 700;
}

/* ── Sticky CTA — Desktop ───────────── */
.sticky-trigger {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 998;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s;
    pointer-events: none;
}

.sticky-trigger.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sticky-trigger .action-btn {
    padding: 0.85rem 1.8rem;
    font-size: 0.95rem;
    border-radius: 50px;
    animation: subtle-glow 3s infinite;
}

@keyframes subtle-glow {
    0%, 100% { box-shadow: 0 0 20px var(--red-glow); }
    50% { box-shadow: 0 0 35px var(--red-glow), 0 0 60px rgba(255,23,68,0.15); }
}

/* ── Sticky CTA — Mobile Bar ─────────── */
.mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: rgba(10,10,15,0.95);
    backdrop-filter: blur(15px);
    border-top: 1px solid var(--border-glow);
    padding: 0.75rem 1rem;
}

.mobile-bar .action-btn {
    width: 100%;
    padding: 0.85rem;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
}

/* ── Testimonial Inline ──────────────── */
.proof-quote {
    background: var(--bg-card);
    border-left: 3px solid var(--green-neon);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--text-secondary);
}

.proof-quote .proof-name {
    display: block;
    margin-top: 0.5rem;
    font-style: normal;
    font-weight: 700;
    color: var(--gold);
    font-size: 0.85rem;
}

.proof-quote .proof-amount {
    color: var(--green-neon);
    font-weight: 700;
}

/* ── Steps / How To ──────────────────── */
.step-list {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
}

.step-list li {
    counter-increment: step-counter;
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-subtle);
}

.step-list li:last-child { border-bottom: none; }

.step-list li::before {
    content: counter(step-counter);
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,23,68,0.1);
    border: 1px solid rgba(255,23,68,0.3);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--red-neon);
    font-size: 1rem;
}

/* ── Read Also Block ─────────────────── */
.related-reads {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 2rem;
    margin: 3rem 0;
}

.related-reads h3 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.related-reads ul {
    list-style: none;
    padding: 0;
}

.related-reads li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-subtle);
}

.related-reads li:last-child { border-bottom: none; }

.related-reads a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 500;
    transition: color 0.3s;
}

.related-reads a::before { content: '→'; color: var(--red-neon); }
.related-reads a:hover { color: var(--gold-light); }

/* ── Footer ──────────────────────────── */
.site-footer {
    border-top: 1px solid var(--border-subtle);
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

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

.footer-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

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

.footer-links h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.footer-links ul { list-style: none; }
.footer-links li { padding: 0.3rem 0; }
.footer-links a { color: var(--text-muted); font-size: 0.85rem; }
.footer-links a:hover { color: var(--gold); }

.footer-legal {
    border-top: 1px solid var(--border-subtle);
    padding-top: 1.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.6;
    text-align: center;
}

/* ── Breadcrumb ──────────────────────── */
.breadcrumb-nav {
    padding: 6.5rem 0 0;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.breadcrumb-list a { color: var(--text-muted); }
.breadcrumb-list a:hover { color: var(--gold); }
.breadcrumb-list .sep { color: var(--text-muted); }
.breadcrumb-list .current { color: var(--text-secondary); }

/* ── Responsive ──────────────────────── */
@media (max-width: 768px) {
    body { font-size: 16px; }

    .nav-links { display: none; }
    .mobile-toggle { display: block; }

    .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10,10,15,0.98);
        backdrop-filter: blur(20px);
        padding: 1.5rem;
        border-bottom: 1px solid var(--border-subtle);
        gap: 1rem;
    }

    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-visual { order: -1; }
    .hero-actions { justify-content: center; }
    .hero-badge { justify-content: center; }

    .footer-grid { grid-template-columns: 1fr; }

    .stats-row { grid-template-columns: repeat(2, 1fr); }

    .sticky-trigger { display: none; }
    .mobile-bar { display: block; }

    .notification-popup {
        bottom: 80px;
        left: 10px;
        right: 10px;
        max-width: none;
    }

    .cta-block { padding: 2rem 1.5rem; }
    .content-block { padding: 3rem 0; }

    body[data-page-type] { padding-bottom: 70px; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .main-button, .action-btn { width: 100%; justify-content: center; }
    .stats-row { grid-template-columns: 1fr; }
}

/* ── Utility ─────────────────────────── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-red { color: var(--red-neon); }
.text-green { color: var(--green-neon); }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* ── Glitch heading effect ───────────── */
.glitch-text {
    position: relative;
}

.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    left: 2px;
    top: 0;
    color: var(--red-neon);
    opacity: 0;
    animation: glitch-flash 8s infinite;
}

@keyframes glitch-flash {
    0%, 96%, 100% { opacity: 0; clip-path: none; }
    97% { opacity: 0.8; clip-path: inset(20% 0 60% 0); transform: translateX(-3px); }
    98% { opacity: 0; }
    99% { opacity: 0.6; clip-path: inset(50% 0 20% 0); transform: translateX(3px); }
}

/* ── Image placeholders ──────────────── */
.img-placeholder {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255,23,68,0.03) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    min-height: 250px;
}
