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: #24243e;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
}

.header .nav-menu__list a {
    color: #ff4b2b; /* Яркий оранжевый оттенок для ссылок */
    text-decoration: none; /* Убираем подчеркивания */
}

.header .nav-menu__list a:hover {
    color: #ff416c; /* Розовый оттенок при наведении */
}

.logo {
    font-family: "Geologica-ExtraBold", sans-serif;
    font-weight: 800;
    font-size: 40px;
    letter-spacing: 2px;
    color: #ff4b2b; /* Яркий оранжевый оттенок для логотипа */
    text-shadow: 2px 2px 5px #ff416c;
}

h1, h2 {
    text-align: center;
    color: #ff4b2b;
}

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: #ff4b2b;
    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(255, 75, 43, 0.8);
}

.image-overlay-container:hover .link-btn {
    background-color: #ff4b2b;
    color: #fff;
    transform: scale(1.2);
}
.container a {
    color: #FF4D4D; /* Красный оттенок для ссылок */
    text-decoration: none; /* Убираем подчеркивание по умолчанию */
    font-weight: 500;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.container a:hover {
    color: #FF0000; /* Яркий красный при наведении */
    text-shadow: 0 0 8px rgba(255, 77, 77, 0.8); /* Подсветка при наведении */
    text-decoration: underline; /* Подчеркивание при наведении */
}
