
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#050505;
    overflow-x:hidden;
}

/* =========================
   NAVBAR
========================= */

.navbar{
    width:100%;
    height:90px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 8%;
    background:linear-gradient(
        90deg,
        #000000,
        #150000,
        #300000
    );
    border-bottom:1px solid rgba(255,0,0,.15);
}
.navbar nav{
    display: flex;
    gap: 1rem;
}

.navbar nav a{
    color: white;
    text-decoration: none;
}

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    width:55px;
    height:55px;
    border-radius:50%;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:35px;
}

.nav-links a{
    text-decoration:none;
    color:#bdbdbd;
    font-size:18px;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover{
    color:#ff2a2a;
}

.nav-links .active{
    color:#ff2a2a;
}

/* =========================
   HERO SECTION
========================= */

.hero{
    min-height:calc(100vh - 90px);

    background:
    linear-gradient(
        rgba(0,0,0,.65),
        rgba(0,0,0,.65)
    ),
    url("bg.jpg");

    background-size:cover;
    background-position:center;

    position:relative;
}

.hero::before{
    content:'';

    position:absolute;
    inset:0;

    background:
    radial-gradient(
        circle at top left,
        rgba(255,0,0,.25),
        transparent 30%
    ),
    radial-gradient(
        circle at bottom right,
        rgba(255,0,0,.20),
        transparent 35%
    );
}

.hero-content{
    position:relative;
    z-index:2;

    width:90%;
    max-width:1700px;

    margin:auto;

    min-height:calc(100vh - 90px);

    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* LEFT */

.left{
    width:45%;
}

.left h1{
    font-size:75px;
    color:white;
    font-weight:600;
    margin-bottom:20px;
}

.left h1 span{
    color:#ff0000;
}

.left p{
    color:white;
    font-size:24px;
    line-height:1.7;
    margin-bottom:40px;
}

/* BUTTON */

.download-btn{
    width:240px;
    height:75px;

    border:2px solid #ff0000;
    background:transparent;

    color:white;
    font-size:18px;
    font-weight:600;

    border-radius:12px;
    cursor:pointer;

    transition:.3s;
}

.download-btn:hover{
    background:#ff0000;

    transform:translateY(-3px);

    box-shadow:
    0 0 15px rgba(255,0,0,.5),
    0 0 40px rgba(255,0,0,.3);
}

/* RIGHT */

.right{
    width:50%;
    display:flex;
    justify-content:center;
}

.right img{
    width:100%;
    max-width:850px;

    border-radius:25px;

    border:2px solid rgba(255,0,0,.25);

    box-shadow:
    0 0 25px rgba(255,0,0,.25),
    0 0 70px rgba(255,0,0,.12);
}

/* =========================
   MOBILE
========================= */

@media(max-width:992px){

    .hero-content{
        flex-direction:column;
        padding:60px 0;
        gap:50px;
    }

    .left,
    .right{
        width:100%;
    }

    .left h1{
        font-size:50px;
    }

    .left p{
        font-size:18px;
    }

    .navbar{
        padding:0 20px;
    }

    .nav-links{
        gap:15px;
    }
}

/* =========================
   SCREENSHOTS SECTION
========================= */

.screenshots{
    padding:120px 8%;
    background:#070707;
    position:relative;
}

.screenshots::before{
    content:'';

    position:absolute;
    inset:0;

    background:
    radial-gradient(
        circle at top left,
        rgba(255,0,0,.12),
        transparent 30%
    ),
    radial-gradient(
        circle at bottom right,
        rgba(255,0,0,.10),
        transparent 35%
    );

    pointer-events:none;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
    position:relative;
    z-index:2;
}

.section-title h2{
    color:white;
    font-size:56px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:15px;
}

.section-title p{
    color:#b5b5b5;
    font-size:20px;
    max-width:800px;
    margin:auto;
}

/* GRID */

.screenshot-grid{
    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:35px;
}

/* CARD */

.shot-card{
    background:#111111;

    border:1px solid rgba(255,0,0,.15);

    border-radius:18px;

    overflow:hidden;

    transition:.4s;

    box-shadow:
    0 0 15px rgba(255,0,0,.08);
}

.shot-card:hover{
    transform:translateY(-10px);

    border-color:rgba(255,0,0,.5);

    box-shadow:
    0 0 25px rgba(255,0,0,.25),
    0 0 50px rgba(255,0,0,.15);
}

.shot-card img{
    width:100%;
    max-height: 700px;
    display:block;
}

/* TABLET */

@media(max-width:1200px){

    .screenshot-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* MOBILE */

@media(max-width:768px){

    .screenshots{
        padding:80px 20px;
    }

    .section-title h2{
        font-size:38px;
    }

    .section-title p{
        font-size:16px;
    }

    .screenshot-grid{
        grid-template-columns:1fr;
    }
}

/* ==========================
   FEATURES SECTION
========================== */

.features-section{
    background:#050505;
    padding:120px 8%;
    position:relative;
}

.features-section::before{
    content:"";
    position:absolute;
    inset:0;

    background:
    radial-gradient(circle at top left,
    rgba(255,0,0,.12),
    transparent 30%),

    radial-gradient(circle at bottom right,
    rgba(255,0,0,.08),
    transparent 35%);

    pointer-events:none;
}

.feature-heading{
    text-align:center;
    position:relative;
    z-index:2;
}

.feature-heading h2{
    color:#fff;
    font-size:60px;
    font-weight:700;
    margin-bottom:15px;
    letter-spacing:2px;
}

.feature-heading p{
    color:#bdbdbd;
    font-size:20px;
    max-width:950px;
    margin:auto;
}

/* TABS */

.feature-tabs{
    margin-top:60px;

    display:flex;
    justify-content:center;
    gap:50px;

    border-bottom:1px solid rgba(255,255,255,.15);

    padding-bottom:20px;
}

.tab{
    background:none;
    border:none;

    color:#bdbdbd;
    font-size:20px;
    font-weight:600;

    cursor:pointer;
    position:relative;
}

.tab.active{
    color:#ff2a2a;
}

.tab.active::after{
    content:"";

    position:absolute;
    bottom:-22px;
    left:0;

    width:100%;
    height:3px;

    background:#ff2a2a;
}

/* CONTENT */

.feature-content{
    text-align:center;
    margin-top:70px;
    position:relative;
    z-index:2;
}

.feature-content h3{
    color:white;
    font-size:48px;
    margin-bottom:20px;
}

.feature-content p{
    color:#c5c5c5;
    font-size:20px;
    line-height:1.8;

    max-width:1000px;
    margin:0 auto 50px;
}

/* IMAGE */

.feature-image{
    display:flex;
    justify-content:center;
}

.feature-image img{
    width:100%;
    max-width:380px;

    border-radius:20px;

    border:1px solid rgba(255,0,0,.25);

    box-shadow:
    0 0 20px rgba(255,0,0,.15),
    0 0 60px rgba(255,0,0,.10);

    transition:.4s;
}

.feature-image img:hover{
    transform:translateY(-10px);

    box-shadow:
    0 0 30px rgba(255,0,0,.30),
    0 0 80px rgba(255,0,0,.20);
}

/* MOBILE */

@media(max-width:768px){

    .feature-heading h2{
        font-size:40px;
    }

    .feature-content h3{
        font-size:32px;
    }

    .feature-content p{
        font-size:16px;
    }

    .feature-tabs{
        flex-direction:column;
        gap:20px;
        border:none;
    }

    .tab.active::after{
        display:none;
    }
}

.tournament-section{
    background:#050505;
    padding:100px 8%;
}

.section-title{
    text-align:center;
    color:#fff;
    font-size:55px;
    margin-bottom:70px;
}

.tournament-row{
    display:grid;
    grid-template-columns:3fr 1fr;
    gap:40px;
    margin-bottom:80px;
}

.category-title{
    color:#fff;
    font-size:38px;
    margin-bottom:25px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.tour-card{
    background:#121212;
    border-radius:12px;
    overflow:hidden;
    border:1px solid rgba(255,0,0,.15);
}

.tour-card img{
    width:100%;
    display:block;
}

.card-content{
    padding:16px;
}

.tags{
    display:flex;
    gap:8px;
    margin-bottom:15px;
}

.tags span{
    background:#ff0000;
    color:#fff;
    font-size:11px;
    padding:6px 10px;
    border-radius:5px;
}

.tags span:last-child{
    background:#1f6fff;
}

.card-content h4{
    color:#fff;
    line-height:1.4;
    margin-bottom:18px;
}

.progress-wrap{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:20px;
}

.progress{
    flex:1;
    height:6px;
    background:#2a2a2a;
    border-radius:20px;
}

.progress::after{
    content:"";
    display:block;
    width:15%;
    height:100%;
    background:#ff0000;
    border-radius:20px;
}

.progress-wrap span{
    color:#aaa;
}

.info-row{
    display:flex;
    justify-content:space-between;
    margin-bottom:20px;
}

.info-row small{
    color:#888;
    display:block;
}

.info-row p{
    color:#fff;
    font-size:14px;
    margin-top:5px;
}

.join-btn{
    width:100%;
    height:48px;
    border:none;
    border-radius:8px;
    background:#ff0000;
    color:white;
    font-size:16px;
    cursor:pointer;
}

.leaderboard{
    background:#121212;
    border-radius:12px;
    padding:20px;
    border:1px solid rgba(255,0,0,.15);
}

.leaderboard h3{
    color:#fff;
    text-align:center;
    margin-bottom:20px;
}

.leaderboard table{
    width:100%;
    border-collapse:collapse;
}

.leaderboard th,
.leaderboard td{
    padding:12px;
    border-bottom:1px solid #222;
}

.leaderboard th{
    color:#ff3b3b;
}

.leaderboard td{
    color:#ddd;
}

.tournament-section{
    background:#050505;
    padding:120px 8%;
}

.section-title{
    color:white;
    text-align:center;
    font-size:60px;
    margin-bottom:60px;
}

.tournament-row{
    display:grid;
    grid-template-columns:3fr 1fr;
    gap:30px;
}

.category-title{
    color:white;
    font-size:32px;
    margin-bottom:25px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.tour-card{
    background:#111;
    border-radius:12px;
    overflow:hidden;
    border:1px solid rgba(255,0,0,.15);
    transition:.3s;
}

.tour-card:hover{
    transform:translateY(-6px);
    box-shadow:0 0 20px rgba(255,0,0,.25);
}

.tour-card img{
    width:100%;
    display:block;
}

.card-content{
    padding:15px;
}

.tags{
    display:flex;
    gap:8px;
    margin-bottom:12px;
}

.tags span{
    padding:6px 10px;
    border-radius:5px;
    font-size:11px;
    color:white;
    font-weight:600;
}

.purple{
    background:#7c2cff;
}

.blue{
    background:#2086ff;
}

.card-content h4{
    color:white;
    margin-bottom:12px;
    line-height:1.4;
}

.match-details{
    color:#bdbdbd;
    font-size:13px;
    margin-bottom:15px;
}

.match-details p{
    margin:4px 0;
}

.progress-wrap{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:18px;
}

.progress{
    height:6px;
    flex:1;
    background:#2a2a2a;
    border-radius:20px;
    position:relative;
}

.progress::after{
    content:'';
    position:absolute;
    left:0;
    top:0;
    height:100%;
    background:#ff0000;
    border-radius:20px;
}

.progress25::after{width:25%;}
.progress50::after{width:50%;}
.progress75::after{width:75%;}
.progress100::after{width:100%;}

.progress-wrap span{
    color:#999;
}

.info-row{
    display:flex;
    justify-content:space-between;
    margin-bottom:15px;
}

.info-row small{
    color:#888;
    font-size:10px;
}

.info-row p{
    color:white;
    margin-top:4px;
    font-size:13px;
}

.join-btn{
    width:100%;
    height:45px;
    border:none;
    border-radius:8px;
    background:#ff0000;
    color:white;
    font-weight:600;
    cursor:pointer;
}

.leaderboard{
    background:#111;
    padding:20px;
    border-radius:12px;
    border:1px solid rgba(255,0,0,.15);
}

.leaderboard h3{
    color:white;
    text-align:center;
    margin-bottom:15px;
}

.leaderboard table{
    width:100%;
    border-collapse:collapse;
}

.leaderboard th,
.leaderboard td{
    padding:10px;
    border-bottom:1px solid #222;
    color:#ddd;
}

.leaderboard th{
    color:#ff3b3b;
}

@media(max-width:1400px){

    .cards{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:992px){

    .tournament-row{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    .cards{
        grid-template-columns:1fr;
    }

    .section-title{
        font-size:40px;
    }
}

/* ==========================
   CTA + FOOTER
========================== */

.cta-footer{
    background:#050505;
}

/* TOP CONTENT */

.cta-content{
    text-align:center;
    padding:120px 20px 60px;
}

.cta-content h2{
    color:white;
    font-size:60px;
    margin-bottom:20px;
    letter-spacing:2px;
}

.cta-content p{
    color:#bdbdbd;
    font-size:20px;
}

/* DOWNLOAD STRIP */

.download-strip{

    background:linear-gradient(
        90deg,
        #7a0000,
        #ff0000,
        #7a0000
    );

    padding:40px 20px;

    display:flex;
    justify-content:center;
}

.download-btn-footer{

    width:420px;
    height:70px;

    display:flex;
    justify-content:center;
    align-items:center;

    text-decoration:none;

    color:white;
    font-size:20px;
    font-weight:600;

    border:2px solid rgba(255,255,255,.8);

    border-radius:12px;

    transition:.3s;
}

.download-btn-footer:hover{

    background:white;
    color:#ff0000;

    transform:translateY(-3px);
}

/* FOOTER */

.footer{

    text-align:center;

    padding:80px 20px;

    background:#050505;
}

.footer-links{

    display:flex;
    justify-content:center;
    gap:40px;

    margin-bottom:40px;
}

.footer-links a{

    color:#d5d5d5;
    text-decoration:none;

    transition:.3s;
}

.footer-links a:hover{
    color:#ff0000;
}

/* SOCIAL */

.social-icons{

    display:flex;
    justify-content:center;
    gap:20px;

    margin-bottom:40px;
}

.social-icons a{

    width:55px;
    height:55px;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:24px;

    text-decoration:none;

    color:white;

    border:1px solid rgba(255,0,0,.25);

    border-radius:50%;

    transition:.3s;
}

.social-icons a:hover{

    background:#ff0000;

    transform:translateY(-5px);
}

/* ABOUT */

.footer h3{

    color:#ff2a2a;

    margin-bottom:25px;

    font-size:28px;
}

.footer-description{

    max-width:1000px;

    margin:0 auto 20px;

    color:#c7c7c7;

    line-height:1.8;

    font-size:17px;
}

/* COPYRIGHT */

.copyright{

    margin-top:40px;

    color:#999;
}

.copyright span{

    color:#ff2a2a;
    font-weight:600;
}

/* MOBILE */

@media(max-width:768px){

    .cta-content h2{
        font-size:40px;
    }

    .footer-links{
        flex-direction:column;
        gap:20px;
    }

    .download-btn-footer{
        width:100%;
        max-width:350px;
    }
}