:root {
    --bg-dark: #070707;
    --bg-darker: #040404;
    --bg-card: rgba(20, 20, 20, 0.8);
    --text-primary: #f5f5f5;
    --text-muted: #a0a0a0;
    --accent-gold: #d4af37;
    --accent-gold-hover: #f1c40f;
    --accent-gold-dim: rgba(212, 175, 55, 0.2);
    --accent-red: #8b0000;
    --glass-bg: rgba(15, 15, 15, 0.6);
    --glass-border: rgba(212, 175, 55, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

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

/* Background & Particles */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 50% -20%, var(--accent-gold-dim) 0%, var(--bg-dark) 70%);
    z-index: -2;
}

.particles {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    bottom: -10px;
    width: 3px;
    height: 3px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-gold);
    animation: floatUp 4s infinite linear;
    opacity: 0;
}

@keyframes floatUp {
    0% { transform: translateY(0); opacity: 0; }
    50% { opacity: 0.8; }
    100% { transform: translateY(-100vh); opacity: 0; }
}

.container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 2rem;
}

h1, h2, h3, h4 { font-family: 'Cinzel', serif; font-weight: 700; }

.highlight {
    background: linear-gradient(90deg, #fff 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navbar */
header {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(5, 5, 5, 0.8);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar { display: flex; justify-content: space-between; align-items: center; height: 80px; }

.logo {
    font-size: 1.6rem;
    color: var(--accent-gold);
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.desktop-nav {
    display: flex;
    align-items: center;
}

/* Mobile Menu Button - Hidden on Desktop */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--accent-gold);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 200;
}

/* Language Selector */
.lang-selector {
    display: inline-flex;
    align-items: center;
    margin-left: 2.5rem;
    color: var(--text-muted);
}
.lang-selector i {
    margin-right: 8px;
    font-size: 1.1rem;
}
.lang-selector select {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    outline: none;
}
.lang-selector select option {
    background: var(--bg-darker);
    color: var(--text-primary);
}
.lang-selector select:hover, .lang-selector:hover i {
    color: var(--accent-gold);
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 2.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav a:hover { color: var(--accent-gold); }

.btn-login {
    border: 1px solid var(--accent-gold);
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.05);
}

.btn-login:hover {
    background: var(--accent-gold);
    color: var(--bg-dark);
    box-shadow: 0 0 15px var(--accent-gold-dim);
}

/* Utils: Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--bg-dark);
    border: 1px solid var(--accent-gold);
}

.btn-primary.glow-effect { box-shadow: 0 0 25px rgba(212, 175, 55, 0.5); }
.btn-primary:hover { background: var(--accent-gold-hover); transform: translateY(-3px); box-shadow: 0 0 35px rgba(212, 175, 55, 0.7); }

.btn-secondary {
    background: var(--glass-bg);
    border: 1px solid var(--text-muted);
    color: var(--text-primary);
}
.btn-secondary:hover { border-color: var(--accent-gold); color: var(--accent-gold); transform: translateY(-3px); }

.mt-2 { margin-top: 2rem; }
.btn-large { padding: 1.2rem 3rem; font-size: 1.1rem; }

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: calc(100vh - 80px);
    padding: 5rem 2rem;
    gap: 4rem;
}

.hero-content { flex: 1.2; }

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--accent-gold-dim);
    border-radius: 50px;
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.title { font-size: 4.5rem; line-height: 1.05; margin-bottom: 1.5rem; text-shadow: 0 5px 15px rgba(0,0,0,0.5); }
.subtitle { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 2.5rem; max-width: 90%; }
.hero-buttons { display: flex; gap: 1.5rem; margin-bottom: 3rem; }

.stats-row { display: flex; gap: 3rem; border-top: 1px solid var(--glass-border); padding-top: 2rem; }
.stat { display: flex; flex-direction: column; }
.stat .number { font-family: 'Cinzel', serif; font-size: 2rem; font-weight: 700; color: var(--accent-gold); }
.stat .label { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* Hero Image & Cards */
.hero-image {
    flex: 1;
    position: relative;
    perspective: 1000px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-mockup {
    width: 280px; height: 420px;
    background: #111;
    border-radius: 12px;
    padding: 8px;
    position: absolute;
    box-shadow: 0 25px 50px rgba(0,0,0,0.8);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-mockup.legendary {
    border: 2px solid var(--accent-gold);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 30px rgba(212, 175, 55, 0.3);
    z-index: 2;
    transform: rotateY(-10deg) rotateX(5deg) translateX(-30px);
}

.card-mockup.legendary:hover { transform: rotateY(0deg) rotateX(0deg) translateX(-30px) translateY(-15px) scale(1.05); z-index: 10; }

.card-mockup.epic.behind {
    border: 1px solid #9b59b6;
    z-index: 1;
    transform: rotateY(15deg) rotateX(10deg) translateX(50px) translateY(20px) scale(0.9);
    filter: brightness(0.7);
}
.card-mockup.epic.behind:hover { transform: rotateY(0deg) rotateX(0deg) translateX(50px) translateY(5px) scale(0.95); filter: brightness(1); z-index: 10;}

.card-inner {
    width: 100%; height: 100%;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex; flex-direction: column; justify-content: space-between;
    padding: 1.5rem;
}

.card-mockup.legendary .card-inner { background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.9)), url('https://i.imgur.com/hnpqkbm.png') center/cover; }
.card-mockup.epic .card-inner { background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.9)), url('https://i.imgur.com/DJ2Jgw3.png') center/cover; }

.card-header .cost { background: rgba(0,0,0,0.6); padding: 4px 10px; border-radius: 12px; font-weight: bold; font-family: 'Cinzel', serif; color: var(--accent-gold); font-size: 1.1rem; border: 1px solid var(--accent-gold-dim); }
.card-body h3 { font-size: 1.6rem; color: #fff; text-shadow: 2px 2px 4px #000; margin-bottom: 0.2rem; }
.legendary-text { color: var(--accent-gold); font-weight: bold; }
.epic-text { color: #d094ea; font-weight: bold; }

/* Features Section */
.features-section { padding: 6rem 2rem; background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%); }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-title { font-size: 3rem; margin-bottom: 1rem; }
.section-subtitle { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* Desktop Gallery */
.desktop-gallery {
    padding: 1rem 2rem 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.65rem;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.18);
    transition: transform 0.25s ease, border-color 0.25s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.gallery-grid img:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(241, 196, 15, 0.7);
}

/* Economy Section */
.economy-section {
    padding: 5.5rem 2rem 2rem;
    border-top: 1px solid var(--glass-border);
}

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

.economy-card {
    background: linear-gradient(145deg, rgba(30, 22, 8, 0.55), rgba(14, 14, 14, 0.8));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 14px;
    padding: 1.4rem;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.economy-card:hover {
    transform: translateY(-5px);
    border-color: rgba(241, 196, 15, 0.8);
}

.economy-card h4 {
    margin-bottom: 0.6rem;
    color: var(--accent-gold);
    font-size: 1.15rem;
}

.economy-card p {
    color: #d4d4d4;
    font-size: 0.95rem;
}

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2.5rem; }
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    border-radius: 12px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    transform: scaleX(0); transition: transform 0.4s ease;
}
.feature-card:hover { transform: translateY(-10px); background: #161616; border-color: rgba(212, 175, 55, 0.4); box-shadow: 0 15px 30px rgba(0,0,0,0.5); }
.feature-card:hover::before { transform: scaleX(1); }

.icon-wrapper { width: 70px; height: 70px; background: rgba(212, 175, 55, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--accent-gold); margin-bottom: 1.5rem; border: 1px solid var(--accent-gold-dim); }
.feature-card h4 { font-size: 1.6rem; margin-bottom: 1rem; color: #fff; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; }

/* Babanuki Showcase Section */
.showcase-section { padding: 8rem 0; border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); background: #050505; }
.showcase-container { display: flex; align-items: center; gap: 5rem; }
.showcase-image { flex: 1; }
.showcase-content { flex: 1; }

.paragraph { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 2rem; }
.feature-list { list-style: none; margin-bottom: 2rem; }
.feature-list li { margin-bottom: 1rem; display: flex; align-items: flex-start; gap: 1rem; color: #ccc; }
.feature-list i { color: var(--accent-gold); margin-top: 5px; }
.feature-list strong { color: #fff; }

/* Rulebook Modal */
.rulebook-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.78);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.rulebook-modal {
    width: min(760px, 96vw);
    background: #0e0e0f;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
    position: relative;
}

.rulebook-close {
    position: absolute;
    right: 0.85rem;
    top: 0.7rem;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    cursor: pointer;
    z-index: 2;
}

.rulebook-headbar {
    padding: 1.4rem 1.3rem 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.08) 0%, rgba(14, 14, 15, 0.45) 100%);
}

.rulebook-headbar h2 {
    margin-bottom: 0.3rem;
    font-size: 1.8rem;
}

.rulebook-headbar p {
    color: #e4d3a1;
}

.rulebook-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.rulebook-intro {
    margin-bottom: 0.8rem;
    color: #cfcfcf;
}

.rulebook-body ul {
    list-style: none;
    display: grid;
    gap: 0.7rem;
}

.rulebook-body li {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 10px;
    padding: 0.65rem 0.75rem;
}

.rulebook-btn {
    margin-top: 1rem;
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--accent-gold);
    background: var(--accent-gold);
    color: #111;
    font-weight: 700;
    cursor: pointer;
}

/* Discord UI Mockup */
.babanuki-ui {
    background: #36393f;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
    font-family: 'Inter', sans-serif;
}
.babanuki-header { background: #2f3136; padding: 1rem; font-weight: bold; border-bottom: 1px solid #202225; color: #fff; font-size: 1.1rem; }
.babanuki-content { padding: 1.5rem; }
.system-msg { color: #b9bbbe; font-size: 0.9rem; margin-bottom: 1.5rem; border-left: 3px solid #7289da; padding-left: 10px; }
.player-turn { display: flex; align-items: center; gap: 10px; color: #dcddde; margin-bottom: 1rem; }
.avatar { width: 24px; height: 24px; background: var(--accent-gold); border-radius: 50%; display: inline-block; }
.button-row { display: flex; gap: 10px; }
.discord-btn { background: #4f545c; border: none; border-radius: 3px; padding: 10px 20px; color: white; cursor: pointer; transition: background 0.2s; font-size: 1.2rem; }
.discord-btn:hover { background: #5d6269; }
.discord-btn.active { background: #5865F2; }

/* CTA Section */
.cta-section { padding: 6rem 2rem; text-align: center; }
.cta-box {
    background: linear-gradient(135deg, rgba(20,20,20,0.9) 0%, rgba(40,40,40,0.4) 100%);
    border: 1px solid var(--accent-gold-dim);
    padding: 5rem 3rem;
    border-radius: 16px;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}
.cta-box::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 50%); z-index: -1; }
.cta-box h2 { font-size: 3.5rem; margin-bottom: 1rem; color: #fff; }
.cta-box p { color: var(--text-muted); font-size: 1.2rem; max-width: 600px; margin: 0 auto 3rem auto; }

/* Footer */
footer { background: var(--bg-darker); border-top: 1px solid #111; padding: 4rem 0 2rem 0; }
.footer-content { display: flex; justify-content: space-between; margin-bottom: 3rem; flex-wrap: wrap; gap: 2rem; }
.footer-logo p { color: var(--text-muted); margin-top: 1rem; max-width: 300px; }
.footer-links { display: flex; gap: 4rem; }
.link-group h4 { color: #fff; margin-bottom: 1.5rem; font-size: 1.1rem; }
.link-group a { display: block; color: var(--text-muted); text-decoration: none; margin-bottom: 0.8rem; transition: color 0.2s; }
.link-group a:hover { color: var(--accent-gold); }
.copyright { text-align: center; padding-top: 2rem; border-top: 1px solid #111; color: #666; font-size: 0.9rem; }

/* Guide Pages */
.guide-page {
    min-height: 100vh;
}

.guide-shell {
    padding: 3rem 0 5rem;
}

.guide-hero {
    background: linear-gradient(145deg, rgba(32, 23, 8, 0.72), rgba(9, 9, 9, 0.92));
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.guide-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 999px;
    padding: 0.4rem 0.9rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.guide-hero h2 {
    font-size: 3rem;
    margin-bottom: 0.8rem;
}

.guide-hero p {
    color: var(--text-muted);
    max-width: 760px;
    font-size: 1.05rem;
}

.guide-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1.15fr);
    gap: 1.5rem;
    align-items: start;
}

.guide-sidecard,
.guide-maincard {
    background: rgba(14, 14, 14, 0.86);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 18px;
    padding: 1.5rem;
}

.guide-sidecard h3,
.guide-maincard h3 {
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.guide-checklist,
.guide-steps,
.guide-notes {
    list-style: none;
    display: grid;
    gap: 0.9rem;
}

.guide-checklist li,
.guide-notes li {
    color: #ddd;
    padding-left: 1.5rem;
    position: relative;
}

.guide-checklist li::before,
.guide-notes li::before {
    content: '•';
    color: var(--accent-gold);
    position: absolute;
    left: 0;
}

.guide-steps li {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1rem;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.06);
}

.guide-step-num {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, var(--accent-gold), #9f7412);
    color: #111;
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 900;
}

.guide-step-copy h4 {
    margin-bottom: 0.35rem;
    color: #fff;
    font-size: 1.1rem;
}

.guide-step-copy p {
    color: var(--text-muted);
}

.guide-callout {
    margin-top: 1.5rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.24);
    border-radius: 16px;
    padding: 1rem 1.1rem;
    color: #f0e3b6;
}

.guide-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

/* Responsive Media Queries */
@media (max-width: 1100px) {
    .container { padding: 0 1.5rem; }
    
    /* Navbar Mobile Transition */
    .mobile-menu-btn { display: block; }
    
    .desktop-nav {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        left: -100%;
        width: 100vw;
        height: 100vh;
        background: rgba(5, 5, 5, 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        transition: left 0.4s ease;
        z-index: 100;
        gap: 2rem;
    }

    .desktop-nav.active { left: 0; }
    
    .desktop-nav a { margin: 0; font-size: 1.5rem; }
    .lang-selector { margin: 0; font-size: 1.2rem; }
    .lang-selector select { font-size: 1.2rem; }
    .btn-login { margin-top: 1rem; }

    /* Hero adjustments */
    .hero-section { flex-direction: column; text-align: center; padding-top: 4rem; gap: 2rem; }
    .hero-content { display: flex; flex-direction: column; align-items: center; }
    .hero-buttons, .stats-row { justify-content: center; }
    .hero-image { margin-top: 2rem; height: 350px; }
    .title { font-size: 3rem; }
    
    /* Babanuki */
    .showcase-container { flex-direction: column; gap: 3rem; }
    .showcase-content { text-align: center; }
    .feature-list { text-align: left; }
    
    /* Footer */
    .footer-content { flex-direction: column; align-items: center; text-align: center; }
    .footer-links { flex-direction: column; gap: 2rem; }

    .gallery-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

@media (max-width: 600px) {
    .title { font-size: 2.2rem; }
    .subtitle { font-size: 1rem; }
    .badge { font-size: 0.75rem; }
    
    .hero-buttons { flex-direction: column; width: 100%; }
    .btn-primary, .btn-secondary { width: 100%; margin: 0; }
    
    .stats-row { flex-wrap: wrap; gap: 1rem; justify-content: space-between; width: 100%; border-top: none; }
    .stat .number { font-size: 1.5rem; }
    
    .card-mockup { width: 220px; height: 330px; }
    .card-header .cost { font-size: 0.9rem; }
    .card-body h3 { font-size: 1.2rem; }
    
    .section-title { font-size: 2.2rem; }
    .cta-box { padding: 3rem 1.5rem; }
    .cta-box h2 { font-size: 2rem; }
    .btn-large { font-size: 1rem; padding: 1rem; }

    .desktop-gallery {
        display: none;
    }

    .economy-section {
        padding-top: 4.5rem;
    }

    .rulebook-headbar h2 {
        font-size: 1.45rem;
    }

    .guide-hero h2 {
        font-size: 2.15rem;
    }

    .guide-steps li {
        grid-template-columns: 1fr;
    }

    .guide-step-num {
        width: 48px;
        height: 48px;
    }

    .guide-actions {
        flex-direction: column;
    }
}
