* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #1b1e2b;
    background-image: linear-gradient(to bottom right, #1b1e2b, #34354a);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    margin: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 40px;
    margin: 0 auto;
    flex-grow: 1;
    position: relative;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    padding: 0 40px;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo-container {
    max-width: 150px;
}

.logo-container img {
    width: 100%;
    height: auto;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 20px;
    background-color: #4b4a45;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.nav-link.active,
.nav-link:hover {
    background-color: #c59b5f;
}

.news-detail-section {
    background-color: #2f3240;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    color: #ffffff;
}

.news-cover {
    position: relative;
    height: 250px;
    width: 100%;
    border-radius: 16px;
    background-image: linear-gradient(135deg, #c59b5f 0%, #f2c265 25%, #c59b5f 50%, #f2c265 75%, #c59b5f 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.news-cover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.news-title {
    position: relative;
    font-size: 38px;
    color: #ffffff;
    z-index: 2;
    text-align: center;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.date {
    font-size: 16px;
    color: #a0a0a0;
    margin-bottom: 40px;
    margin-top: 10px;
}

.news-content {
    text-align: justify;
    font-size: 18px;
    line-height: 1.2;
    color: #dddddd;
}

.news-content p {
    margin-bottom: 20px;
    text-align: justify;
}

.footer {
    width: 100%;
    text-align: center;
    padding: 20px 0;
    color: #dddddd;
    background-color: #1b1e2b;
    margin-top: auto;
}

.footer p {
    margin: 0;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-title {
        font-size: 32px;
    }

    .news-content {
        font-size: 16px;
    }

    .news-cover {
        height: 180px;
    }
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: #f2c265;
}
ul, ol {
    margin-left: 20px;
    margin-bottom: 1px;
}

ul li, ol li {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 1px; 
    line-height: 0.2; 
    padding-left: 10px;
}

ul li::marker {
    color: #c59b5f;
    font-size: 1.1em;
}

ol li::marker {
    color: #c59b5f;
    font-weight: bold;
    font-size: 1.1em;
}

.prizes-section {
    margin-top: 1px;
}

.prizes-section h2 {
    font-size: 24px;
    color: #f2c265;
    margin-bottom: 1px;
}

.prize-list {
    display: flex;
    flex-direction: column;
    gap: 10px; 
}

.prize-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.prize-item:last-child {
    border-bottom: none;
}

.prize-item i {
    font-size: 32px;
    color: #c59b5f;
    margin-right: 15px;
}

.prize-item div {
    display: flex;
    flex-direction: column;
}

.prize-item span {
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
}

.prize-item p {
    font-size: 16px;
    color: #cccccc;
    margin: 0;
    font-weight: 400;
}

.video-embed {
    margin-top: 30px;
}

.video-embed iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 8px;
}

@media (max-width: 768px) {
    ul, ol {
        margin-left: 15px;
    }

    .prizes-section h2 {
        font-size: 20px;
    }

    .prize-item {
        flex-direction: column;
        text-align: center;
    }

    .prize-item i {
        margin-bottom: 10px;
    }

    .video-embed iframe {
        height: 240px;
    }
}
