:root {
    --primary: #010d55;
    --accent: #feca10;
    --pink: #ffe0e5;
    --muted: #f3f4f6;
    --text: #111827;
    --green: #059669;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background: #fff;
    color: var(--text);
    padding-top: 64px;
}

a {
    text-decoration: none;
}

.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.08);
}

.top-nav .wrap {
    height: 64px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
}

.brand img {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    object-fit: cover;
}

.brand .name {
    font-size: 23px;
    font-weight: 800;
    letter-spacing: 0.2px;
}

.brand .name .accent {
    color: var(--primary);
}

.nav-links {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-links a {
    font-weight: 800;
    font-size: 13px;
    color: var(--primary);
    background: rgba(1, 13, 85, 0.08);
    padding: 8px 12px;
    border-radius: 999px;
}

.nav-links a:hover {
    background: rgba(1, 13, 85, 0.14);
}

section[id] {
    scroll-margin-top: 80px;
}

.page {
    max-width: 1100px;
    margin: 0 auto;
}

.section {
    padding: 18px 14px;
}

.header {
    text-align: center;
    margin-top: 10px;
}

.hero-title {
    font-weight: 900;
    font-size: clamp(28px, 4vw, 56px);
    line-height: 1.05;
}

.hero-title .highlight {
    color: var(--primary);
}

.hero-subtitle {
    margin-top: 10px;
    font-weight: 800;
    font-size: clamp(20px, 3vw, 34px);
}

.hero-media {
    width: 100%;
    aspect-ratio: 10 / 7;
    overflow: hidden;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.cta {
    background: var(--pink);
    padding: 18px 14px 22px;
    text-align: center;
}

.btn-primary-pill {
    background: var(--primary);
    border: 2px solid #fff;
    color: #fff;
    border-radius: 999px;
    width: min(420px, 90vw);
    padding: 12px 18px;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(1, 13, 85, 0.25);
}

.bounce {
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(.8, 0, 1, 1);
    }

    50% {
        transform: none;
        animation-timing-function: cubic-bezier(0, 0, .2, 1);
    }
}

.cta-number {
    margin-top: 18px;
    font-size: 26px;
    font-weight: 900;
    color: #1f2937;
}

.cta-actions {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    padding: 12px 18px;
    width: min(220px, 44vw);
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
}

.btn-pill.btn-call {
    background: #fff;
    color: #1f2937;
    border-color: var(--primary);
}

.btn-pill.btn-wa {
    background: var(--green);
    color: #fff;
    border-color: #fff;
}

.hanging-wa {
    position: fixed;
    left: 10px;
    bottom: 18px;
    z-index: 1001;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 2px solid #fff;
    background: var(--green);
    box-shadow: 0 12px 30px rgba(5, 150, 105, 0.35);
    display: grid;
    place-items: center;
    color: #fff;
}

.muted {
    background: var(--muted);
}

.section-title {
    text-align: center;
    margin: 12px 0 10px;
}

.section-title h2 {
    font-size: 40px;
    font-weight: 900;
    margin: 0;
}

.section-title h2 .accent {
    color: var(--primary);
}

.section-title p {
    margin-top: 6px;
    font-weight: 600;
    color: #6b7280;
}

.pill-nav {
    background: #e9ecef;
    border-bottom: 1px solid rgba(15, 23, 42, 0.2);
    padding: 0;
    margin: 0 0 14px;
    border-radius: 12px;
    overflow: hidden;
}

.pill-nav .nav-link {
    border-radius: 0 !important;
    color: #111827;
    font-weight: 800;
    padding: 12px 10px;
}

.pill-nav .nav-link.active {
    background: var(--primary) !important;
    color: #fff !important;
}

.rate-card {
    background: #fff;
    border-left: 4px solid var(--primary);
    border-radius: 0 12px 12px 0;
    padding: 14px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}

.rate-card .label {
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.rate-card .value {
    font-weight: 900;
    color: var(--primary);
}

.game-card {
    background: #fff;
    border-left: 4px solid var(--primary);
    border-radius: 0 12px 12px 0;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
    padding: 14px 12px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    min-height: 140px;
}

.game-card .name {
    font-weight: 900;
    text-align: center;
}

.game-card .rate {
    text-align: center;
    font-weight: 800;
    color: #f64401;
    margin-top: 4px;
}

.btn-circle1 {
    background-color: var(--primary);
    border-radius: 999px;
    width: 60px;
    height: 60px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(1, 13, 85, 0.7);
    outline: none;
    border: 2px solid #fff;
}

.btn-circle1 i {
    font-size: 24px;
}

.play-now {
    text-align: center;
    color: var(--text);
    font-weight: 900;
    margin-top: 6px;
}

.site-footer {
    margin-top: 12px;
    background: var(--primary);
    color: #fff;
    text-align: center;
    padding: 22px 14px;
}

.footer-brand {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #fff;
}

.footer-brand img {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    object-fit: cover;
}

.footer-brand .name {
    font-size: 24px;
    font-weight: 900;
}

.footer-copy {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

@media (max-width: 420px) {
    .btn-pill {
        width: 90vw;
    }
}

@media (max-width: 480px) {
    .nav-links a {
        padding: 7px 10px;
        font-size: 12px;
    }
}
