body {
    background: #0C0C0C;
    color: #FFFFFF;
    font-family: "Geologica-Regular", sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
    background-color: #0C0C0C;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
}

.header {
    background-color: #0C0C0C;
    border-bottom: 2px solid #00FF99;
}

.logo {
    font-size: 36px;
    font-weight: 700;
    color: #00FF99;
    text-shadow: 0 0 15px #00FFA5;
    text-align: center;
}

.nav-menu__list li a {
    color: #00FF99;
    text-decoration: none;
}

.nav-menu__list li a:hover {
    color: #00FFA5;
    text-shadow: 0 0 8px #00FFA5;
}

h1, h2 {
    color: #00FF99;
    text-align: center;
}

p {
    padding: 8px 0;
}

a {
    color: #00FF99;
    text-decoration: underline;
}

a:hover {
    color: #00FFA5;
    text-shadow: 0 0 10px #00FFA5;
}

ul, ol {
    padding-left: 20px;
}

blockquote {
    background-color: rgba(0, 255, 153, 0.1);
    border-left: 4px solid #00FF99;
    padding: 10px 15px;
    margin: 10px 0;
    color: #00FFA5;
}

.image-overlay-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px auto;
    max-width: 700px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 255, 153, 0.5);
}

.image-overlay-container img {
    width: 100%;
    border-radius: 12px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.image-overlay-container:hover img {
    transform: scale(1.05);
    filter: brightness(0.4);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.link-btn {
    background-color: rgba(255, 255, 255, 0.9);
    color: #000;
    font-weight: bold;
    padding: 14px 36px;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 255, 153, 0.8);
    border: 2px solid #00FF99;
}

.image-overlay-container:hover .link-btn {
    background-color: #00FF99;
    color: #fff;
    transform: scale(1.2);
}