body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}

a {
    text-decoration: none;
    color: black;
}

header {
    background: white;
}

.logo h2 {
    font-weight: 800;
}

.score-card {
    border: 1px solid #ddd;
    padding: 10px;
    background: white;
    text-align: center;
    border-radius: 5px;
}

.hero-image {
    height: 450px;
    object-fit: cover;
}

.hero-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
}

.news-card {
    background: white;
    transition: 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category-box {
    background: white;
    padding: 15px;
    height: 100%;
}

.category-box img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.footer {
    background: #111;
}

.subscribe-box input {
    border-radius: 0;
}

.subscribe-box button {
    border-radius: 0;
}