body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1e40af 0%, #7e22ce 50%, #312e81 100%);
    min-height: 100vh;
    color: #fff;
}

html {
    scroll-behavior: smooth;
}

.header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    text-align: center;
    color: aliceblue;
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.navbar {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    font-size: 1.125rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    transition: all 0.3s ease-in-out;
    color: #f0f0f0;
    text-decoration: none;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #c084fc;
    transform: scale(1.05);
}

.back-button {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, #7e5bef, #a855f7);
    color: white;
    text-decoration: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out;
}

.divider {
    border: none;
    height: 2px;
    background: #ffff;
    margin: 24px auto;
    width: 80%;
    opacity: 0.8;
}

.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    text-align: center;
    color: aliceblue;
    background: #474747;
    border-radius: 0.75rem;
}

.content h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-decoration: underline;
}

.news-list {
    list-style: none;
    padding: 0;
}

.news-list li strong {
    color: #fc8484;
    text-decoration: underline;
}