/* Общие настройки */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cormorant SC', serif;  /* твой красивый шрифт */
    background: #000000;  /* чёрный фон */
    color: #ffffff;  /* белый текст */
    line-height: 1.6;
    padding: 20px;
    position: relative;
    min-height: 100vh;
    font-weight: 400;
}

/* Контейнер для фоновых шестиугольников */
.hexagon-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.hexagon {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);  /* белые с прозрачностью */
    border: 1px solid rgba(255, 255, 255, 0.3);  /* белая обводка для яркости */
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    width: 80px;
    height: 70px;
    opacity: 0.25;  /* заметнее, чем было */
    filter: blur(0.5px);
    animation: float 18s infinite ease-in-out;
    will-change: transform;
    box-shadow: 0 0 10px rgba(255,255,255,0.1);
}

/* Разные размеры и анимации задаются в JS */
@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(15px, -10px) rotate(3deg); }
    50% { transform: translate(5px, 15px) rotate(5deg); }
    75% { transform: translate(-10px, 5px) rotate(3deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

.container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Шапка */
header {
    text-align: center;
    margin-bottom: 40px;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    text-shadow: 0 0 15px rgba(255,255,255,0.3);
    letter-spacing: 2px;
}

.intro {
    font-size: 1.4rem;
    color: #e0e0e0;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

/* Карточки */
.card {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px -8px rgba(255,255,255,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 30px -12px rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.3);
}

.card h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
}

.card h2 i {
    color: #ffffff;
    opacity: 0.9;
}

/* Теги (игры, музыка) */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.tag {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s;
    backdrop-filter: blur(2px);
}

.tag:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.note {
    font-style: italic;
    color: #cccccc;
    margin-top: 10px;
}

/* Предупреждение о железе */
.warning {
    background: rgba(40, 40, 40, 0.9);
    border-left: 4px solid #ffffff;
    padding: 16px;
    border-radius: 16px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin: 20px 0 10px;
}

.warning i {
    color: #ffffff;
    font-size: 1.5rem;
}

.warning p {
    margin: 0;
}

/* Контакты */
.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.2rem;
}

.contact-list li:last-child {
    border-bottom: none;
}

.contact-list i {
    width: 24px;
    color: #ffffff;
    font-size: 1.4rem;
}

.copy-text {
    cursor: pointer;
    color: #ffffff;
    font-weight: 500;
    text-decoration: underline dotted rgba(255,255,255,0.4);
}

.copy-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: auto;
    padding: 4px 10px;
    border-radius: 8px;
    transition: all 0.2s;
    color: #ffffff;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.steam-note {
    margin-top: 10px;
    color: #b0b0b0;
    font-size: 1rem;
}

/* Футер */
footer {
    text-align: center;
    padding: 30px 0 10px;
    color: #a0a0a0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 20px;
    font-size: 1rem;
}

/* Адаптивность */
@media (max-width: 600px) {
    body {
        padding: 15px;
    }

    h1 {
        font-size: 2.4rem;
    }

    .card {
        padding: 20px;
    }

    .card h2 {
        font-size: 1.8rem;
    }

    .tags {
        gap: 8px;
    }

    .tag {
        padding: 6px 14px;
        font-size: 0.9rem;
    }

    .warning {
        flex-direction: column;
        gap: 10px;
    }

    .contact-list li {
        font-size: 1.1rem;
        flex-wrap: wrap;
    }

    .copy-btn {
        margin-left: 0;
    }
}