/* Основные стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* Обновленный фон: строгий монохром (черный и темно-серый) */
    background: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #000000 100%);
    overflow-x: hidden;
    font-family: 'Exo 2', 'SF Pro Text', 'SF Pro Icons', 'AOS Icons', 'Helvetica Neue', Helvetica, Arial, sans-serif, system-ui;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    color: #e2e8f0; /* Slate 200 */
}

/* Контейнер для частиц */
#particle-container {
    position: fixed; /* Фиксируем, чтобы частицы всегда были фоном и не уезжали */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh; /* Фикс для мобильных браузеров (динамическая высота) */
    z-index: -2;
    background: transparent;
    will-change: transform;
    transition: opacity 0.5s ease;
}

/* Добавляем затемнение для лучшей читаемости текста */
#particle-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.6) 80%);
    pointer-events: none;
}

/* Стеклянная сетка */
.grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh; /* Фикс для мобильных */
    z-index: -1;
    pointer-events: none;
}

.grid::before {
    --size: 45px;
    /* Монохромные линии, едва заметные */
    --line: rgba(255, 255, 255, 0.05); 
    content: '';
    height: 100vh;
    height: 100dvh; /* Фикс для мобильных */
    width: 100vw;
    position: fixed;
    background: linear-gradient(
          90deg,
          var(--line) 1px,
          transparent 1px var(--size)
        )
        calc(var(--size) * 0.36) 50% / var(--size) var(--size),
      linear-gradient(var(--line) 1px, transparent 1px var(--size)) 0%
        calc(var(--size) * 0.32) / var(--size) var(--size);
    -webkit-mask: linear-gradient(-20deg, transparent 50%, white);
            mask: linear-gradient(-20deg, transparent 50%, white);
    top: 0;
    left: 0;
    z-index: -1;
}

/* Стеклянный эффект для сетки */
.grid.glass {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh; /* Фикс для мобильных */
    backdrop-filter: blur(0.5px);
    -webkit-backdrop-filter: blur(0.5px);
    background-color: rgba(255, 255, 255, 0.02);
    z-index: 10;
    pointer-events: none;
}

canvas {
    display: block;
    width: 100%;
    height: 100%;
}

/* CSS для текстового эффекта */
#text-magic {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh; /* Фикс для мобильных */
    display: block;
    z-index: 1;
    pointer-events: auto;
    overflow: hidden; /* Запрещаем скролл внутри канваса */
}

/* Стили для ASCII эффекта */
.as {
  cursor: pointer;
  user-select: none;
  display: inline-block;
}

.as::selection {
  background: transparent;
}

.as:hover {
  position: relative;
  cursor: pointer;
}

/* Секция с играми */
.games-section {
    position: relative;
    min-height: 100vh;
    padding: 400px 0 0; /* Убрали нижний отступ (было 100px), теперь регулируем футером */
    margin-top: 80vh;
    z-index: 30;
    
    /* Градиент фона вместо маски: Плавный переход от прозрачного к черному */
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.8) 400px,
        #000000 600px,
        #000000 100%
    );
    
    /* Убираем маску, так как градиент фона надежнее */
    -webkit-mask-image: none;
    mask-image: none;
    border: none;
}

.games-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.games-title {
    text-align: center;
    font-family: 'Orbitron', 'Anton', sans-serif;
    font-size: 4vw;
    /* Стильный серебристо-белый цвет вместо ядовитого циана */
    color: #e2e8f0; 
    text-transform: uppercase;
    letter-spacing: 0.8vw; /* Чуть шире (было 0.5vw) для кинематографичности */
    margin-bottom: 80px;
    /* Мягкое свечение */
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    font-weight: 900;
}

.steam-widgets {
    display: flex;
    flex-direction: column;
    gap: 60px; /* Больше воздуха между элементами */
    align-items: center;
}

.game-widget {
    position: relative;
    width: 540px; /* 500px iframe + 20px padding * 2 */
    height: 260px; /* 220px iframe + 20px padding * 2 */
    /* Убрали scale transition для стабильности, если нужно - вернем */
    transform: scale(1); 
}

/* Исправление отступов для iframe */
.game-widget iframe {
    display: block;
}

/* --- SCROLL INDICATOR --- */
.scroll-indicator {
    position: absolute;
    bottom: 40px; /* Подняли, так как теперь это единственный элемент по центру */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 25;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    pointer-events: none; /* Чтобы не мешал кликам */
}

.scroll-indicator:hover {
    opacity: 1;
}

/* Убрали стили .mouse и .wheel */

.arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.arrow-down {
    display: block;
    width: 16px; /* Уменьшили для баланса (было 24px) */
    height: 16px;
    border-right: 2px solid #e2e8f0; /* Тоньше и элегантнее */
    border-bottom: 2px solid #e2e8f0;
    transform: rotate(45deg);
    animation: arrow-bounce 2s infinite;
    /* Убрали агрессивные тени, оставили мягкое свечение */
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

/* Анимация прыжка - более плавная и амплитудная */
@keyframes arrow-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    40% {
        transform: translateY(-10px) rotate(45deg); /* Прыжок чуть ниже */
    }
    60% {
        transform: translateY(-5px) rotate(45deg);
    }
}

/* --- MINIMAL FOOTER --- */
.minimal-footer {
    margin-top: 100px; 
    text-align: center;
    padding-bottom: 20px; /* Еще ниже (было 30px) */
    opacity: 0.4; 
    transition: opacity 0.3s ease;
}

.minimal-footer:hover {
    opacity: 0.8; /* При наведении становится ярче */
}

.minimal-footer p {
    font-family: 'Exo 2', monospace; /* Моноширинный или техно-шрифт */
    font-size: 12px;
    color: #64748b; /* Темно-серый сланец */
    letter-spacing: 2px;
    text-transform: uppercase;
}

.system-status {
    color: #10b981; /* Технический зеленый цвет для статуса */
    margin-left: 10px;
    font-weight: bold;
    font-size: 10px;
    padding: 2px 6px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 4px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    vertical-align: middle;
}

/* Адаптация под мобильные устройства */
@media (max-width: 768px) {
    .game-widget {
        width: 90vw;
        max-width: 400px;
        transform: scale(0.9);
    }
    
    .games-title {
        font-size: 8vw;
    }
    
    .scroll-indicator {
        bottom: 20px; 
    }
    
    .minimal-footer {
        margin-top: 100px;
        /* Увеличиваем отступ снизу для мобильных, чтобы Social Dock не перекрывал */
        padding-bottom: 100px; 
    }
}
