/* ================================
   THEME
================================ */
:root {
    --bg-1: #1b1b1b;
    --bg-2: #111;
    --text: #ffffff;
    --neon: #c6ff00;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-br: rgba(255, 255, 255, 0.3);
    --shadow: 0 8px 30px rgba(0,0,0,.35);
}

/* ================================
   BASE
================================ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
    font-family: Arial, sans-serif;
    background: radial-gradient(60% 80% at 50% 0%, #1f1f1f 0%, var(--bg-1) 40%, var(--bg-2) 100%);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.container { width: 100%; max-width: 440px; padding: 18px; }

/* ================================
   HENGONGBET ROUND BUTTON
================================ */
.countries {
    display: flex;
    justify-content: center;
    margin: 46px 0 28px;
}
.country {
    color: var(--text);
    text-decoration: none;
}
.country img.hengongbet-logo {
    width: 168px;
    height: 168px;
    border-radius: 50%;
    border: 3px solid var(--neon);
    padding: 12px;
    background: transparent;
    object-fit: contain;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
    box-shadow: 0 0 0 rgba(0,0,0,0);
}
.country img.hengongbet-logo:hover {
    transform: scale(1.06);
    border-color: #eaff64;
    box-shadow: 0 0 22px rgba(198,255,0,.35);
}
.country span {
    display: block;
    margin-top: 12px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: .2px;
    color: var(--neon);
}

/* ================================
   FULL BOTTOM BAR
================================ */
.bottom-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 14px 28px;
    border-radius: 50px;
    border: 2px solid var(--glass-br);
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    width: max-content;
    margin: 0 auto;
    box-shadow: var(--shadow);
}

/* Text in bottom bar */
.bottom-bar span {
    font-size: 15px;
    font-weight: bold;
    color: var(--text);
    white-space: nowrap;
}

/* Icons in bottom bar */
.bottom-bar img {
    width: 34px;
    height: 34px;
    display: inline-block;
    transition: transform .2s ease;
}
.bottom-bar img:hover {
    transform: scale(1.05);
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 440px) {
    .country img.hengongbet-logo { width: 150px; height: 150px; }
    .country span { font-size: 18px; }
    .bottom-bar { gap: 12px; padding: 12px 20px; }
    .bottom-bar span { font-size: 14px; }
    .bottom-bar img { width: 30px; height: 30px; }
}
