/* =============== СЕКЦИЯ "НАЧАТЬ ИГРАТЬ" — HUD-СТИЛЬ =============== */
#play {
    background: transparent !important;
    padding: var(--section-py) 0;
}

.play-intro {
    text-align: center;
    margin-bottom: 2.5rem;
}

.play-intro .section-title {
    font-family: 'Druk Wide', sans-serif;
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 0 12px rgba(255, 180, 0, 0.3);
}

.play-intro .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
}

/* Переключатель */
.platform-switcher {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.platform-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.8rem;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Druk Wide', sans-serif;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.35s var(--ease);
}

.platform-btn:hover {
    background: rgba(0, 0, 0, 0.35);
    color: var(--white);
}

.platform-btn.active {
    background: rgba(255, 180, 0, 0.15);
    border-color: var(--yellow);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(255, 180, 0, 0.2);
    transform: translateY(-3px);
}

.platform-btn i {
    font-size: 1.4rem;
    color: var(--yellow);
}

/* Контент платформ */
.platform-content {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.platform-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* HUD-панель требований */
.specs-hud {
    background: rgba(10, 10, 20, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.spec-line {
    display: flex;
    justify-content: space-between;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s var(--ease);
}

.spec-line:last-child {
    border-bottom: none;
}

.spec-line:hover {
    background: rgba(255, 180, 0, 0.05);
    transform: translateX(5px);
}

.spec-label {
    font-family: 'Druk Wide', sans-serif;
    color: var(--yellow);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.spec-value {
    color: var(--white);
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Кнопки загрузки */
.download-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.btn-download {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.1rem 2.2rem;
    border-radius: 14px;
    font-family: 'Druk Wide', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.35s var(--ease);
    min-width: 240px;
    justify-content: center;
}

.btn-download i {
    font-size: 1.3rem;
}

.btn-download.primary {
    background: linear-gradient(135deg, var(--yellow), var(--orange));
    color: var(--black);
}

.btn-download.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(255, 180, 0, 0.5);
}

.btn-download.outline {
    background: transparent;
    border: 2px solid var(--yellow);
    color: var(--white);
}

.btn-download.outline:hover {
    background: rgba(255, 180, 0, 0.1);
    transform: translateY(-3px);
}

.btn-download.google {
    background: linear-gradient(135deg, #00c853, #009624);
    color: white;
}

.btn-download.google:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 200, 83, 0.4);
}

/* Информация о сервере */
.server-info {
    text-align: center;
    margin-top: 3rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.server-info a {
    color: var(--yellow);
    text-decoration: none;
    font-weight: 600;
}

.server-info a:hover {
    text-decoration: underline;
}

/* Адаптив */
@media (max-width: 768px) {
    .play-intro .section-title { font-size: 2.2rem; }
    .platform-btn { flex: 1; min-width: 140px; justify-content: center; }
    .spec-line { flex-direction: column; gap: 0.3rem; text-align: center; }
    .btn-download { min-width: auto; width: 100%; max-width: 300px; }
}