.btn-main {
    margin-bottom: 20px; /* Специфичный отступ для главной страницы */
}

.hero-content .main-buttons-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.server-info button {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    padding: 10px 20px;
    font-family: 'Play', sans-serif;
    font-size: 1.2em;
    color: var(--text-color-light);
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px var(--primary-color), 0 0 10px var(--primary-color);
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.server-info button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(229, 9, 20, 0.4), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.server-info button:hover {
    border-color: #ff202c;
    box-shadow: 0 0 25px rgba(255, 32, 44, 0.8), 0 0 35px rgba(255, 32, 44, 0.6);
}

.server-info button:hover::before {
    left: 100%;
}

.server-info button:active {
    transform: scale(0.98);
}

/* Styles for the notification container */
.notification-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 100;
    display: flex;
    flex-direction: column-reverse;
    gap: 15px;
}

.notification {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    display: none;
    transition: all 0.3s ease-in-out;
    max-width: 300px;
    position: relative;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.notification-icon {
    font-size: 2em;
    color: var(--primary-color);
    align-self: flex-start;
}

.notification-text {
    flex-grow: 1;
}

.notification h3 {
    margin: 0 0 5px 0;
    font-size: 1.2em;
    color: var(--text-color-light);
}

.notification a {
    color: #79a6ff;
    text-decoration: none;
    word-wrap: break-word;
    font-size: 0.9em;
}

.notification a:hover {
    text-decoration: underline;
}

.close-btn {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--text-color-dark);
    cursor: pointer;
    transition: color 0.3s;
    position: absolute;
    top: 5px;
    right: 10px;
}

.close-btn:hover {
    color: var(--primary-color);
}
