/* ========================================
   Bless Up Games — Main Stylesheet
   ======================================== */

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

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #111118;
    --bg-card: #16161f;
    --bg-card-hover: #1c1c28;
    --text-primary: #f0f0f5;
    --text-secondary: #9494a8;
    --text-muted: #5a5a70;
    --accent-1: #7c5cfc;
    --accent-2: #00d4aa;
    --accent-3: #ff6b9d;
    --gradient-main: linear-gradient(135deg, #7c5cfc 0%, #00d4aa 50%, #7c5cfc 100%);
    --gradient-text: linear-gradient(135deg, #7c5cfc 0%, #00d4aa 100%);
    --gradient-warm: linear-gradient(135deg, #ff6b9d 0%, #ffa259 100%);
    --border-color: rgba(148, 148, 168, 0.12);
    --border-glow: rgba(124, 92, 252, 0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 40px rgba(124, 92, 252, 0.15);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-main);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--accent-2);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover { color: var(--accent-1); }

img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Gradient Text --- */
.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Section Shared --- */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-2);
    margin-bottom: 16px;
    padding: 6px 16px;
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 100px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
}
.logo:hover { color: var(--text-primary); }

.logo-icon {
    font-size: 1.5rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-text);
    transition: width var(--transition);
}

.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-1);
    top: -200px;
    right: -100px;
    opacity: 0.15;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-2);
    bottom: -100px;
    left: -100px;
    opacity: 0.1;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-3);
    top: 50%;
    left: 50%;
    opacity: 0.08;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-2);
    margin-bottom: 24px;
    padding: 8px 20px;
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 100px;
    background: rgba(0, 212, 170, 0.05);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
    border: none;
}

.btn-primary {
    background: var(--gradient-main);
    background-size: 200% auto;
    color: #fff;
}
.btn-primary:hover {
    background-position: right center;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124, 92, 252, 0.4);
}

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

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* Hero Phone */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ========================================
   Phone Mockup
   ======================================== */
.phone-mockup {
    position: relative;
    width: 280px;
    height: 560px;
    background: #1a1a2e;
    border-radius: 40px;
    border: 3px solid #2a2a3e;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.05),
        0 20px 60px rgba(0, 0, 0, 0.5),
        var(--shadow-glow);
    overflow: hidden;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: #1a1a2e;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 37px;
    overflow: hidden;
}

.hero-phone {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Placeholder Game Screen */
.placeholder-game {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1e1e3a 0%, #12122a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 48px;
}

.pg-header {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--text-primary);
    margin-bottom: 32px;
}

.pg-board {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 40px;
}

.pg-row {
    display: flex;
    gap: 6px;
}

.pg-tile {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 6px;
    color: #fff;
}

.pg-tile.correct { background: var(--accent-2); }
.pg-tile.present { background: #c9a227; }
.pg-tile.absent { background: #3a3a50; }
.pg-tile.empty { background: transparent; border: 2px solid #3a3a50; }

.pg-keyboard {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 12px;
}

.pg-key {
    width: 22px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2a2a44;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* ========================================
   About Section
   ======================================== */
.about {
    background: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all var(--transition);
}

.about-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glow);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.about-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    color: var(--accent-1);
}

.about-icon svg {
    width: 100%;
    height: 100%;
}

.about-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.about-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========================================
   Games Section
   ======================================== */
.games-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.game-card-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: center;
}

.game-card:nth-child(even) .game-card-inner {
    direction: rtl;
}
.game-card:nth-child(even) .game-card-inner > * {
    direction: ltr;
}

.game-phone {
    width: 240px;
    height: 480px;
}

.game-info h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.game-info p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 480px;
}

.game-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.tag {
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 500;
    background: rgba(124, 92, 252, 0.1);
    border: 1px solid rgba(124, 92, 252, 0.2);
    border-radius: 100px;
    color: var(--accent-1);
}

.store-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    transition: all var(--transition);
}

.store-btn:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-1);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.store-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.store-btn small {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
}

.store-btn strong {
    display: block;
    font-size: 0.9rem;
}

/* Placeholder Screenshots */
.placeholder-screenshot {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.ps-1 { background: linear-gradient(180deg, #1a2a4a 0%, #0f1a30 100%); }
.ps-2 { background: linear-gradient(180deg, #2a1a3a 0%, #1a0f2a 100%); }
.ps-3 { background: linear-gradient(180deg, #1a3a2a 0%, #0f2a1a 100%); }

.ps-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    margin-top: 20px;
}

.ps-subtitle {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Game 1 - Word Grid */
.ps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    width: 80%;
}

.ps-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 4px;
    border: 2px solid #3a3a50;
    color: #fff;
}

.ps-cell.filled { background: var(--accent-2); border-color: var(--accent-2); }
.ps-cell.active { background: var(--accent-1); border-color: var(--accent-1); }

/* Game 2 - Honeycomb */
.ps-honeycomb {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    width: 160px;
    margin-bottom: 16px;
}

.ps-hex {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3a3a50;
    border-radius: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
}

.ps-hex.highlight { background: var(--accent-1); }
.ps-hex.center-hex { background: var(--accent-3); }

.ps-found-word {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-2);
    letter-spacing: 4px;
}

/* Game 3 - Crossword */
.ps-crossword {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ps-cw-row {
    display: flex;
    gap: 2px;
}

.ps-cw {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2a2a44;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    color: #fff;
    border-radius: 3px;
}

.ps-cw.dark {
    background: transparent;
}

/* Game 4 - Trivia */
.ps-4 { background: linear-gradient(180deg, #2a2a1a 0%, #1a1a0f 100%); }

.ps-trivia {
    width: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.ps-question {
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
    line-height: 1.5;
    padding: 12px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}

.ps-answers {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.ps-answer {
    padding: 10px 14px;
    background: #2a2a44;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 500;
    color: #fff;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.08);
}

.ps-answer.correct-answer {
    background: var(--accent-2);
    border-color: var(--accent-2);
}

.ps-score-bar {
    width: 100%;
    height: 6px;
    background: #2a2a44;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 4px;
}

.ps-score-fill {
    width: 65%;
    height: 100%;
    background: var(--gradient-warm);
    border-radius: 3px;
}

.ps-timer {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-3);
}

/* ========================================
   Features Section
   ======================================== */
.features {
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 40px 32px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    transition: all var(--transition);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glow);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.feature-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    opacity: 0.5;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========================================
   Contact Section
   ======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-card {
    text-align: center;
    padding: 48px 32px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    transition: all var(--transition);
}

.contact-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glow);
    transform: translateY(-4px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    color: var(--accent-1);
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 64px 0 32px;
}

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

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 12px;
    max-width: 280px;
}

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

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--text-secondary);
    font-size: 0.85rem;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--text-primary);
}

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

/* ========================================
   Legal Pages (shared)
   ======================================== */
.legal-page {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 100vh;
}

.legal-page h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.legal-page .last-updated {
    color: var(--text-muted);
    margin-bottom: 48px;
    font-size: 0.9rem;
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.legal-content p,
.legal-content li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.legal-content ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-content a {
    color: var(--accent-2);
}

/* Support page form */
.support-form {
    max-width: 600px;
    margin-top: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-description { margin: 0 auto 36px; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { margin-top: 40px; }

    .about-grid,
    .features-grid,
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .game-card-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 32px;
    }
    .game-card:nth-child(even) .game-card-inner {
        direction: ltr;
    }
    .game-info p { margin: 0 auto 20px; }
    .game-tags { justify-content: center; }
    .store-buttons { justify-content: center; }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    section { padding: 64px 0; }

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

    .nav-toggle { display: flex; }

    .about-grid,
    .features-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .phone-mockup {
        width: 220px;
        height: 440px;
    }

    .game-phone {
        width: 200px;
        height: 400px;
    }
}
