body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: url('./img/ngua-bg.jpg') no-repeat center center fixed;
    background-size: cover;
    position: relative;
    color: #222;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: -1;
}

header {
    background: linear-gradient(to right, #8b0000, #ff0000, #8b0000);
    color: gold;
    text-align: center;
    padding: 40px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 35px;
    text-shadow: 0 0 15px red, 0 0 25px gold;
}

header h1 {
    margin: 0;
}

nav {
    background: rgba(0, 100, 0, 0.9);
    padding: 15px;
    text-align: center;
    backdrop-filter: blur(5px);
}

nav a {
    color: white;
    text-decoration: none;
    margin: 20px;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 8px;
    transition: 0.4s;
}

nav a:hover {
    background: gold;
    color: black;
    box-shadow: 0 0 15px gold;
}

.container {
    padding: 30px;
    max-width: 1000px;
    margin: 40px auto;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.6);
}

section {
    margin-bottom: 40px;
}

h2 {
    color: #b30000;
    text-align: center;
    text-shadow: 0 0 10px red;
}

ul li {
    margin: 8px 0;
}

img {
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

img:hover {
    transform: scale(1.05);
}

.image-box {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

figure {
    text-align: center;
}

figcaption {
    margin-top: 8px;
    font-style: italic;
    color: #555;
}

video {
    display: block;
    margin: 20px auto;
    border: 5px solid gold;
    border-radius: 20px;
    box-shadow: 0 0 30px red;
}

footer {
    background-color: #8b0000;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}