/* Основные стили страницы */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden; /* Отключаем прокрутку */
    font-family: 'Open Sans', sans-serif;
    color: white;
}

/* Фоновое изображение (само изображение макета) */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('background.png'); /* Имя твоего файла с макетом */
    background-size: cover;
    background-position: center;
    filter: blur(2px); /* Небольшое размытие фона */
    z-index: -1;
}

/* Контейнер для центрирования */
.main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Центральная панель (эффект стекла) */
.glass-panel {
    position: relative;
    width: 650px;
    padding: 60px 40px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05); /* Полупрозрачный фон */
    backdrop-filter: blur(10px); /* Размытие заднего плана */
    -webkit-backdrop-filter: blur(10px); /* Для Safari */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Тонкая рамка */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); /* Тень */
    text-align: center;
    overflow: visible; /* Чтобы трубки "выходили" за пределы */
}

/* Имитация неоновых трубок/проводов (псевдоэлементы) */
.glass-panel::before,
.glass-panel::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border: 3px solid;
    border-radius: 50%; /* Заоблачные трубки */
    filter: blur(5px); /* Размытие для свечения */
    opacity: 0.8;
    z-index: -1;
}

/* Левая трубка (зеленая) */
.glass-panel::before {
    top: -10px;
    left: -120px;
    border-color: #2ecc71;
    box-shadow: 0 0 20px #2ecc71, inset 0 0 10px #2ecc71;
    border-top: none;
    border-left: none;
    transform: rotate(30deg);
}

/* Правая трубка (синяя) */
.glass-panel::after {
    bottom: -10px;
    right: -120px;
    border-color: #3498db;
    box-shadow: 0 0 20px #3498db, inset 0 0 10px #3498db;
    border-bottom: none;
    border-right: none;
    transform: rotate(-30deg);
}

/* Заголовок (пиксельный шрифт) */
.title {
    font-family: 'Press Start 2P', cursive;
    font-size: 40px;
    margin-bottom: 5px;
    letter-spacing: 2px;
    color: white;
}

/* Подзаголовок */
.subtitle {
    font-size: 16px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    font-weight: 700;
}

/* Кнопка скачивания */
.download-btn {
    display: inline-flex;
    align-items: center;
    padding: 18px 45px;
    background: linear-gradient(135deg, #1e7a3e 0%, #349f57 100%); /* Текстура Minecraft */
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.download-btn:hover {
    background: linear-gradient(135deg, #349f57 0%, #1e7a3e 100%);
    box-shadow: 0 0 20px #2ecc71, 0 8px 25px rgba(0, 0, 0, 0.4);
    transform: translateY(-3px);
}

/* Логотип Minecraft внутри кнопки */
.btn-logo {
    width: 28px;
    height: 28px;
    margin-left: 15px;
    filter: brightness(0) invert(1); /* Делаем логотип белым */
}

/* Социальные ссылки */
.social-links {
    display: flex;
    justify-content: flex-end; /* Выравнивание по правому краю */
    gap: 20px;
    margin-top: 30px;
}

/* Элемент социальной ссылки */
.social-item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.social-item:hover {
    color: white;
}

/* Иконка */
.social-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    filter: opacity(0.6);
    transition: filter 0.3s ease;
}

.social-item:hover .social-icon {
    filter: opacity(1);
}

/* Текст социальной ссылки */
.social-text {
    /* Можно добавить стили, если нужно */
}