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

html{
    scroll-behavior:smooth;
}

body{
    background:#000;
    color:white;
    font-family:Arial, Helvetica, sans-serif;
    overflow-x:hidden;
}

/* NAVIGATION */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 50px;

    background:rgba(0,0,0,.92);

    backdrop-filter:blur(10px);
}

.logo-brand{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo-brand img{
    width:55px;
}

.logo-brand span{
    color:white;
    font-size:2rem;
    font-weight:bold;
    font-family:'Permanent Marker', cursive;
}

nav{
    display:flex;
    gap:40px;
}

nav a{
    color:white;
    text-decoration:none;
    font-size:1.1rem;
    font-weight:bold;
}

nav a:hover{
    color:#ff6600;
}

/* HERO */

.hero {
    background-image: url('Smash Mouth.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;

    min-height: 100vh;
    background-color: #000;
}

.hero-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.55);
}

.hero-content{
    position:absolute;
    top:55%;
    left:50%;
    transform:translate(-50%, -50%);
    text-align:center;
    width:100%;
    max-width:1000px;
    z-index:5;
}

.hero-content h1{
    font-size:2.0rem;
    font-weight:800;
    color:#fff;
    line-height:1.1;
    margin-bottom:25px;
    text-shadow:0 4px 15px rgba(0,0,0,.8);
}

.hero-content p{
    font-size:2rem;
    color:#fff;
    margin-bottom:35px;
}

.hero-content .btn{
    display:inline-block;
    background:#ff6a13;
    color:#fff;
    padding:18px 45px;
    border-radius:10px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.hero-content .btn:hover{
    background:#ff7e2f;
    transform:translateY(-3px);
}
}

/* HOSTS */

.hosts-section{

    padding:80px 60px;

    background:#000;
}

.hosts-section h2{

    text-align:center;

    color:#ff6600;

    font-size:3rem;

    margin-bottom:50px;
}

.hosts-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    align-items:start;
}

.host-card{
    background:#111;
    border-radius:15px;
    overflow:hidden;
}

.host-card img{
    width:100%;
    height:auto;
    display:block;
}

.host-info{

    padding:25px;
}

.host-info h3{

    color:#ff6600;

    margin-bottom:10px;

    font-size:1.5rem;
}

.host-info p{

    font-size:1.1rem;
}

/* RANKINGS */

.rankings-section{

    padding:80px 60px;
}

.rankings-section h2{

    text-align:center;

    color:#ff6600;

    font-size:3rem;

    margin-bottom:50px;
}

.rankings-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;

    max-width:1400px;

    margin:auto;
}

.ranking-card{

    background:#111;

    color:white;

    text-decoration:none;

    border-radius:15px;

    height:140px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:bold;

    font-size:1.2rem;

    transition:.3s;
}

.ranking-card:hover{

    border:2px solid #ff6600;

    transform:translateY(-5px);
}

/* VIDEOS */

.videos-section{
    padding:80px 5%;
    background:#000;
}

.video-card iframe{
    width:100%;
    height:250px;
    border:none;
    border-radius:12px;
}
}

.video-card{
    border-radius:15px;
    overflow:hidden;
    background:#111;
    box-shadow:0 0 20px rgba(255,102,0,.15);
}

.video-card iframe{
    width:100%;
    height:280px;
    border:none;
}

@media(max-width:900px){
    .videos-grid{
        grid-template-columns:1fr;
    }

    .video-card iframe{
        height:220px;
    }
}
/* FOOTER */

footer{

    background:#111;

    text-align:center;

    padding:40px;
}

/* MOBILE */

@media(max-width:1000px){

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

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

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

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

    .navbar{
        flex-direction:column;
        gap:15px;
    }
}
