#main-banner {
    background: url('../images/l2astral-banner.png') no-repeat center center;
    background-size: cover;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

@keyframes bannerGlow {
    0% {
        color: #f0f8ff; /* Почти белый (очень светлый голубой) */
        text-shadow: 0 0 10px #87cefa, 0 0 20px #87cefa, 0 0 30px #87cefa, 0 0 40px #87cefa;
    }
    50% {
        color: #ffffff; /* Белый цвет */
        text-shadow: 0 0 15px #b0e0e6, 0 0 25px #b0e0e6, 0 0 35px #b0e0e6, 0 0 45px #b0e0e6;
    }
    100% {
        color: #f0f8ff; /* Возврат к светлому оттенку */
        text-shadow: 0 0 10px #87cefa, 0 0 20px #87cefa, 0 0 30px #87cefa, 0 0 40px #87cefa;
    }
}

#main-banner h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #f0f8ff; /* Очень светлый цвет текста по умолчанию */
    text-shadow: 0px 0px 10px rgba(135, 206, 250, 0.8); /* Светлое свечение */
    user-select: none; /* Отключаем возможность выделения текста */
    cursor: default; /* Обычный курсор */
    animation: bannerGlow 2s infinite alternate; /* Анимация смены цвета */
}

#content {
	padding: 40px;
}

#game-features-kain {
    /* border: 2px solid #00bfff; */
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 10px;
    background-color: #111;
}

#game-features-gran-kain {
    /* border: 5px solid #00bfff; */
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 10px;
    background-color: #111;
}

.game-features-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
}

.server-title {
    font-size: 28px;
    margin-bottom: 30px;
    color: #00bfff;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.8);
    animation: bannerGlow 2s infinite alternate;
}

.feature-block {
    text-align: center;
    padding: 10px;
    border: 1px solid #444;
    background-color: #222;
    transition: transform 0.2s ease-in-out;
}

.feature-block img {
    width: 100%;
    height: auto;
    max-width: 150px;
}

.feature-block p {
    margin-top: 10px;
    color: white;
    font-size: 16px;
}

#game-features-kain .feature-block:hover {
    cursor: pointer;
}

#game-features-gran-kain .feature-block:hover {
    cursor: pointer;
}
