:root {
    --gold: #ffd15c;
    --gold-2: #b77a1d;
    --blue: #4a9cff;
    --dark: #06070b;
    --panel: rgba(8, 10, 16, .78);
    --border: rgba(255, 209, 92, .22);
}

* { box-sizing: border-box; }

body {
    min-height: 100vh;
    color: #f6ecd8;
    background:
        linear-gradient(rgba(3,5,10,.72), rgba(3,5,10,.78)),
        radial-gradient(circle at 22% 10%, rgba(255,209,92,.18), transparent 24%),
        radial-gradient(circle at 78% 18%, rgba(74,156,255,.10), transparent 20%),
        linear-gradient(135deg, #06070b, #14100b 58%, #06070b);
    background-attachment: fixed;
    font-family: Arial, Helvetica, sans-serif;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: .35;
}

main { position: relative; z-index: 1; }

.glass-nav {
    background: rgba(3, 5, 10, .82);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.navbar {
    min-height: 78px;
}

.nav-link {
    color: #d9cdb5 !important;
    font-weight: 700;
}

.nav-link.active,
.nav-link:hover {
    color: var(--gold) !important;
}

.text-gold { color: var(--gold) !important; }
.text-blue { color: var(--blue) !important; }
.border-gold-soft { border-color: var(--border) !important; }
.fw-black { font-weight: 900; }

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255,209,92,.25), rgba(0,0,0,.55));
    border: 1px solid rgba(255,209,92,.4);
    margin-right: 8px;
    color: #fff;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: #15100a;
    font-weight: 900;
    border: 0;
}

.btn-gold:hover {
    color: #000;
    filter: brightness(1.08);
}

.btn-dark-soft {
    background: rgba(12,15,24,.9);
    border: 1px solid var(--border);
    color: var(--gold);
    font-weight: 800;
}

.btn-dark-soft:hover {
    color: #fff;
    border-color: rgba(255,209,92,.55);
}

.hero {
    padding-top: 150px;
    padding-bottom: 90px;
    min-height: 720px;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: clamp(3.2rem, 7vw, 6.8rem);
    font-weight: 900;
    line-height: .9;
    letter-spacing: -4px;
    color: var(--gold);
    text-shadow: 0 18px 60px rgba(255, 209, 92, .14);
}

.hero-subtitle {
    font-size: 1.35rem;
    color: #d6c8ae;
    max-width: 680px;
}

.hero-art {
    min-height: 430px;
    border-radius: 34px;
    border: 1px solid var(--border);
    background:
        linear-gradient(135deg, rgba(255,209,92,.16), transparent 28%),
        linear-gradient(rgba(0,0,0,.20), rgba(0,0,0,.68)),
        url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    box-shadow: 0 26px 90px rgba(0,0,0,.55);
    position: relative;
    overflow: hidden;
}

.hero-art::after {
    content: "HIGH FIVE";
    position: absolute;
    bottom: 22px;
    right: 26px;
    font-size: 2.2rem;
    font-weight: 900;
    color: rgba(255,209,92,.9);
}

.glass-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 24px 80px rgba(0,0,0,.35);
    backdrop-filter: blur(10px);
}

.status-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.status-row:last-child { border-bottom: 0; }

.badge-online {
    background: rgba(0,255,157,.12);
    color: #00ff9d;
    border: 1px solid rgba(0,255,157,.32);
}

.badge-offline {
    background: rgba(255,92,92,.12);
    color: #ff5c5c;
    border: 1px solid rgba(255,92,92,.32);
}

.section {
    padding: 70px 0;
}

.section-title {
    color: var(--gold);
    font-size: 2.3rem;
    font-weight: 900;
    margin-bottom: 24px;
}

.feature-card {
    min-height: 175px;
    transition: transform .2s ease, border-color .2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,209,92,.55);
}

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: rgba(255,209,92,.12);
    border: 1px solid rgba(255,209,92,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-weight: 900;
    margin-bottom: 16px;
}

.table {
    --bs-table-bg: transparent;
    --bs-table-color: #fff;
    --bs-table-border-color: rgba(255,255,255,.08);
}

.table th {
    color: var(--blue);
    text-transform: uppercase;
    font-size: .8rem;
    letter-spacing: .08em;
}

.form-control {
    background: rgba(5,7,12,.9);
    border: 1px solid rgba(255,255,255,.14);
    color: #fff;
    border-radius: 14px;
    padding: 14px 16px;
}

.form-control:focus {
    background: rgba(5,7,12,.95);
    border-color: rgba(255,209,92,.75);
    box-shadow: 0 0 0 .25rem rgba(255,209,92,.12);
    color: #fff;
}

.form-control::placeholder {
    color: #8d8374;
}

.alert-custom {
    background: rgba(255,209,92,.10);
    border: 1px solid rgba(255,209,92,.35);
    color: #f7e8c0;
    border-radius: 16px;
}

.account-avatar {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255,209,92,.25), rgba(74,156,255,.18));
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: var(--gold);
}

@media (max-width: 991px) {
    .hero {
        padding-top: 120px;
        min-height: auto;
    }

    .hero-art {
        min-height: 280px;
    }

    .hero-title {
        letter-spacing: -2px;
    }
}
