body {
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
    color: #fff;
    font-family: "Geologica-Regular", sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
    background-color: #21213b;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
}

h1 {
    text-align: center;
    font-family: "Geologica-Bold";
    font-size: 36px;
    background: linear-gradient(90deg, #00dbde, #fc00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

ul li {
    margin-bottom: 8px;
    font-size: 18px;
}

.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, 0, 0, 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, 219, 222, 0.8);
}

.image-overlay-container:hover .link-btn {
    background-color: #00dbde;
    color: #fff;
    transform: scale(1.2);
}
