/* =========================================
   HOW TO CONNECT (Modern Blizzard Style)
   ========================================= */
body {
    background: 
        linear-gradient(180deg, rgba(13, 16, 23, 0.7) 0%, rgba(13, 16, 23, 0.94) 100%),
        url('/images/htc.webp') no-repeat center top / cover;
    background-attachment: fixed;
    min-height: 100vh;
}

.htc-container {
    max-width: 900px;
    width: 100%;
    margin: 3.5rem auto 6rem;
    padding: 0 1.5rem;
}

.htc-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.htc-subtitle {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #f2a900;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.6rem;
}

.htc-title {
    font-family: 'Cinzel', serif;
    font-size: 3.2rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    line-height: 1.15;
}

.htc-title span {
    color: #f2a900;
}

.htc-description {
    color: #a1a6b0;
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Steps Cards */
.steps-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.step-card {
    background: linear-gradient(145deg, #181d29, #131720);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 2.2rem 2.5rem;
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.step-card:hover {
    transform: translateY(-3px);
    border-color: rgba(242, 169, 0, 0.35);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.55);
}

.step-number {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    color: #f2a900;
    font-weight: 900;
    line-height: 1;
    opacity: 0.7;
    min-width: 65px;
}

.step-content {
    flex: 1;
}

.step-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.35rem;
    color: #ffffff;
    margin-bottom: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.step-content p {
    color: #b0b8c4;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.btn-download {
    display: inline-block;
    background: linear-gradient(135deg, #0078ff, #0056cc);
    color: #ffffff;
    padding: 0.85rem 1.8rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-download:hover {
    background: linear-gradient(135deg, #1a8cff, #0066ee);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    color: #ffffff;
}

.patch-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.step-note {
    font-size: 0.85rem;
    color: #8c94a2;
    font-style: italic;
    margin-top: 1rem;
}

.code-box {
    background: #0d1017;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 0.85rem 1.2rem;
    margin: 1rem 0;
    display: inline-block;
}

.code-box code {
    color: #00ff88;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
    .htc-title {
        font-size: 2.2rem;
    }
    .step-card {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    .step-number {
        font-size: 2.5rem;
    }
    .btn-download {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
    .patch-buttons {
        flex-direction: column;
    }
}