/* =========================================
   GLOBAL
========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

:root{

    --black:#050505;
    --red:#D61C24;
    --white:#ffffff;
    --gray:#bdbdbd;
    --card:#111111;
    --border:rgba(255,255,255,.08);

}

body{

    font-family:'Inter',sans-serif;
    background:var(--black);
    color:var(--white);
    overflow-x:hidden;

}

img{

    width:100%;
    display:block;

}

a{

    color:white;
    text-decoration:none;

}

ul{

    list-style:none;

}

.container{

    width:90%;
    max-width:1400px;
    margin:auto;

}

section{

    padding:120px 0;

}

/* =========================================
   BUTTONS
========================================= */

.primary-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:16px 38px;

    background:var(--red);

    color:white;

    border-radius:999px;

    font-weight:700;

    transition:.35s;

}

.primary-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 12px 30px rgba(214,28,36,.45);

}

.secondary-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 38px;

    border:2px solid white;

    border-radius:999px;

    transition:.35s;

}

.secondary-btn:hover{

    background:white;

    color:black;

}

/* =========================================
   NAVBAR
========================================= */

.navbar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:90px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 80px;

    background:rgba(5,5,5,.75);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.08);

    z-index:9999;

}

.logo img{

    width:70px;

    transition:.35s;

}

.logo img:hover{

    transform:scale(1.06);

}

.nav-links{

    display:flex;

    gap:45px;

}

.nav-links a{

    font-size:15px;

    font-weight:600;

    position:relative;

    transition:.3s;

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--red);

    transition:.3s;

}

.nav-links a:hover{

    color:var(--red);

}

.nav-links a:hover::after{

    width:100%;

}

.nav-right{

    display:flex;

    align-items:center;

    gap:18px;

}

#language-switch{

    background:transparent;

    color:white;

    border:1px solid var(--red);

    padding:11px 18px;

    border-radius:999px;

    cursor:pointer;

    transition:.3s;

}

#language-switch:hover{

    background:var(--red);

}

.nav-button{

    background:var(--red);

    padding:12px 26px;

    border-radius:999px;

    font-weight:700;

    transition:.3s;

}

.nav-button:hover{

    transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(214,28,36,.45);

}

.hamburger{

    display:none;

    flex-direction:column;

    gap:6px;

}

.hamburger span{

    width:28px;

    height:3px;

    background:white;

}

/* =========================================
   HERO
========================================= */

.hero{

    position:relative;

    height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    overflow:hidden;

}

.hero video{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(to top,
    rgba(5,5,5,.95),
    rgba(5,5,5,.45));

}

.hero-content{

    position:relative;

    z-index:5;

    max-width:900px;

}

.hero h5{

    color:var(--red);

    letter-spacing:4px;

    margin-bottom:20px;

    font-size:18px;

}

.hero h1{

    font-size:96px;

    font-weight:900;

    line-height:.95;

    margin-bottom:30px;

}

.hero h1 span{

    color:var(--red);

}

.hero p{

    color:var(--gray);

    font-size:24px;

    margin-bottom:45px;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

}

/* =========================================
   EVENT
========================================= */

.event-section{

    background:#080808;

}

.event-section .container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.event-left h4{

    color:var(--red);

    margin-bottom:15px;

    letter-spacing:2px;

}

.event-left h2{

    font-size:64px;

    margin-bottom:20px;

}

.event-left p{

    color:var(--gray);

    margin-bottom:10px;

}

#countdown{

    display:flex;

    gap:18px;

    margin:45px 0;

}

#countdown div{

    width:110px;

    height:110px;

    background:#111;

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

}

#countdown h3{

    font-size:34px;

}

.event-left button{

    padding:16px 35px;

    border:none;

    border-radius:999px;

    background:var(--red);

    color:white;

}

.event-right img{

    border-radius:25px;

    box-shadow:0 25px 60px rgba(0,0,0,.55);

}

/* =========================================
   ABOUT
========================================= */

.about-preview{

    background:#050505;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title h5{

    color:var(--red);

    margin-bottom:15px;

    letter-spacing:3px;

}

.section-title h2{

    font-size:50px;

    margin-bottom:20px;

}

.section-title p{

    color:var(--gray);

    max-width:700px;

    margin:auto;

}

.about-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-bottom:60px;

}

.about-card{

    background:#111;

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:40px;

    transition:.35s;

}

.about-card:hover{

    transform:translateY(-10px);

    border-color:var(--red);

}

.about-card h3{

    margin-bottom:18px;

    color:var(--red);

}

.about-card p{

    color:var(--gray);

    line-height:1.8;

}
/* =========================================
   FIGHTER PREVIEW
========================================= */

.fighters-preview{
    background:#080808;
}

.fighter-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    margin-top:60px;
}

.fighter-card{
    background:#111;
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    overflow:hidden;
    transition:.35s;
}

.fighter-card:hover{
    transform:translateY(-10px);
    border-color:#D61C24;
    box-shadow:0 25px 60px rgba(0,0,0,.45);
}

.fighter-card img{
    height:520px;
    object-fit:cover;
}


.fighter-card h3{
    font-size:24px;
    padding:25px 25px 10px;
}

.fighter-card p{
    color:#bdbdbd;
    padding:0 25px 25px;
}

/* =========================================
   WEIGHT CLASSES
========================================= */

.weight-section{
    background:#050505;
}

/* =========================================
   SPONSORS
========================================= */

.sponsor-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:60px;
}

.sponsor-card{
    background:#111;
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    height:180px;

    display:flex;
    justify-content:center;
    align-items:center;

    transition:.3s;
}

.sponsor-card:hover{
    border-color:#D61C24;
    transform:translateY(-8px);
}

/* =========================================
   SOCIAL MEDIA
========================================= */

.social-section{
    background:#080808;
}

.social-links{
    display:flex;
    justify-content:center;
    gap:30px;
    margin-top:50px;
}

.social-links a{

    width:70px;
    height:70px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    background:#111;

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.social-links a:hover{

    background:#D61C24;

    transform:translateY(-8px);

}

/* =========================================
   FOOTER
========================================= */

.footer{

    background:#050505;

    border-top:1px solid rgba(255,255,255,.08);

    margin-top:120px;

}

.footer-container{

    width:90%;
    max-width:1400px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:35px 0;

    gap:40px;

}

.footer-left p{

    color:#888;

    font-size:15px;

}

.footer-social,
.footer-links{

    display:flex;

    gap:30px;

}

.footer-social a,
.footer-links a{

    color:#d6d6d6;

    font-size:15px;

    font-weight:500;

    position:relative;

    transition:.3s;

}

.footer-social a::after,
.footer-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:#D61C24;

    transition:.3s;

}

.footer-social a:hover,
.footer-links a:hover{

    color:#fff;

}

.footer-social a:hover::after,
.footer-links a:hover::after{

    width:100%;

}

/* =========================================
   SCROLLBAR
========================================= */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#050505;

}

::-webkit-scrollbar-thumb{

    background:#D61C24;
    border-radius:50px;

}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1100px){

.nav-links,
.nav-right{

    display:none;

}

.hamburger{

    display:flex;

}

.hero h1{

    font-size:70px;

}

.event-section .container,
.about-grid,
.fighter-grid{

    grid-template-columns:1fr;

}

.footer-container{

    flex-direction:column;
    text-align:center;

}

.footer-social,
.footer-links{

    justify-content:center;
    flex-wrap:wrap;

}

}

@media(max-width:768px){

.navbar{

    padding:0 25px;

}

.hero{

    padding:0 20px;

}

.hero h1{

    font-size:48px;

}

.hero p{

    font-size:18px;

}

.hero-buttons{

    flex-direction:column;

}

#countdown{

    flex-wrap:wrap;

}

#countdown div{

    width:85px;
    height:85px;

}

.section-title h2{

    font-size:34px;

}

.fighter-card img{

    height:320px;

}
body{
    margin:0;
    font-family:Arial, sans-serif;
    background:#050505;
}

.contact-section{
    padding:100px 8%;
}

.contact-grid{
    display:flex;
    justify-content:center;
}

.contact-card{
    width:320px;
    background:#111;
    border:1px solid #2b2b2b;
    border-radius:20px;
    padding:35px;
    text-align:center;
    transition:.3s;
}

.contact-card:hover{
    transform:translateY(-8px);
    border-color:#E10600;
    box-shadow:0 0 30px rgba(225,6,0,.4);
}

.icon{
    width:70px;
    height:70px;
    background:#E10600;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:32px;
    margin:0 auto 20px;
}

.contact-card h3{
    color:white;
    margin-bottom:15px;
}

.contact-card a{
    color:white;
    text-decoration:none;
    font-size:20px;
}

.contact-card a:hover{
    color:#E10600;
}

.contact-card span{
    display:block;
    color:#999;
    margin-top:20px;
}

.contact-card small{
    display:block;
    color:white;
    margin-top:5px;
}
}