*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#ffffff;
    font-family:Arial, sans-serif;
    color:#111;
    padding-bottom:70px;
}


/* HEADER */

.top-header{
    padding:15px;
    background:#ffffff;
}

.brand-box{
    background:#0b0b0b;
    border-radius:20px;
    padding:15px;
    display:flex;
    align-items:center;
    gap:18px;
}


.logo{
    width:85px;
    height:85px;
    object-fit:contain;
    border-radius:50%;
}


.brand-text h1{
    color:#ffd700;
    font-size:25px;
    font-weight:800;
}


.brand-text p{
    color:#ddd;
    font-size:15px;
    margin-top:6px;
}



/* SEARCH */

.search-box{
    width:90%;
    margin:15px auto;
}


.search-box input{
    width:100%;
    height:52px;
    border:1px solid #ddd;
    border-radius:15px;
    padding:0 18px;
    font-size:16px;
    outline:none;
}



/* SLIDER */

.slider{
    width:90%;
    margin:15px auto;
    overflow:hidden;
}


.slide{
    display:none;
}


.slide.active{
    display:block;
}


.slide img{
    width:100%;
    height:160px;
    object-fit:cover;
    border-radius:15px;
}



/* TELEGRAM */

.telegram-area{
    width:90%;
    margin:15px auto;
}


.telegram-area a{
    display:block;
    background:#229ed9;
    color:white;
    text-align:center;
    padding:12px;
    border-radius:12px;
    font-size:17px;
    font-weight:bold;
    text-decoration:none;
}



/* GAMES TITLE */

.games-section{
    padding:10px;
}


.section-title{
    text-align:center;
    color:#f5b400;
    font-size:24px;
    margin-top:15px;
}


.game-count{
    text-align:center;
    color:#777;
    margin:8px 0 15px;
}



/* GAME GRID */

.games{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}


.game-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    text-align:center;
    padding:8px;
    box-shadow:0 4px 12px rgba(0,0,0,.12);
    height:270px;
 
}


.game-card img{
    width:150px;
    height:150px;
    display:block;
    margin:0 auto;
    object-fit:cover;
}


.game-card h3{
    font-size:17px;
    margin:10px 0;
}
/* RATING */

.rating{
    color:#ffc107;
    font-size:20px;
    margin:8px 0;
}




.install-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    width:88%;
    height:48px;
    margin:12px auto;
    background:#16a34a;
    color:#fff;
    border-radius:12px;
    text-decoration:none;
    font-size:18px;
    font-weight:700;
    transition:.3s;
}

.install-btn:hover{
    background:#15803d;
}

.install-btn:hover{
    background:#15803d;
}



/* FOOTER */

footer{
    text-align:center;
    padding:25px 10px;
    margin-top:20px;
    background:#fff;
}


.footer-logo{
    width:70px;
    height:70px;
    object-fit:contain;
    border-radius:50%;
}


footer p{
    color:#777;
    margin-top:8px;
}



/* ===== BOTTOM NAV ===== */

.bottom-nav{
    position:fixed;
    left:0;
    bottom:0;
    width:100%;
    height:65px;
    background:#eaf5ff;   /* halka blue */
    border-top:1px solid #b9dcff;
    display:flex;
    justify-content:space-around;
    align-items:center;
    z-index:9999;
    box-shadow:0 -2px 10px rgba(0,0,0,.08);
}

.bottom-nav a{
    flex:1;
    text-align:center;
    text-decoration:none;
    color:#0d6efd;
    font-size:14px;
    font-weight:700;
    line-height:1.2;
    padding-top:6px;
}

.bottom-nav a i,
.bottom-nav a span{
    display:block;
    font-size:22px;
    margin-bottom:2px;
}

.bottom-nav a:hover,
.bottom-nav a.active{
    color:#0056d6;
}



/* MOBILE FIX */

@media(max-width:600px){

.brand-box{
    padding:12px;
    gap:15px;
}


.logo{
    width:75px;
    height:75px;
}


.brand-text h1{
    font-size:21px;
}


.brand-text p{
    font-size:13px;
}


.slide img{
    height:140px;
}


.games{
    gap:10px;
}


.game-card{
    padding:10px;
}


.game-card img{
    width:95px;
    height:95px;
}


.game-card h3{
    font-size:15px;
}


.install-btn{
    height:42px;
    font-size:14px;
}

}


/* FINAL TWEAKS */
#gamesContainer{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:15px;
}

.game-card img{
width:110px;
height:110px;
object-fit:contain;
}
/* ===== HEADER ===== */

.header{
    width:100%;
    background:#0b0f19;
    padding:22px 0;
}

.logo-box{
    width:90%;
    margin:auto;
    display:flex;
    align-items:center;
    gap:18px;
}

.logo{
    width:80px;
    height:80px;
    border-radius:50%;
    object-fit:cover;
}

.logo-box h2{
    color:#FFD700;
    font-size:28px;
    font-weight:700;
    margin:0;
}

.logo-box p{
    color:#bdbdbd;
    font-size:17px;
    margin-top:6px;
}


/* ===== BANNER ===== */

.slider{
    width:90%;
    margin:20px auto 12px;
    border-radius:20px;
    overflow:hidden;
}

.slider img{
    width:100%;
    height:165px;
    object-fit:cover;
    border-radius:20px;
}


/* ===== SEARCH ===== */

.search-box{
    width:90%;
    margin:12px auto;
}

.search-box input{
    width:100%;
    height:58px;
    border:1.5px solid #d9d9d9;
    border-radius:20px;
    background:#fff;
    color:#555;
    font-size:18px;
    padding:0 22px;
    outline:none;
    box-sizing:border-box;
}

.search-box input::placeholder{
    color:#7a7a7a;
}


/* ===== TELEGRAM BUTTON ===== */

.telegram-box{
    width:90%;
    height:58px;
    margin:15px auto 20px;
    background:#2ea8df;
    border-radius:18px;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:18px;
    font-weight:700;
    text-decoration:none;
}


/* ===== TITLE ===== */

.title{
    text-align:center;
    color:#FFD700;
    font-size:24px;
    font-weight:700;
    margin-top:5px;
    margin-bottom:5px;
}

#gameCount{
    text-align:center;
    color:#777;
    font-size:17px;
    margin-bottom:20px;
}
