
/* =========================
   GLOBAL
========================= */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: radial-gradient(circle at top, #0b1220, #05070f);
    color: #ffffff;
}

/* =========================
   TOPBAR (GOLD MENU UI)
========================= */
.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    background: rgba(10, 15, 25, 0.85);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
}

.logo {
    display: flex;
    align-items: center;
}

.menu {
    display: flex;
    gap: 18px;
    margin-left: auto;
    align-items: center;
}

.menu a {
    color: #ffd700; /* 🔥 GOLD */
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

.menu a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px #ffd700;
    transform: translateY(-1px);
}

.menu button {
    background: transparent;
    border: 1px solid #ffd700;
    color: #ffd700;
    padding: 6px 10px;
    border-radius: 6px;
}

.menu button:hover {
    background: #ffd700;
    color: #000;
}

/* =========================
   BANNER
========================= */
.banner {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.banner img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.5s ease;
}

.banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
}

/* =========================
   CONTAINER (FIX NO FLEX BUG)
========================= */
.container {
    padding: 20px;
    max-width: 1100px;
    margin: auto;
    display: block;
}

/* =========================
   CARD (GAME STYLE)
========================= */
.card {
    background: rgba(30, 41, 59, 0.85);
    padding: 18px;
    border-radius: 14px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 215, 0, 0.08);
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
    transition: 0.2s;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

/* =========================
   BUTTON (GOLD STYLE)
========================= */
button {
    background: linear-gradient(45deg, #ffd700, #ffb300);
    color: #000;
    border: none;
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

/* =========================
   INPUT (LOGIN STYLE)
========================= */
input {
    width: 100%;
    padding: 10px;
    margin: 6px 0;
    border-radius: 8px;
    border: none;
    outline: none;
}

/* =========================
   LOGIN CENTER
========================= */
.login-wrap {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-card {
    width: 320px;
    text-align: center;
    background: rgba(30, 41, 59, 0.9);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* =========================
   LEADERBOARD
========================= */
ul {
    list-style: none;
    padding: 0;
}

li {
    background: rgba(51, 65, 85, 0.8);
    margin: 8px 0;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
}

/* 🥇 RANK */
.gold {
    background: linear-gradient(90deg, #facc15, #fbbf24);
    color: #000;
    font-weight: bold;
}

.silver {
    background: linear-gradient(90deg, #cbd5e1, #94a3b8);
    color: #000;
    font-weight: bold;
}

.bronze {
    background: linear-gradient(90deg, #d97706, #b45309);
    color: #fff;
    font-weight: bold;
}

/* =========================
   BOSS UI
========================= */
.boss-center {
    text-align: center;
}

.boss-image {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.boss-image img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    transition: 0.3s;
}

.boss-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
}

/* =========================
   SCREENSHOT GRID
========================= */
.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.screenshot-grid img {
    width: 100%;
    border-radius: 12px;
    transition: 0.3s;
}

.screenshot-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 200, 0.4);
}

/* =========================
   WALLET ICON
========================= */
.wallet img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    vertical-align: middle;
    margin: 0 6px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .menu {
        display: none;
    }

    .banner {
        height: 160px;
    }
}