.aus96-theme {
    background: #0b1018;
    color: #e9edf2;
}

.aus96-shell {
    min-height: 100vh;
    background: linear-gradient(180deg, #0f141d 0%, #090d14 100%);
}

.aus96-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: #111a27;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.aus96-header-top {
    padding: 12px 0;
}

.aus96-logo img {
    max-height: 46px;
}

.aus96-clock {
    font-size: 12px;
    color: #93a3b5;
}

.aus96-lang-switch a,
.aus96-mobile-lang,
.aus96-mobile-logout {
    color: #f2c04f;
    text-decoration: none;
}

.aus96-login-strip {
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: #0c121c;
}

.aus96-login-form input.form-control {
    min-width: 220px;
    background: #171f2b;
    color: #e8edf5;
    border: 1px solid #233247;
}

.aus96-nav-wrap {
    background: #131f30;
}

.aus96-nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 18px;
    overflow-x: auto;
    white-space: nowrap;
}

.aus96-nav-list li a {
    display: block;
    padding: 12px 0;
    color: #b8c6d7;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
}

.aus96-nav-list li.active a,
.aus96-nav-list li a:hover {
    color: #f2c04f;
}

.aus96-main-content {
    padding-top: 16px;
    min-height: calc(100vh - 260px);
}

.aus96-three-col {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr) 300px;
    gap: 16px;
}

.aus96-panel {
    background: #111a27;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 14px;
}

.aus96-panel-title {
    color: #f2c04f;
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.aus96-side-link {
    display: block;
    background: #172336;
    border: 1px solid #24344d;
    color: #d2deed;
    text-decoration: none;
    border-radius: 8px;
    padding: 9px 10px;
    margin-bottom: 8px;
    font-size: 13px;
}

.aus96-side-link.active,
.aus96-side-link:hover {
    border-color: #f2c04f;
    color: #f2c04f;
}

.aus96-card-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.aus96-game-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    min-height: 140px;
}

.aus96-game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.aus96-game-card span {
    position: absolute;
    left: 10px;
    bottom: 10px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 13px;
    padding: 4px 8px;
    border-radius: 6px;
}

.aus96-game-card-lg {
    grid-column: span 2;
    min-height: 220px;
}

.aus96-bullet-list {
    padding-left: 18px;
    margin: 0;
    color: #c2cfdf;
}

.aus96-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #0b121d;
    padding: 24px 0;
    margin-top: 20px;
}

.aus96-footer-top h5 {
    color: #f2c04f;
}

.aus96-footer-top p {
    color: #97a8bc;
}

.aus96-footer-links {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.aus96-footer-links a {
    color: #cad6e5;
    text-decoration: none;
    font-size: 13px;
}

.aus96-mobile-theme .aus96-mobile-main {
    padding: 8px 0 72px;
}

.aus96-mobile-header {
    background: #121d2d;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.aus96-mobile-footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #0f1a29;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1040;
}

.aus96-mobile-footer a {
    color: #c0ccdc;
    text-align: center;
    padding: 11px 4px;
    text-decoration: none;
    font-size: 12px;
}

.aus96-mobile-footer a.active {
    color: #f2c04f;
}

.aus96-mobile-footer-auth {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1040;
    display: flex;
    background: #0f1a29;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1199px) {
    .aus96-three-col {
        grid-template-columns: 1fr;
    }
}

