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

html{
    scroll-behavior:smooth;
}

body{
    background:#050505;
    color:#ffffff;
    overflow-x:hidden;
    font-family:'Rajdhani', sans-serif;
    position:relative;
}

.bg-video {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover; /* fills screen */

    z-index: -1; /* sends it to background */
}

/* ===== GRID ===== */

body::before{
    content:"";
    position:fixed;
    inset:0;
    background:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size:45px 45px;
    z-index:-4;
}

/* ===== MAROON GLOW ===== */

.glow{
    position:fixed;
    width:700px;
    height:700px;
    background:
    radial-gradient(circle,
    rgba(128,0,32,0.2),
    transparent 70%);
    top:-250px;
    left:50%;
    transform:translateX(-50%);
    z-index:-3;
    animation:pulse 6s infinite ease-in-out;
}
.main {
    margin-top: 80px;
}

/* ===== CARD ===== */

.card {
    background: rgba(10, 10, 10, 0.35); /* 👈 less opacity = glass */

    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 28px;

    padding: 36px 24px;
    margin-bottom: 30px;

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow:
        0 0 25px rgba(128,0,32,0.15),
        inset 0 0 20px rgba(255,255,255,0.05);

    transition: 0.4s;
}

.card:hover{
    transform:translateY(-4px);
    box-shadow:
    0 0 35px rgba(128,0,32,0.3),
    inset 0 0 20px rgba(255,255,255,0.03);
}

/* ===== LOGO ===== */

.logo-box img{
  
    width: 90px;
    height: 90px;
    object-fit: cover;

    display: block;
    margin: 20px auto;

    border-radius: 50%;

    box-shadow: 0 0 15px maroon;

    /* ✨ floating animation */
    animation: floatLogo 3s infinite ease-in-out;
}

/* 😈 UP-DOWN MOTION */
@keyframes floatLogo {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px); /* moves up */
    }
    100% {
        transform: translateY(0); /* comes back down */
    }
}


/* ===== TITLES ===== */

.main-title{
    text-align:center;
    font-family:'Cinzel', serif;
    font-size:38px;
    letter-spacing:6px;
    margin-bottom:14px;
    text-shadow:
    0 0 10px rgba(128,0,32,0.7),
    0 0 30px rgba(128,0,32,0.4);
}

.tagline{
    text-align:center;
    color:#ffffff;
    font-size:12px;
    letter-spacing:4px;
    line-height:2;
    margin-bottom:26px;
    font-family:'Orbitron', sans-serif;
    opacity:0.8;
}

/* ===== LINE ===== */

.line{
    width:100%;
    height:1px;
    background:
    linear-gradient(
    to right,
    transparent,
    rgba(128,0,32,0.7),
    transparent
    );
    margin:24px 0;
}

/* ===== TEXT ===== */

.description{
    text-align:center;
    color:#cfcfcf;
    line-height:2;
    font-size:14px;
}

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

.section-title{
    text-align:center;
    font-family:'Cinzel', serif;
    font-size:25px;
    letter-spacing:5px;
    margin-bottom:25px;
    color:#ffffff;
    text-shadow:0 0 12px rgba(128,0,32,0.4);
}

/* ===== ITEMS ===== */

.item{
    padding:18px 0;
    border-bottom:1px solid rgba(255,255,255,0.05);
    color:#f1f1f1;
    font-size:14px;
    letter-spacing:1px;
    transition:0.3s;
}

.item:hover{
    padding-left:10px;
    color:#800020;
}

.item span{
    color:#800020;
    margin-right:12px;
}

/* ===== OPERATIONS ===== */

.operation h3{
    color:#ffffff;
    margin-bottom:12px;
    font-size:16px;
    letter-spacing:1px;
    text-shadow:0 0 10px rgba(128,0,32,0.3);
}

.operation p{
    color:#aaaaaa;
    line-height:2;
    font-size:14px;
    padding-left:14px;
}

/* ===== BUTTON ===== */

.join-btn{ 
  text-align: center;
    display:inline-block;
    margin-top:25px;
    padding:15px 32px;
    border:1px solid #800020;
    border-radius:14px;
    color:#800020;
    text-decoration:none;
    letter-spacing:3px;
    font-family:'Orbitron', sans-serif;
    transition:0.3s;
    box-shadow:0 0 12px rgba(128,0,32,0.2);
}

.join-btn:hover{ 
  text-align: center;
    background:#800020;
    color:#ffffff;
    box-shadow:0 0 25px rgba(128,0,32,0.6);
}

/* ===== LEADERS ===== */

.leader{
    text-align:center;
    padding:16px 0;
    font-size:15px;
    letter-spacing:4px;
    color:#efefef;
    transition:0.3s;
}

.leader:hover{
    color:#800020;
    transform:scale(1.05);
}
.rank {
  text-align: center;   /* 🔥 THIS CENTERS IT */

  margin: 12px 0;
  font-size: 16px;
  letter-spacing: 3px;

  color: #ddd;

  transition: 0.3s;
}

/* optional glow on hover */
.rank:hover {
  color: #800020;
  text-shadow: 0 0 10px rgba(255,0,0,0.6);
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 9999;

    padding: 18px 20px;

    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    font-family: monospace;
    color: #ccc;
}
/* ===== FOOTER ===== */

.footer{
    text-align:center;
    color:#777;
    font-size:11px;
    letter-spacing:4px;
    padding:10px 0 30px;
}

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

@media(max-width:480px){
    .main-title{ font-size:28px; }
    .section-title{ font-size:21px; }
}