/**
 * File: /var/www/games.ohiomade.us/public/assets/css/app.css
 * Last edited: 2026-03-20 08:48 PM
 */

:root{
    --bg:#050814;
    --bg-soft:#0b1022;
    --card:rgba(255,255,255,.04);
    --card-strong:rgba(255,255,255,.06);
    --line:rgba(255,255,255,.10);
    --line-strong:rgba(255,255,255,.16);
    --text:#ffffff;
    --muted:rgba(255,255,255,.76);
    --soft:rgba(255,255,255,.08);
    --radius:24px;
    --radius-sm:16px;
    --shadow:0 20px 50px rgba(0,0,0,.30);
    --good:rgba(34,197,94,.18);
    --good-line:rgba(34,197,94,.40);
    --bad:rgba(239,68,68,.16);
    --bad-line:rgba(239,68,68,.38);
    --warn:rgba(245,158,11,.16);
    --warn-line:rgba(245,158,11,.38);
}

*{
    box-sizing:border-box;
}

html,
body{
    margin:0;
    padding:0;
    min-height:100%;
    background:
        radial-gradient(circle at top, rgba(33,55,120,.18), transparent 35%),
        linear-gradient(180deg, #040711 0%, #050814 100%);
    color:var(--text);
    font-family:Arial,sans-serif;
}

body{
    min-height:100vh;
}

a{
    color:inherit;
    text-decoration:none;
}

form{
    margin:0;
}

.page-shell{
    width:min(1100px, 100%);
    margin:0 auto;
    padding:24px 18px 40px;
}

.site-header{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:16px;
    margin-bottom:24px;
    flex-wrap:wrap;
}

.brand-wrap{
    display:flex;
    align-items:center;
    gap:14px;
}

.brand-mark{
    width:52px;
    height:52px;
    border-radius:16px;
    border:1px solid var(--line);
    background:var(--card-strong);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    letter-spacing:.04em;
}

.brand-kicker{
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:.12em;
    color:var(--muted);
    margin-bottom:4px;
}

.brand-title{
    margin:0;
    font-size:32px;
    line-height:1.05;
}

.top-nav{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.nav-link{
    min-height:42px;
    padding:0 14px;
    border-radius:999px;
    border:1px solid var(--line);
    background:rgba(255,255,255,.03);
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:var(--muted);
}

.nav-link.is-active{
    background:#ffffff;
    color:#050814;
    font-weight:700;
}

.hero-grid{
    display:grid;
    grid-template-columns:1.4fr .9fr;
    gap:18px;
}

.stack{
    display:grid;
    gap:18px;
}

.card{
    border:1px solid var(--line);
    background:var(--card);
    border-radius:var(--radius);
    padding:24px;
    box-shadow:var(--shadow);
    backdrop-filter:blur(8px);
}

.hero-card{
    min-height:360px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.side-card{
    align-self:stretch;
}

.eyebrow{
    margin:0 0 10px;
    opacity:.78;
    font-size:12px;
    letter-spacing:.14em;
    text-transform:uppercase;
}

.hero-title,
.section-title{
    margin:0 0 14px;
    font-size:42px;
    line-height:1.08;
}

.card-title{
    margin:0;
    font-size:24px;
}

.hero-copy,
.section-copy{
    margin:0;
    max-width:760px;
    color:var(--muted);
    line-height:1.7;
    font-size:18px;
}

.hero-actions,
.lobby-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:22px;
}

.btn{
    min-height:48px;
    padding:0 18px;
    border-radius:14px;
    border:1px solid var(--line-strong);
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    cursor:pointer;
    background:transparent;
    color:#ffffff;
}

.btn-primary{
    background:#ffffff;
    color:#050814;
}

.btn-secondary{
    background:rgba(255,255,255,.06);
    color:#ffffff;
}

.clean-list{
    list-style:none;
    margin:0;
    padding:0;
    display:grid;
    gap:12px;
    color:var(--muted);
}

.clean-list li{
    padding:14px 16px;
    border:1px solid var(--line);
    border-radius:16px;
    background:rgba(255,255,255,.03);
}

.panel-grid,
.module-grid,
.status-grid,
.seat-grid{
    display:grid;
    gap:14px;
}

.panel-grid{
    grid-template-columns:repeat(3, 1fr);
    margin-top:20px;
}

.panel-box,
.seat-card{
    padding:16px;
    border-radius:16px;
    border:1px solid var(--line);
    background:rgba(255,255,255,.03);
}

.panel-label,
.seat-label{
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:.1em;
    color:var(--muted);
    margin-bottom:8px;
}

.panel-value{
    font-size:22px;
    font-weight:700;
}

.panel-value-sm{
    font-size:16px;
    line-height:1.5;
}

.section-head,
.chat-head{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:14px;
    flex-wrap:wrap;
}

.status-pill{
    min-height:38px;
    padding:0 14px;
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:1px solid var(--warn-line);
    background:var(--warn);
    font-size:12px;
    letter-spacing:.12em;
    font-weight:700;
}

.status-pill-ready{
    border-color:var(--good-line);
    background:var(--good);
}

.status-pill-waiting{
    border-color:var(--warn-line);
    background:var(--warn);
}

.seat-grid{
    grid-template-columns:repeat(2, 1fr);
    margin-top:20px;
}

.seat-card{
    background:rgba(255,255,255,.035);
}

.seat-open{
    border-color:var(--line);
}

.seat-filled{
    border-color:rgba(34,197,94,.25);
    background:rgba(34,197,94,.06);
}

.seat-top{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:12px;
    margin-bottom:12px;
}

.seat-direction{
    font-size:15px;
    font-weight:700;
}

.seat-state{
    font-size:12px;
    color:var(--muted);
    letter-spacing:.08em;
    text-transform:uppercase;
}

.seat-player{
    font-size:26px;
    font-weight:700;
    margin-bottom:14px;
    line-height:1.2;
}

.seat-form,
.chat-form{
    display:grid;
    gap:10px;
}

.field-label{
    font-size:14px;
    color:var(--muted);
}

.text-input{
    width:100%;
    min-height:48px;
    border-radius:14px;
    border:1px solid var(--line-strong);
    background:rgba(255,255,255,.04);
    color:#ffffff;
    padding:0 14px;
    font-size:16px;
    outline:none;
}

.text-input::placeholder{
    color:rgba(255,255,255,.44);
}

.flash{
    margin-top:18px;
    padding:14px 16px;
    border-radius:16px;
    color:#ffffff;
}

.flash-success{
    border:1px solid var(--good-line);
    background:var(--good);
}

.flash-error{
    border:1px solid var(--bad-line);
    background:var(--bad);
}

.chat-log{
    margin-top:18px;
    display:grid;
    gap:12px;
}

.chat-empty{
    padding:16px;
    border:1px dashed var(--line);
    border-radius:16px;
    color:var(--muted);
    background:rgba(255,255,255,.02);
}

.chat-item{
    padding:14px 16px;
    border:1px solid var(--line);
    border-radius:16px;
    background:rgba(255,255,255,.03);
}

.chat-meta{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-bottom:8px;
    color:var(--muted);
    font-size:13px;
}

.chat-text{
    line-height:1.65;
    font-size:16px;
}

.chat-form{
    margin-top:18px;
}

.chat-form-grid{
    display:grid;
    gap:12px;
    grid-template-columns:1fr 2fr;
}

.module-grid{
    grid-template-columns:repeat(3, 1fr);
    margin-top:18px;
}

.module-card{
    padding:18px;
    border-radius:18px;
    border:1px solid var(--line);
    background:rgba(255,255,255,.03);
}

.module-card-featured{
    border-color:rgba(34,197,94,.26);
    background:rgba(34,197,94,.06);
}

.module-badge{
    display:inline-flex;
    margin-bottom:12px;
    min-height:30px;
    align-items:center;
    padding:0 10px;
    border-radius:999px;
    border:1px solid rgba(34,197,94,.32);
    background:rgba(34,197,94,.14);
    font-size:12px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.module-card h3{
    margin:0 0 10px;
    font-size:22px;
}

.module-card p{
    margin:0 0 14px;
    color:var(--muted);
    line-height:1.65;
}

.mini-link{
    display:inline-flex;
    min-height:40px;
    align-items:center;
    padding:0 14px;
    border-radius:12px;
    border:1px solid var(--line);
    background:rgba(255,255,255,.05);
}

.status-grid{
    margin-top:14px;
    color:var(--muted);
    line-height:1.8;
}

@media (max-width: 900px){
    .hero-grid,
    .module-grid,
    .panel-grid,
    .seat-grid,
    .chat-form-grid{
        grid-template-columns:1fr;
    }

    .hero-title,
    .section-title{
        font-size:34px;
    }
}

@media (max-width: 640px){
    .page-shell{
        padding:18px 14px 30px;
    }

    .card{
        padding:20px;
        border-radius:20px;
    }

    .brand-title{
        font-size:28px;
    }

    .hero-title,
    .section-title{
        font-size:30px;
    }

    .hero-copy,
    .section-copy{
        font-size:17px;
    }

    .top-nav{
        width:100%;
    }

    .nav-link{
        flex:1 1 calc(50% - 10px);
    }

    .btn{
        width:100%;
    }

    .hero-actions,
    .lobby-actions{
        display:grid;
        grid-template-columns:1fr;
    }

    .seat-player{
        font-size:22px;
    }

    .chat-meta{
        flex-direction:column;
        align-items:flex-start;
    }
}
