/*==========================================
RESET
==========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,
body{

    width:100%;
    height:100%;

    overflow-x:hidden;

    font-family:'Poppins',sans-serif;

    background:#000;

}

/*==========================================
BACKGROUND
==========================================*/

.landing-page{

    position:relative;

    width:100%;

    min-height:100vh;

    overflow:hidden;

    background:url("../images/background3.png") center center no-repeat;

    background-size:cover;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:55px 20px 75px;

}

.overlay{

    position:absolute;

    inset:0;

    background:

    linear-gradient(

    rgba(0,0,0,.12),

    rgba(0,0,0,.35)

    );

    backdrop-filter:blur(1px);

    z-index:1;

}

/*==========================================
HEADER
==========================================*/

.top-header{

    position:absolute;

    left:0;

    top:18px;

    width:100%;

    z-index:100;

}

.header-flex{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.small-logo{

    width:155px;

    display:block;

    filter:drop-shadow(0 0 12px #00d5ff);

}

.support-btn{

    display:flex;

    justify-content:center;

    align-items:center;

    width:135px;

    height:52px;

    background:

    linear-gradient(180deg,#3fc3ff,#0066ff);

    color:#fff;

    text-decoration:none;

    border-radius:12px;

    font-weight:600;

    border:1px solid rgba(255,255,255,.25);

    box-shadow:

    0 0 20px rgba(0,170,255,.45);

    transition:.3s;

}

.support-btn:hover{

    color:#fff;

    transform:translateY(-3px);

    box-shadow:

    0 0 25px rgba(0,170,255,.8);

}

/*==========================================
HERO
==========================================*/

.hero-container{

    position:relative;

    z-index:10;

    width:100%;

    max-width:680px;

    margin:auto;

}

.hero-card{

    width:100%;

}

/*==========================================
LOGO
==========================================*/

.logo-wrapper{

    display:flex;

    justify-content:center;

    margin-bottom:15px;

}

.main-logo{

    width:100%;

    max-width:360px;

    display:block;

    filter:

    drop-shadow(0 0 15px #00d7ff)

    drop-shadow(0 0 35px rgba(0,183,255,.55));

}

/*==========================================
FREE TO PLAY
==========================================*/

.free-box{

    background:

    linear-gradient(180deg,#2568df,#003b9d);

    border:3px solid #ffd44a;

    border-radius:22px;

    padding:15px;

    margin-bottom:18px;

    text-align:center;

    box-shadow:

    0 0 25px rgba(0,140,255,.45);

}

.free-box h1{

    margin:0;

    color:#ffd44a;

    font-size:48px;

    font-family:'Oswald',sans-serif;

    letter-spacing:2px;

    text-shadow:2px 2px #000;

}

.free-box p{

    margin-top:5px;

    color:#fff;

    font-size:18px;

}

/* Hover */

.free-box:hover{

    box-shadow:

    0 0 35px rgba(0,170,255,.75);

    transition:.3s;

}/*==========================================
INFO BOX
==========================================*/

.info-box{

    background:rgba(0,0,0,.82);

    border:2px solid #ff3333;

    border-radius:20px;

    padding:18px 28px;

    margin-bottom:18px;

    box-shadow:0 0 25px rgba(255,0,0,.20);

}

.info-box ul{

    list-style:none;

    margin:0;

    padding:0;

}

.info-box li{

    position:relative;

    padding-left:28px;

    margin-bottom:12px;

    color:#fff;

    font-size:16px;

    line-height:1.4;

}

.info-box li:last-child{

    margin-bottom:0;

}

.info-box li::before{

    content:"✔";

    position:absolute;

    left:0;

    top:0;

    color:#47ff60;

    font-size:16px;

}

/*==========================================
DOWNLOAD BUTTONS
==========================================*/

.download-buttons{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    width:100%;

    margin:18px 0;

}

.download-btn{

    width:48%;

    height:46px;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:8px;

    background:linear-gradient(#49db4f,#188b22);

    border:2px solid #91ff8d;

    border-radius:8px;

    color:#fff;

    text-decoration:none;

    font-size:11px;

    font-weight:700;

    line-height:1.1;

    text-transform:uppercase;

    transition:.3s;

}
@media(max-width:768px){

.download-buttons{

    flex-direction:row;

    gap:8px;

}

.download-btn{

    width:50%;

    font-size:10px;

    height:42px;

}

}

/*==========================================
PLAY BUTTON
==========================================*/

.play-wrapper{

    margin-bottom:18px;

}

.play-btn{

    width:100%;

    height:62px;

    border-radius:15px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(#ff652f,#b70000);

    border:3px solid #ffd54c;

    color:#fff;

    text-decoration:none;

    font-family:'Oswald',sans-serif;

    font-size:34px;

    letter-spacing:2px;

    text-shadow:2px 2px #000;

    box-shadow:0 0 20px rgba(255,80,0,.40);

    transition:.3s;

}

.play-btn:hover{

    color:#fff;

    transform:scale(1.02);

    box-shadow:0 0 30px rgba(255,80,0,.70);

}

/*==========================================
BOTTOM STRIP
==========================================*/

.bottom-strip{

    position:absolute;

    bottom:10px;

    left:50%;

    transform:translateX(-50%);

    width:680px;

    max-width:95%;

    background:rgba(0,0,0,.82);

    border:2px solid #ff3030;

    border-radius:18px;

    padding:10px 18px;

    display:flex;

    align-items:center;

    gap:15px;

    z-index:100;

}

.age-circle{

    width:50px;

    height:50px;

    border-radius:50%;

    background:#fff;

    color:#000;

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:700;

    font-size:20px;

    flex-shrink:0;

}

.strip-content h4{

    margin:0;

    color:#ff4444;

    font-family:'Oswald',sans-serif;

    font-size:22px;

}

.strip-content p{

    margin:2px 0 0;

    color:#fff;

    font-size:13px;

}

/*==========================================
RESPONSIVE
==========================================*/

@media(max-width:992px){

.hero-container{

max-width:600px;

}

.main-logo{

max-width:300px;

}

.free-box h1{

font-size:38px;

}

.download-btn{

font-size:14px;

}

.play-btn{

font-size:28px;

height:56px;

}

}

@media(max-width:768px){

.landing-page{

padding:75px 15px 90px;

}

.small-logo{

width:110px;

}

.support-btn{

width:110px;

height:42px;

font-size:13px;

}

.main-logo{

max-width:240px;

}

.free-box{

padding:12px;

}

.free-box h1{

font-size:30px;

}

.free-box p{

font-size:15px;

}

.info-box{

padding:16px;

}

.info-box li{

font-size:14px;

}

.download-buttons{

flex-direction:column;

}

.download-btn{

width:100%;

}

.play-btn{

height:52px;

font-size:24px;

}

.bottom-strip{

bottom:8px;

padding:10px;

}

.age-circle{

width:42px;

height:42px;

font-size:18px;

}

.strip-content h4{

font-size:16px;

}

.strip-content p{

font-size:11px;

}

}