/* ======================================================
   LANDING PAGE STYLE.CSS
   Responsive Desktop, Tablet, Mobile
   ====================================================== */

/* Reset dasar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variabel utama */
:root {
    --primary-color: #050816;
    --secondary-color: #f6c343;
    --accent-color: #ff7a18;
    --text-color: #ffffff;
    --muted-color: #d5d7e5;
    --dark-soft: rgba(255, 255, 255, 0.08);
    --border-color: rgba(255, 255, 255, 0.18);
    --card-bg: rgba(5, 8, 22, 0.82);
    --shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
    --radius: 22px;
    --container: 1140px;
}

/* Global */
html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text-color);
    background: var(--primary-color);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background: rgba(5, 8, 22, 0.76);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-color);
}

.navbar {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-logo img {
    width: 165px;
    height: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
}

.nav-menu a {
    font-size: 15px;
    font-weight: 700;
    color: var(--muted-color);
    transition: color 0.2s ease;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.nav-action {
    flex-shrink: 0;
}

.btn-login {
    display: inline-block;
    padding: 10px 22px;
    border: 1px solid var(--secondary-color);
    border-radius: 999px;
    color: var(--secondary-color);
    font-size: 15px;
    font-weight: 800;
    text-align: center;
    transition: all 0.2s ease;
}

.btn-login:hover {
    background: var(--secondary-color);
    color: #111111;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 130px 20px 90px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image: url("https://i.gyazo.com/bf60555657f77778d4c40042b0c3a983.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at top right, rgba(246, 195, 67, 0.25), transparent 34%),
        linear-gradient(90deg, rgba(5, 8, 22, 0.96) 0%, rgba(5, 8, 22, 0.82) 48%, rgba(5, 8, 22, 0.52) 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    align-items: center;
    gap: 50px;
}

.hero-content {
    max-width: 780px;
}

.hero-label {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 16px;
    border: 1px solid rgba(246, 195, 67, 0.38);
    border-radius: 999px;
    background: rgba(246, 195, 67, 0.12);
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 780px;
    margin-bottom: 24px;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.08;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -1px;
}

.hero p {
    max-width: 650px;
    margin-bottom: 34px;
    color: var(--muted-color);
    font-size: 18px;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Button */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 15px 28px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 900;
    text-align: center;
    transition: all 0.2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: #111111;
    box-shadow: 0 14px 30px rgba(246, 195, 67, 0.28);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(246, 195, 67, 0.38);
}

.btn-secondary {
    border: 1px solid var(--border-color);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

/* Hero Card */
.hero-card {
    padding: 34px;
    border-radius: var(--radius);
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.hero-icon {
    width: 92px;
    margin-bottom: 22px;
}

.hero-card h2 {
    margin-bottom: 12px;
    font-size: 30px;
    line-height: 1.2;
    color: #ffffff;
}

.hero-card p {
    margin-bottom: 24px;
    color: var(--muted-color);
    font-size: 16px;
    line-height: 1.7;
}

.mini-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.stat-item {
    padding: 18px;
    border-radius: 16px;
    background: var(--dark-soft);
    border: 1px solid var(--border-color);
}

.stat-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--secondary-color);
    font-size: 24px;
    line-height: 1.2;
}

.stat-item span {
    color: var(--muted-color);
    font-size: 14px;
}

/* Section */
.section {
    padding: 88px 0;
    background: var(--primary-color);
}

.section-title {
    max-width: 720px;
    margin-bottom: 44px;
}

.section-title span,
.section-label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.section-title h2,
.game-wrapper h2,
.cta-box h2 {
    margin-bottom: 16px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.18;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.section-title p,
.game-wrapper p,
.cta-box p {
    color: var(--muted-color);
    font-size: 17px;
    line-height: 1.75;
}

/* Feature */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 30px;
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 20px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(246, 195, 67, 0.14);
    border: 1px solid rgba(246, 195, 67, 0.28);
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-card h3 {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 23px;
    line-height: 1.25;
}

.feature-card p {
    color: var(--muted-color);
    font-size: 16px;
    line-height: 1.7;
}

/* Game Section */
.section-dark {
    background:
        radial-gradient(circle at top left, rgba(246, 195, 67, 0.12), transparent 34%),
        #070b1d;
}

.game-wrapper {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    align-items: center;
    gap: 42px;
}

.game-list {
    display: grid;
    gap: 16px;
}

.game-item {
    padding: 20px 22px;
    border-radius: 16px;
    background: var(--dark-soft);
    border: 1px solid var(--border-color);
    color: #ffffff;
    font-weight: 900;
}

/* CTA */
.cta-box {
    padding: 58px;
    border-radius: 28px;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(246, 195, 67, 0.16), rgba(255, 122, 24, 0.08)),
        rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.cta-box p {
    max-width: 680px;
    margin: 0 auto 28px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Footer */
.site-footer {
    padding: 30px 20px;
    text-align: center;
    background: #030511;
    border-top: 1px solid var(--border-color);
}

.site-footer p {
    color: var(--muted-color);
    font-size: 14px;
}

/* Fokus aksesibilitas */
a:focus,
button:focus {
    outline: 3px solid rgba(246, 195, 67, 0.42);
    outline-offset: 4px;
}

/* ======================================================
   TABLET
   ====================================================== */
@media (max-width: 992px) {
    .navbar {
        padding: 14px 24px;
    }

    .brand-logo img {
        width: 150px;
    }

    .nav-menu {
        gap: 18px;
    }

    .nav-menu a {
        font-size: 14px;
    }

    .hero {
        padding: 125px 20px 80px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .hero-content {
        max-width: 760px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .game-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ======================================================
   MOBILE
   ====================================================== */
@media (max-width: 768px) {
    .site-header {
        background: rgba(5, 8, 22, 0.95);
        backdrop-filter: blur(12px);
    }

    .navbar {
        padding: 12px 18px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .brand-logo img {
        width: 122px;
    }

    .nav-menu {
        display: none;
    }

    .nav-action {
        width: auto;
    }

    .btn-login {
        width: auto;
        padding: 8px 16px;
        font-size: 14px;
        line-height: 1.2;
        border-radius: 999px;
    }

    .hero {
        min-height: auto;
        padding: 118px 18px 56px;
        background-position: center top;
    }

    .hero-overlay {
        background:
            linear-gradient(180deg, rgba(5, 8, 22, 0.84) 0%, rgba(5, 8, 22, 0.82) 46%, rgba(5, 8, 22, 0.96) 100%);
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-label {
        font-size: 11px;
        padding: 7px 12px;
        margin-bottom: 14px;
    }

    .hero h1 {
        font-size: 31px;
        line-height: 1.14;
        margin-bottom: 18px;
        letter-spacing: -0.5px;
    }

    .hero p {
        font-size: 15px;
        line-height: 1.65;
        margin-bottom: 26px;
    }

    .hero-buttons {
        width: 100%;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
        text-align: center;
    }

    .hero-card {
        padding: 22px;
        border-radius: 20px;
    }

    .hero-icon {
        width: 70px;
        margin-bottom: 16px;
    }

    .hero-card h2 {
        font-size: 24px;
    }

    .hero-card p {
        font-size: 15px;
    }

    .mini-stats {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 58px 0;
    }

    .container {
        padding: 0 18px;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .section-title span,
    .section-label {
        font-size: 12px;
    }

    .section-title h2,
    .game-wrapper h2,
    .cta-box h2 {
        font-size: 28px;
        line-height: 1.22;
    }

    .section-title p,
    .game-wrapper p,
    .cta-box p {
        font-size: 15px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .feature-card {
        padding: 22px;
        border-radius: 18px;
    }

    .feature-icon {
        width: 58px;
        height: 58px;
        border-radius: 16px;
    }

    .feature-card h3 {
        font-size: 20px;
    }

    .feature-card p {
        font-size: 15px;
    }

    .game-wrapper {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .game-list {
        gap: 12px;
    }

    .game-item {
        padding: 16px 18px;
        font-size: 15px;
    }

    .cta-box {
        padding: 32px 22px;
        border-radius: 22px;
    }

    .cta-buttons {
        gap: 12px;
    }

    .site-footer {
        padding: 26px 18px;
    }
}

/* ======================================================
   MOBILE KECIL
   ====================================================== */
@media (max-width: 420px) {
    .navbar {
        padding: 11px 16px;
    }

    .brand-logo img {
        width: 112px;
    }

    .btn-login {
        padding: 7px 14px;
        font-size: 13px;
    }

    .hero {
        padding: 108px 16px 52px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 14.5px;
    }

    .hero-card {
        padding: 20px;
    }

    .hero-card h2 {
        font-size: 22px;
    }

    .section-title h2,
    .game-wrapper h2,
    .cta-box h2 {
        font-size: 26px;
    }

    .feature-card {
        padding: 20px;
    }
}

/* ======================================================
   MOBILE SANGAT KECIL
   ====================================================== */
@media (max-width: 360px) {
    .brand-logo img {
        width: 102px;
    }

    .btn-login {
        padding: 7px 12px;
        font-size: 12px;
    }

    .hero h1 {
        font-size: 25px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-label {
        font-size: 10px;
    }
}

/*# sourceURL=landing-page-responsive-css */