/* ===========================
   HERO
=========================== */

.hero {
    overflow: hidden;
}

.hero-slide {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-text {
    position: relative;
    z-index: 2;
    max-width: 580px;
    padding: 60px 0;
    margin-left: 70px;
}

.hero-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    color: #101828;
    margin-bottom: 18px;
}

.hero-title span {
    background: linear-gradient(90deg, #006FEE, #7C3AED);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    max-width: 500px;
    margin-bottom: 30px;
    color: #5B6072;
    font-size: 17px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: #EAF2FF;
    color: #006FEE;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 35px;
}

.hero-perks div {
    display: flex;
    gap: 8px;
    align-items: center;
    font-weight: 700;
}

.hero-perks i {
    color: #006FEE;
}


/* HERO BUTTON */

.btn-purple,
.btn-outline-purple {
    padding: 13px 30px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
}

.btn-purple {
    background: #006FEE;
    color: white;
}

.btn-outline-purple {
    background: white;
    border: 2px solid #006FEE;
    color: #006FEE;
}


/* HERO IMAGE */

.hero-img-wrap {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 58%;
    z-index: 1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mask-image: linear-gradient(to right, transparent 0%, black 18%);
}


/* CONTROL */

.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.hero-indicators button {
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 50%;
    background: #DDD6F3;
}

.hero-indicators button.active {
    width: 26px;
    background: #006FEE;
    border-radius: 8px;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #DDD6F3;
    background: white;
    z-index: 5;
}

.hero-arrow-prev {
    left: 20px;
}

.hero-arrow-next {
    right: 20px;
}


/* STAT */

.stat-box {
    padding: 25px;
    background: white;
    border: 2px solid #DCE3EF;
    border-radius: 16px;
    text-align: center;
}

.stat-value {
    color: #006FEE;
    font-size: 36px;
    font-weight: 900;
}


/* KONSOL */

.konsol-item {
    height: 100%;
    padding: 25px;
    background: white;
    border: 2px solid #DCE3EF;
    border-radius: 20px;
    text-align: center;
    transition: .25s;
}

.konsol-item:hover {
    transform: translateY(-8px);
}

.konsol-item img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 20px;
}

.konsol-item p {
    margin: 0;
    color: #101828;
    font-weight: 900;
}


/* TITLE */

.section-title {
    color: #101828;
    font-size: 34px;
    font-weight: 900;
}


/* FEATURE */

.feature-link {
    color: inherit;
    text-decoration: none;
}

.feature-card {
    height: 100%;
    padding: 30px;
    background: white;
    border: 2px solid #DCE3EF;
    border-radius: 18px;
    text-align: center;
    transition: .25s;
}

.feature-card:hover {
    transform: translateY(-6px);
}

.feature-card i {
    color: #006FEE;
}

.feature-card h3 {
    font-weight: 900;
}


/* ROOM POPULER */

.room-populer-card {
    background: white;
    border: 2px solid #DCE3EF;
    border-radius: 18px;
    overflow: hidden;
    transition: .25s;
}

.room-populer-card:hover {
    transform: translateY(-6px);
}

.room-populer-img {
    position: relative;
    aspect-ratio: 4/3;
}

.room-populer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-populer-body {
    padding: 18px;
}

.room-populer-body h4 {
    font-weight: 900;
}

.room-populer-price {
    color: #006FEE;
    font-weight: 900;
}

.badge-room {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    background: #006FEE;
    color: white;
    font-size: 11px;
    font-weight: 900;
}

/* ===========================
   LIHAT SEMUA BUTTON
=========================== */

.lihat-semua {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    background: #006FEE;
    color: white !important;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none !important;
    box-shadow: 0 6px 18px rgba(0, 111, 238, .25);
    transition: .25s;
}

.lihat-semua:hover {
    background: #0057c2;
    color: white !important;
    transform: translateY(-3px);
}

/* GAME */

.game-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
}

.game-card {
    width: 150px;
    flex: 0 0 auto;
    aspect-ratio: 3/4;
    border-radius: 14px;
    overflow: hidden;
}

.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* MAPS */

.maps-card,
.schedule-box {
    height: 100%;
    padding: 25px;
    background: white;
    border: 2px solid #DCE3EF;
    border-radius: 18px;
}

.maps-frame {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 14px;
}

.schedule-box h3 {
    font-weight: 900;
}

.schedule-time {
    color: #006FEE;
    font-weight: 900;
}

.schedule-open {
    margin-top: 20px;
    color: #10B981;
    font-weight: 900;
}


/* RESPONSIVE */

@media(max-width:991px) {
    .hero-text {
        margin-left: 0;
        padding: 30px 20px;
    }

    .hero-img-wrap {
        position: relative;
        width: 100%;
        height: 280px;
    }

    .hero-img {
        mask-image: none;
    }
}