/* style.css */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#071126;
    color:white;
    overflow-x:hidden;
}

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:20px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:rgba(7,17,38,0.95);
    backdrop-filter:blur(10px);
    z-index:999;
}

.logo{
    font-size:32px;
    font-weight:900;
    color:#FFD000;
}

.logo span{
    color:#FF3B30;
}

.nav-links{
    display:flex;
    gap:35px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    transition:0.3s;
}

.nav-links a:hover{
    color:#FFD000;
}

.hero-btn{
    background:linear-gradient(
        135deg,
        #FFD000,
        #FF9800
    );
    color:black;
    padding:14px 28px;
    border-radius:14px;
    font-weight:700;
    text-decoration:none;
}

.hero{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:120px 8%;
    background:linear-gradient(
        rgba(7,17,38,0.85),
        rgba(7,17,38,0.9)
    ),
    url('billboard.jpg');
    background-size:cover;
    background-position:center;
}

.hero-content{
    max-width:760px;
}

.live-badge{
    display:inline-flex;
    gap:10px;
    align-items:center;
    background:#FF3B30;
    padding:12px 24px;
    border-radius:50px;
    margin-bottom:24px;
}

.live-dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:white;
}

.hero h1{
    font-size:72px;
    line-height:1.1;
    margin-bottom:25px;
}

.hero h1 span{
    color:#FFD000;
}

.hero p{
    color:#ddd;
    line-height:1.8;
    font-size:20px;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.primary-btn{
    background:linear-gradient(
        135deg,
        #FFD000,
        #FF9800
    );
    color:black;
    padding:18px 34px;
    border-radius:18px;
    text-decoration:none;
    font-weight:800;
}

.secondary-btn{
    border:2px solid #FFD000;
    color:#FFD000;
    padding:18px 34px;
    border-radius:18px;
    text-decoration:none;
    font-weight:700;
}

.app-download{
    padding:100px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
    flex-wrap:wrap;
}

.app-left{
    flex:1;
}

.download-badge{
    display:inline-block;
    background:#FF3B30;
    padding:12px 24px;
    border-radius:50px;
    margin-bottom:25px;
    font-weight:700;
}

.app-left h2{
    font-size:58px;
    margin-bottom:24px;
}

.app-left p{
    color:#ccc;
    line-height:1.9;
    margin-bottom:40px;
}

.download-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
}

.store-btn{
    display:flex;
    gap:16px;
    align-items:center;
    padding:18px 28px;
    border-radius:22px;
    text-decoration:none;
    min-width:240px;
}

.store-btn i{
    font-size:34px;
}

.android-btn{
    background:#00C853;
    color:white;
}

.ios-btn{
    background:#111;
    color:white;
}

.apk-btn{
    background:#FFD000;
    color:black;
}

.phone-mockup{
    width:320px;
    height:650px;
    background:black;
    border-radius:45px;
    padding:18px;
}

.phone-screen{
    width:100%;
    height:100%;
    border-radius:35px;
    background:linear-gradient(
        135deg,
        #FFD000,
        #FF9800,
        #FF3B30
    );
    padding:40px;
    color:black;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.features{
    padding:100px 8%;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title h2{
    font-size:52px;
    margin-bottom:20px;
}

.feature-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.feature-card{
    background:#111B35;
    padding:40px;
    border-radius:28px;
}

.feature-icon{
    width:80px;
    height:80px;
    border-radius:22px;
    background:#FFD000;
    color:black;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    margin-bottom:25px;
}

.live-section{
    padding:100px 8%;
}

.live-card{
    background:linear-gradient(
        135deg,
        #FFD000,
        #FF9800
    );
    padding:60px;
    border-radius:35px;
    color:black;
}

.countdown{
    display:flex;
    gap:18px;
    margin-top:30px;
}

.time-box{
    width:100px;
    height:100px;
    background:black;
    color:white;
    border-radius:22px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.footer{
    padding:80px 8%;
    background:#050B18;
}

.footer-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
}

.footer h3{
    margin-bottom:25px;
    color:#FFD000;
}

.footer a,
.footer p{
    color:#aaa;
    line-height:2;
    text-decoration:none;
}

.socials{
    display:flex;
    gap:18px;
}

.socials a{
    width:48px;
    height:48px;
    border-radius:14px;
    background:#111B35;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#FFD000;
}

.copyright{
    margin-top:50px;
    text-align:center;
    color:#777;
}

@media(max-width:900px){

    .nav-links{
        display:none;
    }

    .hero h1{
        font-size:48px;
    }

    .app-left h2{
        font-size:42px;
    }

    .countdown{
        flex-wrap:wrap;
    }
}