*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial,sans-serif;
}

body{
  background:#050505;
  color:#fff;
  overflow-x:hidden;
}

/* NAVBAR */

.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 25px;
  background:rgba(0,0,0,.75);
  backdrop-filter:blur(12px);
  z-index:1000;
  border-bottom:1px solid #ff2d2d;
}

.logo{
    font-size:1.4rem;
    font-weight:900;
    background:linear-gradient(
        90deg,
        #fff7b2,
        #FFD700,
        #FFB300,
        #FFD700,
        #fff7b2
    );
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    text-shadow:
        0 0 8px rgba(255,215,0,.6),
        0 0 18px rgba(255,193,7,.5);
};

nav a{
  color:#fff;
  text-decoration:none;
  margin-left:20px;
  transition:.3s;
}

nav a:hover{
  color:#ff2d2d;
}

/* HERO */

.hero{
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  flex-direction:column;
  text-align:center;
  position:relative;
  padding:60px 20px;
  background:
  radial-gradient(circle at top,#8a2be255 0%,transparent 45%),
  linear-gradient(135deg,#050505,#18002d);
}

.hero-content{
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  z-index:2;
}

.hero h1{
  font-size:3rem;
  color:#ff2d2d;
  text-shadow:0 0 25px #ff2d2d;
  margin-bottom:18px;
}

.hero p{
  color:#ddd;
  font-size:1.1rem;
  margin-bottom:15px;
}

.hero-buttons{
  display:flex;
  justify-content:center;
  gap:15px;
  flex-wrap:wrap;
  margin-bottom:35px;
}

.btn-primary,
.btn-secondary{
  padding:14px 28px;
  border:none;
  border-radius:50px;
  cursor:pointer;
  font-weight:bold;
  transition:.3s;
}

.btn-primary{
  background:#ff2d2d;
  color:#fff;
  box-shadow:0 0 20px #ff2d2d;
}

.btn-primary:hover{
  transform:translateY(-3px);
  box-shadow:0 0 35px #ff2d2d;
}

.btn-secondary{
  background:transparent;
  border:2px solid #ff2d2d;
  color:#fff;
}

.btn-secondary:hover{
  background:#ff2d2d;
}

/* PHONE */

.phone{
  display:flex;
  justify-content:center;
  margin:30px 0;
  animation:float 4s ease-in-out infinite;
}

.iphone{
  width:240px;
  background:#111;
  border-radius:40px;
  padding:12px;
  border:4px solid #333;
  position:relative;
  transform:rotate(-12deg);
  box-shadow:0 0 40px rgba(255,45,45,.45);
}

.notch{
  position:absolute;
  top:8px;
  left:50%;
  transform:translateX(-50%);
  width:95px;
  height:24px;
  background:#000;
  border-radius:0 0 18px 18px;
  z-index:5;
}

.iphone img{
  width:100%;
  border-radius:30px;
  display:block;
}

.home-bar{
  position:absolute;
  bottom:8px;
  left:50%;
  transform:translateX(-50%);
  width:90px;
  height:5px;
  border-radius:20px;
  background:#fff;
}

@keyframes float{
  0%{transform:translateY(0);}
  50%{transform:translateY(-18px);}
  100%{transform:translateY(0);}
}

.stats{
  display:flex;
  justify-content:center;
  gap:25px;
  flex-wrap:wrap;
}

.stats div{
  background:#111;
  padding:18px 24px;
  border-radius:16px;
  border:1px solid #ff2d2d55;
}

.stats span{
  display:block;
  font-size:1.5rem;
  color:#ff2d2d;
  font-weight:bold;
}
/* ========================= */
/* TOURNAMENT SECTION */
/* ========================= */

.section{
    max-width:1200px;
    margin:auto;
    padding:80px 20px;
}

.section h2{
    text-align:center;
    font-size:2.3rem;
    color:#ff2d2d;
    margin-bottom:50px;
    text-shadow:0 0 15px #ff2d2d;
}

/* TOURNAMENT CARDS */

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.card{
    background:#111;
    border:1px solid rgba(255,45,45,.25);
    border-radius:20px;
    overflow:hidden;
    transition:.35s;
}

.card:hover{
    transform:translateY(-10px);
    border-color:#800080;
    box-shadow:0 0 30px rgba(255,45,45,.35);
}

.card h3{
    padding:18px 18px 10px;
    color:#ff2d2d;
}

.card p{
    padding:0 18px;
    color:#ccc;
    margin:8px 0;
}

.card button{
    width:calc(100% - 36px);
    margin:18px;
    padding:13px;
    border:none;
    border-radius:12px;
    background:#ff2d2d;
    color:#fff;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

.card button:hover{
    background:#800080;
    box-shadow:0 0 20px #800080;
}

/* ========================= */
/* FEATURES */
/* ========================= */

.prize-section{
    background:#1111;
}

.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.feature{
    background:#111;
    border:1px solid rgba(255,45,45,.25);
    border-radius:18px;
    padding:30px 20px;
    text-align:center;
    transition:.3s;
}

.feature:hover{
    transform:translateY(-8px);
    border-color:#ff2d2d;
    box-shadow:0 0 25px rgba(255,45,45,.25);
}

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

footer{
    background:#000;
    padding:60px 20px;
    text-align:center;
}

footer h3{
    color:#ff2d2d;
    margin-bottom:10px;
    text-shadow:0 0 12px #ff2d2d;
}

footer p{
    color:#bbb;
    margin:8px 0;
}

.socials{
    display:flex;
    justify-content:center;
    gap:18px;
    font-size:30px;
    margin:25px 0;
}

.socials span{
    cursor:pointer;
    transition:.3s;
}

.socials span:hover{
    transform:scale(1.2);
}

.copyright{
    color:#666;
    font-size:.9rem;
}

/* ========================= */
/* MOBILE RESPONSIVE */
/* ========================= */

@media(max-width:768px){

    

    nav a{
        margin:0;
    }

    .top-banner{
        margin-top:120px;
    }

    .hero h1{
        font-size:2.2rem;
    }

    .hero p{
        font-size:1rem;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .btn-primary,
    .btn-secondary{
        width:240px;
    }

    .iphone{
        width:210px;
        transform:rotate(-5deg);
    }

    .stats{
        gap:15px;
    }

    .stats div{
        min-width:110px;
        padding:14px;
    }

    .section h2{
        font-size:1.8rem;
    }

    .cards{
        grid-template-columns:1fr;
    }

    .features{
        grid-template-columns:1fr;
    }
.logo-img{
    width:42px;
    height:42px;
    border-radius:50%;
    object-fit:cover;
    border:2px solid #ff2d2d;
    box-shadow:0 0 15px #ff2d2d;
    margin-right:8px;
    vertical-align:middle;
}
    .hero-logo{
    width:160px;
    height:160px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #ff2d2d;
    box-shadow:0 0 30px #ff2d2d;
    margin-top:120px;
    margin-bottom:20px;
}
/* ===== MENU BUTTON ===== */

.menu-btn{
    display:none;
    font-size:32px;
    color:#fff;
    cursor:pointer;
}

/* Mobile */

@media(max-width:768px){

    .menu-btn{
        display:block;
    }

    nav{
        display:none;
        position:absolute;
        top:75px;
        left:0;
        width:100%;
        background:#111;
        flex-direction:column;
        text-align:center;
        padding:15px 0;
        border-top:2px solid #ff2d2d;
    }

    nav.active{
        display:flex;
    }

    nav a{
        margin:12px 0;
        font-size:18px;
    }

    .navbar{
        flex-direction:row;
        justify-content:space-between;
        align-items:center;
    }
}