*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#000;
    font-family:Arial,sans-serif;
    max-width:480px;
    margin:auto;
}

/* HEADER */

.kb-header{
    height:75px;
    background:#000;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 15px;

    border-bottom:1px solid rgba(255,140,0,.25);

    box-shadow:
        0 0 15px rgba(255,140,0,.15);
}

.kb-logo{
    height:50px;
    width:auto;
}

.kb-login{
    background:linear-gradient(
        180deg,
        #ffb300,
        #ff7b00
    );

    color:#000;
    font-size:16px;
    font-weight:700;

    padding:12px 24px;

    border-radius:8px;

    text-decoration:none;

    box-shadow:
        0 0 10px #ff9d00,
        0 0 20px rgba(255,157,0,.4);
}

/* HERO */

.hero-banner{
    padding:15px;
}

.hero-banner img{
    width:100%;
    display:block;

    border-radius:15px;

    border:1px solid rgba(255,140,0,.3);

    box-shadow:
        0 0 20px rgba(255,140,0,.2);
}

/* SECTION */

.section-title{
    display:flex;
    align-items:center;
    gap:10px;
    padding:20px 15px;
}

.title-line{
    width:5px;
    height:30px;
    background:#ffb000;

    border-radius:20px;

    box-shadow:
        0 0 10px #ffb000;
}

.section-title h2{
    color:#ffcc00;
    font-size:18px;
    font-weight:800;
    text-transform:uppercase;
}

/* GRID */

#game-container{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
    padding:0 15px 25px;
}

/* CARD */

.game-card{
    transition:.2s;
}

.game-card:hover{
    transform:translateY(-3px);
    box-shadow:
        0 0 20px rgba(255,140,0,.3);
}

.game-card img{
    width:100%;
    aspect-ratio:16/9;
    object-fit:cover;
    display:block;
}

.game-info{
    padding:12px;
}

.game-title{
    color:#fff;
    font-size:15px;
    font-weight:700;
    text-align:center;
    line-height:1.3;
    margin-bottom:10px;
}

.game-provider{
    display:block;

    padding:8px;

    border:1px solid #ffb000;

    border-radius:25px;

    color:#ffcc00;

    text-align:center;

    font-size:12px;
}

/* MOBILE */

@media(max-width:480px){

.section-title h2{
    text-shadow:
        0 0 10px rgba(255,180,0,.5),
        0 0 20px rgba(255,180,0,.3);
}

.game-card img{
    height:140px;
    object-fit:cover;
}
.game-card{
    transition:.2s;
}

.game-card:hover{
    transform:translateY(-3px);
    box-shadow:
        0 0 20px rgba(255,140,0,.3);
}

    .game-title{
        font-size:14px;
    }

    .game-provider{
        font-size:11px;
        padding:7px;
    }

}
/* =========================
   CTA BUTTON
========================= */

.cta-box{
    display:flex;
    gap:12px;
    padding:0 15px 40px;
    margin-top:18px;
}

.btn-login,
.btn-daftar{

    flex:1;

    text-align:center;

    text-decoration:none;

    padding:14px;

    border-radius:12px;

    font-size:16px;

    font-weight:800;

    text-transform:uppercase;

    transition:.2s;
}

.btn-login{

    background:#1a1a1a;

    color:#fff;

    border:2px solid #ff9900;

    box-shadow:
        0 0 15px rgba(255,153,0,.2);
}

.btn-daftar{

    background:linear-gradient(
        180deg,
        #ffb300,
        #ff7300
    );

    color:#000;

    box-shadow:
        0 0 15px rgba(255,153,0,.4);
}

.btn-login:hover,
.btn-daftar:hover{

    transform:translateY(-2px);
}

/* =========================
   TITLE
========================= */

.hero-content{

    padding:0 15px 30px;

    text-align:center;
}

.hero-content h1{

    color:#ffcc00;

    font-size:24px;

    font-weight:900;

    line-height:1.3;

    margin-bottom:15px;

    text-shadow:
        0 0 10px rgba(255,180,0,.3);
}

.hero-content p{

    color:#bbb;

    font-size:14px;

    line-height:1.8;

    max-width:420px;

    margin:0 auto;
}
/* =========================
   PREMIUM FOOTER
========================= */

.kb-footer{

    padding:50px 20px 35px;

    text-align:center;

    background:#000;
}

.footer-divider{

    width:120px;

    height:3px;

    margin:0 auto 30px;

    border-radius:50px;

    background:linear-gradient(
        90deg,
        transparent,
        #ff9900,
        #ffcc00,
        #ff9900,
        transparent
    );

    box-shadow:
        0 0 15px rgba(255,180,0,.6),
        0 0 30px rgba(255,180,0,.3);
}

.footer-brand{

    color:#ffcc00;

    font-size:28px;

    font-weight:900;

    letter-spacing:3px;

    margin-bottom:15px;

    text-shadow:
        0 0 15px rgba(255,180,0,.5);
}

.footer-desc{

    color:#bbb;

    font-size:14px;

    line-height:1.8;

    margin-bottom:25px;
}

.footer-badges{

    display:flex;

    justify-content:center;

    gap:10px;

    flex-wrap:wrap;

    margin-bottom:25px;
}

.footer-badge{

    padding:8px 14px;

    border:1px solid #ff9900;

    border-radius:30px;

    color:#ffcc00;

    font-size:11px;

    font-weight:700;

    background:rgba(255,153,0,.05);

    box-shadow:
        0 0 10px rgba(255,153,0,.15);
}

.footer-copy{

    color:#777;

    font-size:12px;

    letter-spacing:1px;
}