body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    line-height: 1.7;
    color: #e5e5e5;
    background-color: #0a0a0a;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(200, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1592805735486-42a2e7a69357') center/cover no-repeat fixed;
    color: white;
    padding: 3rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.7);
}

main {
    padding: 2.5rem 0;
}

article {
    display: grid;
    gap: 2rem;
}

.hero {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, #1c2526, #2d0000);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(200, 0, 0, 0.3);
}

.hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 3.2rem;
    color: #c80000;
    margin-bottom: 0.5rem;
}

.meta {
    font-style: italic;
    color: #ff6666;
    font-size: 1rem;
}

.card {
    background: #1c2526;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(200, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(200, 0, 0, 0.4);
}

article h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    color: #c80000;
    margin-bottom: 1rem;
}

article p {
    font-size: 1.1rem;
    color: #e5e5e5;
}

article a {
    color: #ff6666;
    text-decoration: none;
    font-weight: 600;
}

article a:hover {
    text-decoration: underline;
    color: #ff9999;
}

footer {
    background: #1c2526;
    color: #e5e5e5;
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 2.5rem;
}

footer a {
    color: #ff6666;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    article h2 {
        font-size: 1.8rem;
    }

    .card {
        padding: 1.5rem;
    }

    header {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    article h2 {
        font-size: 1.6rem;
    }

    article p {
        font-size: 1rem;
    }

    .card {
        padding: 1.2rem;
    }

    .container {
        padding: 0 15px;
    }

    header {
        padding: 1.5rem 0;
    }
}