*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Source Sans 3', sans-serif;
    background: #efefef;
    color: #222;

}

.topbar{
    background: #b30000;
    color: white;
    text-align: center;
    padding: 10px;
    font-weight: bold;

}

.navbar{
    background: #111;
    color: white;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;

}

.logo{
    display: flex;
    align-items: center;
    flex-wrap: wrap;

}

.abn{
    max-width: 60px;
    margin-right: 30px;
    object-fit: contain;
    transform: scale(1.69);

}

.fullname{
    font-size: 20px;
    font-weight: 600;

}

nav a{
    color: white;
    text-decoration: none;
    margin-left: 30px;
    transition: .2s;

}

nav a:hover{
    color: #d00000;

}

.up-arrow{
    color: green;

}

.down-arrow{
    color: red;

}

.hero{
    max-width: 1400px;
    margin: 40px auto;
    background: white;
    display: grid;
    grid-template-columns: 2fr 1fr;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);

}

.hero img{
    width: 100%;
    height: 650px;
    object-fit: cover;
    object-position: center top;
}

.hero-text{
    padding: 50px;

}

.category{
    color: #d00000;
    font-weight: bold;
    letter-spacing: 2px;

}

.hero h1{
    font-family: Oswald;
    font-size: 52px;
    margin: 20px 0;
    line-height: 1.1;

}

.summary{
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 40px;

}

.read-button{
    display: inline-block;
    background: #d00000;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    font-weight: bold;

}


.article-hero{
    position: relative;
    max-width: 1200px;
    margin: 40px auto;
}

.article-hero img{
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center 10%;
    display: block;
}

.article-hero-text{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    color: white;
}

.article-hero h1{
    font-family: Oswald;
    font-size: 42px;
    margin-top: 10px;
    line-height: 1.1;
}

.meta{
    margin-top: 10px;
    font-size: 14px;
    opacity: 0.85;
}

/* MAIN LAYOUT */
.article-container{
    max-width: 1200px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
    padding: 0 20px;
}

/* ARTICLE BODY */
.article-body{
    background:white;
    padding:40px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.article-body p{
    margin-bottom:20px;
    line-height:1.7;
    font-size:18px;
}

.lead{
    font-size:22px;
    font-weight:600;
}

.article-body h2{
    font-family:Oswald;
    margin:30px 0 15px;
    font-size:28px;
}

/* QUOTES */
.quote{
    border-left:5px solid #d00000;
    padding:20px;
    margin:30px 0;
    font-style:italic;
    font-size:20px;
    background:#f7f7f7;
}

/* SIDEBAR */
.article-sidebar{
    background:white;
    padding:25px;
    height:fit-content;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.article-sidebar h3{
    font-family:Oswald;
    margin-bottom:15px;
}

.article-sidebar ul{
    padding-left:20px;
    margin-bottom:30px;
}

.article-sidebar li{
    margin-bottom:10px;
    font-size:15px;
}

/* STATS BOX */
.stat-box{
    text-align:center;
    padding:15px;
    border:2px solid #d00000;
    margin-bottom:15px;
}

.big-rating{
    font-size:42px;
    font-weight:bold;
    color:#d00000;
}

.content{
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
    padding: 0 20px;
    padding-bottom: 60px;

}

.main-column{

}

.news-card{

    background:white;

    padding:30px;

    margin:25px 0;

    border-left:8px solid #d00000;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

}

.news-card h3{

    font-family:Oswald;

    margin-bottom:10px;

}

aside{

    background:white;

    padding:30px;

    box-shadow:0 5px 15px rgba(0,0,0,.1);

    height:fit-content;

}

aside h2{

    font-family:Oswald;

    margin-bottom:15px;

}

aside ol{

    margin-left:20px;

    margin-bottom:40px;

}

aside li{

    margin-bottom:12px;

}

.player{

    display:flex;

    align-items:center;

}

.rating{

    width:70px;

    height:70px;

    border-radius:50%;

    background:#d00000;

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    font-weight:bold;

    margin-right:20px;

}

footer{

    background: #111;
    color: white;
    text-align: center;
    padding: 35px;

}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px){
    .navbar{
        padding: 20px 5%;
    }

    nav a{
        margin-left: 15px;
    }

    .content, .article-container{
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }

    .hero{
        grid-template-columns: 1fr;
        margin: 20px auto;
    }

    .hero img{
        height: 400px;
    }

    .hero-text{
        padding: 30px;
    }

    .hero h1{
        font-size: 36px;
    }

    .article-hero{
        display: flex;
        flex-direction: column;
    }

    .article-hero-text{
        position: static;
        background: white;
        padding: 25px;
        color: #222;
    }

    .article-hero h1{
        font-size: 28px;
    }

    .article-hero-text{
        padding: 25px;
    }
}

@media (max-width: 768px){
    .topbar{
        padding: 8px;
        font-size: 14px;
    }

    .navbar{
        padding: 15px 5%;
        flex-direction: column;
        gap: 15px;
    }

    .fullname{
        font-size: 16px;
    }

    nav{
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    nav a{
        margin-left: 0;
        font-size: 14px;
    }

    .hero{
        margin: 15px auto;
    }

    .hero img{
        height: 300px;
    }

    .hero-text{
        padding: 20px;
        display: flex;
        flex-direction: column;
    }

    .article-hero img{
        height: 300px;
    }

    .article-hero-text{
        position: static;
        background: white;
        padding: 15px;
        color: #222;
    }

    .article-hero h1{
        font-size: 22x auto;
    }

    .article-hero img{
        height: 300px;
    }

    .article-hero h1{
        font-size: 22px;
    }

    .article-hero-text{
        padding: 15px;
    }

    .article-body{
        padding: 20px;
    }

    .article-body p{
        font-size: 16px;
    }

    .article-body h2{
        font-size: 22px;
    }

    .article-sidebar{
        padding: 20px;
    }

    .content{
        padding: 0 10px;
        padding-bottom: 40px;
    }

    .news-card{
        padding: 20px;
        margin: 15px 0;
    }

    aside{
        padding: 20px;
    }

    .player{
        flex-direction: column;
        align-items: flex-start;
    }

    .rating{
        margin-right: 0;
        margin-bottom: 15px;
    }

    .rank-card{
        padding: 20px;
    }

    .rank-card h3{
        font-size: 20px;
    }

    .rank-card p{
        font-size: 14px;
    }
}

@media (max-width: 480px){
    .topbar{
        padding: 6px;
        font-size: 12px;
    }

    .abn{
        max-width: 40px;
        margin-right: 10px;
        transform: scale(1.3);
    }

    .fullname{
        font-size: 14px;
    }

    .navbar{
        padding: 10px 3%;
    }

    nav{
        gap: 10px;
    }

    nav a{
        font-size: 12px;
    }

    .hero{
        margin: 10px auto;
    }

    .hero img{
        height: 200px;
    }

    .hero-text{
        padding: 15px;
    }

    .hero h1{
        font-size: 22px;
        margin: 10px 0;
    }

    .summary{
        font-size: 14px;
        margin-bottom: 20px;
    }

    .read-button{
        padding: 12px 20px;
        font-size: 14px;
    }

    .article-hero{
        display: flex;
        flex-direction: column;
    }

    .article-hero img{
        height: 200px;
    }

    .article-hero-text{
        position: static;
        background: white;
        padding: 12px;
        color: #222;
    }

    .article-hero h1{
        font-size: 18px;
    }

    .article-body{
        padding: 15px;
    }

    .article-body p{
        font-size: 14px;
    }

    .article-body h2{
        font-size: 18px;
        margin: 20px 0 10px;
    }

    .quote{
        padding: 15px;
        font-size: 16px;
    }

    .content{
        padding: 0 8px;
    }

    .news-card{
        padding: 15px;
        margin: 10px 0;
    }

    .news-card h3{
        font-size: 16px;
    }

    .news-card p{
        font-size: 14px;
    }

    aside{
        padding: 15px;
    }

    aside h2{
        font-size: 18px;
    }

    aside ol{
        margin-left: 15px;
    }

    aside li{
        font-size: 14px;
    }

    .rating{
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .rank-card{
        padding: 15px;
    }

    .rank-card h3{
        font-size: 16px;
    }

    .rank-card p{
        font-size: 13px;
    }

    footer{
        padding: 20px;
        font-size: 14px;
    }

    .stat-box{
        padding: 12px;
    }

    .big-rating{
        font-size: 32px;
    }

    .article-sidebar h3{
        font-size: 16px;
    }

    .article-sidebar li{
        font-size: 13px;
    }}