/* =====================================
   SportNexo Base Styles
===================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    font-size:16px;
    line-height:1.7;
    background:#0F172A;
    color:#ffffff;
    overflow-x:hidden;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
    transition:.3s;
}

ul{
    list-style:none;
}

.container{
    width:1200px;
    max-width:92%;
    margin:0 auto;
}

/* Typography */

h1{
    font-size:64px;
    line-height:1.1;
    font-weight:800;
    margin-bottom:20px;
}

h2{
    font-size:42px;
    line-height:1.2;
    font-weight:700;
    margin-bottom:20px;
}

h3{
    font-size:26px;
    font-weight:700;
}

p{
    color:#CBD5E1;
    margin-bottom:20px;
}

/* Button */

.btn{
    display:inline-block;
    background:#D4AF37;
    color:#111827;
    padding:15px 35px;
    border-radius:8px;
    font-weight:700;
    transition:.3s;
}

.btn:hover{
    background:#e5bf45;
    transform:translateY(-2px);
}

/* Section */

section{
    padding:90px 0;
}

/* Utility */

.text-center{
    text-align:center;
}

.mb-20{
    margin-bottom:20px;
}

.mb-40{
    margin-bottom:40px;
}

.mb-60{
    margin-bottom:60px;
}

/* Hero */

.hero{
    min-height:90vh;
    display:flex;
    align-items:center;
}

.hero-tag{
    color:#D4AF37;
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    display:inline-block;
    margin-bottom:20px;
}

.hero p{
    max-width:700px;
    font-size:20px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-top:35px;
}

.btn-outline{
    background:transparent;
    border:2px solid #D4AF37;
    color:#fff;
}