/*

Custom style

You can override the default class or style here

This file will not be overwritten by the updater

*/

/* ================= PREMIUM LIGHT GAMING UI ================= */

body {
    background: linear-gradient(135deg,#f4f7fb,#eaf0f8);
    font-family: 'Poppins', sans-serif;
}

/* ===== NAVBAR ===== */

.navbar {
    background: rgba(255,255,255,0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border-radius: 0 0 25px 25px;
}

/* FIX TOGGLER ICON (3 DOT) */

.navbar-toggler {
    border: none !important;
    outline: none !important;
}

.navbar-toggler-icon {
    background-image: none !important;
    width: 30px;
    height: 3px;
    background: #333;
    display: inline-block;
    position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 3px;
    background: #333;
    left: 0;
}

.navbar-toggler-icon::before { top: -8px; }
.navbar-toggler-icon::after { top: 8px; }

/* FIX MOBILE MENU VISIBILITY */

.navbar-collapse {
    background: white;
    border-radius: 20px;
    padding: 15px;
}

.navbar-collapse .nav-link {
    color: #333 !important;
    font-weight: 500;
    padding: 10px 0;
}

/* ===== HERO SECTION ===== */

.hero-banner {
    background: linear-gradient(120deg,#667eea,#764ba2);
    padding: 90px 20px;
    border-radius: 35px;
    margin: 40px;
    text-align: center;
    color: white;
    box-shadow: 0 25px 80px rgba(0,0,0,0.2);
}

.hero-banner h1 {
    font-size: 42px;
    font-weight: 700;
}

.hero-banner p {
    font-size: 18px;
    margin-top: 15px;
}

/* ===== CATEGORY PILLS ===== */

.categories a {
    background: white;
    padding: 12px 25px;
    border-radius: 40px;
    margin: 8px;
    font-weight: 600;
    color: #444 !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.categories a:hover {
    transform: translateY(-5px);
    background: linear-gradient(45deg,#ff9a9e,#fad0c4);
}

/* ===== GAME CARDS PREMIUM ===== */

.list-game {
    border-radius: 25px;
    overflow: hidden;
    background: white;
    transition: 0.4s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.list-game img {
    transition: 0.4s ease;
}

.list-game:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}

.list-game:hover img {
    transform: scale(1.07);
}

/* ===== SECTION TITLE ===== */

.item-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

/* ===== BUTTON ===== */

.btn, .load-more {
    background: linear-gradient(45deg,#667eea,#764ba2);
    color: white !important;
    border-radius: 50px;
    padding: 12px 30px;
    box-shadow: 0 10px 30px rgba(118,75,162,0.4);
    transition: 0.3s ease;
}

.btn:hover {
    transform: scale(1.08);
}

/* ===== FOOTER ===== */

footer {
    background: white;
    padding: 40px;
    margin-top: 60px;
    border-radius: 30px 30px 0 0;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.05);
}