/* ==========================================================
   CRICBET99 LANDING
   Pixel Perfect Rewrite
   ========================================================== */

:root{

    --page-bg:#2b2b2b;
    --container:#333333;

    --header:#955710;
    --navbar:#7d4209;

    --green:#11694f;

    --section:#1d5a45;

    --white:#ffffff;

    --gold1:#c98a2e;
    --gold2:#73460d;

    --font:'Roboto',sans-serif;
    --font2:'Roboto Condensed',sans-serif;

}

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

html{

    width:100%;
    height:100%;

}

body{

    background:var(--page-bg);

    font-family:var(--font);

    display:flex;

    justify-content:center;

    min-height:100vh;

}

.landing-container{

    width:100%;

    max-width:480px;

    min-height:100vh;

    background:var(--container);

    overflow:hidden;

}

/* ==========================================================
   HEADER
   ========================================================== */

.header{

    height: 56px;

    background:var(--header);

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 12px;

}

.header-left{

    display:flex;

    align-items:center;

    gap: 12px;

}

.home-icon{

    color:#fff;

    font-size:22px;

    margin-right:10px;

    width:22px;

    text-align:center;

}

.header-logo{

    height:60px;

    display:block;

    width:auto;

}

.header-right{

    display:flex;

    align-items:center;

    gap:6px;

}

.btn{

    height:34px;

    min-width:82px;

    padding:0 16px;

    border:none;

    outline:none;

    cursor:pointer;

    font-size:15px;

    font-weight:500;

    text-decoration:none;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:0;

    font-family:var(--font);

}

.btn-signup{

    background:var(--green);

    color:#fff;

}

.btn-login{

    background:#fff;

    color:#000;

}

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

.search-section{

    background:var(--header);

    padding:8px 10px 4px;

    position:relative;

}

.search-section::after{

    content:"";

    position:absolute;

    left:10px;

    bottom:0;

    width:55px;

    height:2px;

    background:#fff;

}

.search-btn{

    width:38px;

    height:38px;

    border-radius:50%;

    border:none;

    background:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    cursor:pointer;

}

.search-btn i{

    color:#000;

    font-size:18px;

}

/* ==========================================================
   NAVIGATION
   ========================================================== */

.main-nav{

    height:38px;

    background:var(--navbar);

    display:flex;

    align-items:center;

    justify-content:center;

}

.nav-list{

    list-style:none;

    display:flex;

    align-items:center;

    justify-content:center;

    width:100%;

    gap:6px;

    padding:0 6px;

}

.nav-item{

    color:#fff;

    text-decoration:none;

    font-family:var(--font2);

    font-weight:700;

    font-size:13px;

    white-space:nowrap;

    letter-spacing:.2px;

}

.nav-separator{

    color:#d8d8d8;

    font-size:11px;

    user-select:none;

}

/* ==========================================================
   SECTION HEADER
   ========================================================== */

.section-header{

    background:var(--section);

    height:34px;

    display:flex;

    align-items:center;

    padding:0 10px;

    border-bottom:2px solid #fff;

}

.section-header h2{

    color:#fff;

    font-size:17px;

    font-family:var(--font2);

    font-weight:700;

    letter-spacing:.3px;

}
/* ==========================================================
   HERO GRID
   ========================================================== */

.hero-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:1px;

    background:#fff;

}

.game-card{

    display:block;

    background:#000;

    overflow:hidden;

    height:90px;

    position:relative;

}

.game-card img{

    width:100%;

    height:100%;

    display:block;

    object-fit:cover;

    transition:transform .2s ease;

}

.game-card:hover img{

    transform:scale(1.02);

}

/* ==========================================================
   NEW LAUNCH
   ========================================================== */

.launch-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:1px;

    background:#fff;

}

.launch-card{

    background:#000;

    text-decoration:none;

    display:flex;

    flex-direction:column;

    overflow:hidden;

}

.launch-card img{

    width:100%;

    height:92px;

    object-fit:cover;

    display:block;

}

.empty-asset{

    width:100%;

    height:92px;

    background:#000;

}

.launch-label{

    background:linear-gradient(rgb(138, 78, 0), rgb(17, 98, 87));

    color:#fff;

    min-height:26px;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:3px;

    font-family:var(--font2);

    font-size:10px;

    font-weight:700;

    line-height:1.1;

    text-transform:uppercase;

}

/* ==========================================================
   MY FAVOURITES
   ========================================================== */

.section-header + .section-header{

    margin-top:0;

}

/* ==========================================================
   PROVIDERS
   ========================================================== */

.providers-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:1px;

    background:#fff;

}

.provider-card{

    background:#000;

    overflow:hidden;

    display:block;

    height:86px;

}

.provider-card img{

    width:100%;

    height:100%;

    display:block;

    object-fit:cover;

}

/* ==========================================================
   FOOTER
   ========================================================== */

.footer{
    background:#fff;
    display:flex;
    flex-direction:column;
    align-items:center;
    padding:20px 15px 25px;
}

.footer-security{
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.footer-badge{
    height:38px;
    width:auto;
    object-fit:contain;
    margin-right:12px;
}

.security-text{
    font-family:var(--font2);
    font-size:14px;
    color:#000;
    line-height:1.2;
    text-align:left;
}

.security-text strong{
    font-weight:700;
    font-size:15px;
}

.footer-icons{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    margin-bottom:15px;
}

.footer-icon{
    height:32px;
    width:auto;
    object-fit:contain;
}

.footer-copyright{
    font-family:var(--font);
    font-size:12px;
    font-weight:400;
    color:#000;
    text-align:center;
}

/* ==========================================================
   IMAGE RESET
   ========================================================== */

.hero-grid img,

.launch-grid img,

.providers-grid img{

    image-rendering:auto;

    vertical-align:middle;

}

.hero-grid a,

.launch-grid a,

.providers-grid a{

    color:inherit;

}

/* ==========================================================
   SMALL RESPONSIVE FIXES
   ========================================================== */

@media (max-width:480px){

    .landing-container{

        width:100%;

    }

    .game-card{

        height:22vw;

    }

    .launch-card img,

    .empty-asset{

        height:22vw;

    }

    .provider-card{

        height:21vw;

    }

}
