/* ============================================================
   gSports Online – How to Play & FAQ Styles
   ============================================================ */

body {
    background: linear-gradient(to bottom, #09627d, #021f33);
    min-height: 100vh;
}

/* Der globale #banner (style.css) ist ein 1000px-Hero mit Hintergrundbild –
   hier ohne Bild, der Seiten-Gradient reicht. */
#banner {
    min-height: 0;
    background-image: none;
}

/* ---------- Hero ---------- */
.htp-hero {
    text-align: center;
    padding: 60px 16px 40px;
}

.htp-title {
    font-size: clamp(36px, 6vw, 58px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.htp-title span {
    color: #45f4f8;
    text-shadow: 0 0 22px rgba(69, 244, 248, 0.75);
}

.htp-sub {
    color: #b8dfe6;
    font-size: 17px;
    max-width: 640px;
    margin: 0 auto 26px;
    line-height: 1.6;
}

.htp-jump {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.htp-jump a {
    color: #45f4f8;
    border: 1px solid rgba(69, 244, 248, 0.45);
    border-radius: 25px;
    padding: 8px 22px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s;
}

.htp-jump a:hover {
    background: rgba(69, 244, 248, 0.12);
    box-shadow: 0 0 14px rgba(69, 244, 248, 0.4);
    color: #45f4f8;
}

/* ---------- Sections ---------- */
.htp-section {
    max-width: 960px;
    margin: 0 auto;
    padding: 30px 16px 10px;
    scroll-margin-top: 90px;
}

.htp-h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 0 16px rgba(69, 244, 248, 0.45);
}

/* Fließtext direkt in einer Sektion (außerhalb der Cards), z. B. die
   Einleitungs-/Abschluss-Absätze bei "Premium & VIP". */
.htp-section > p {
    color: #b8dfe6;
    font-size: 15px;
    line-height: 1.65;
}
.htp-section > p strong { color: #fff; }
.htp-section > p a { color: #45f4f8; }

/* ---------- Steps ---------- */
.htp-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 18px;
}

.htp-step {
    background: linear-gradient(135deg, #0e334d, #010f1d);
    border: 1px solid rgba(69, 244, 248, 0.3);
    border-radius: 14px;
    padding: 24px 18px;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.htp-step:hover {
    border-color: #45f4f8;
    box-shadow: 0 0 18px rgba(69, 244, 248, 0.25);
}

.htp-step-num {
    width: 42px;
    height: 42px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00FFFF, #FF00FF);
    color: #000;
    font-weight: 800;
    font-size: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.htp-step h3 {
    color: #45f4f8;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.htp-step p {
    color: #b8dfe6;
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}

/* ---------- Game Cards ---------- */
.htp-game-card {
    display: flex;
    gap: 22px;
    background: linear-gradient(135deg, #0e334d, #010f1d);
    border: 1px solid rgba(69, 244, 248, 0.3);
    border-radius: 14px;
    padding: 26px 24px;
    margin-bottom: 20px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.htp-game-card:hover {
    border-color: #45f4f8;
    box-shadow: 0 0 18px rgba(69, 244, 248, 0.25);
}

.htp-game-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: rgba(69, 244, 248, 0.1);
    border: 1px solid rgba(69, 244, 248, 0.4);
    color: #45f4f8;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 0 14px rgba(69, 244, 248, 0.6);
    overflow: hidden;
}

.htp-game-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.htp-game-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.htp-game-body h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.htp-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.htp-tag {
    font-size: 12px;
    font-weight: 600;
    color: #45f4f8;
    border: 1px solid rgba(69, 244, 248, 0.45);
    border-radius: 20px;
    padding: 3px 12px;
    white-space: nowrap;
}

.htp-tag.fee {
    color: #ffd23f;
    border-color: rgba(255, 180, 30, 0.45);
}

.htp-game-body p {
    color: #b8dfe6;
    font-size: 15px;
    line-height: 1.6;
}

.htp-game-body ul {
    color: #b8dfe6;
    font-size: 14px;
    line-height: 1.7;
    padding-left: 20px;
    margin: 0;
}

.htp-game-body strong,
.htp-step strong,
.htp-faq-body strong {
    color: #fff;
}

/* ---------- FAQ ---------- */
.htp-faq-group {
    color: #45f4f8;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 30px 0 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(69, 244, 248, 0.25);
}

.htp-faq {
    background: linear-gradient(135deg, #0e334d, #010f1d);
    border: 1px solid rgba(69, 244, 248, 0.25);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.htp-faq[open],
.htp-faq:hover {
    border-color: rgba(69, 244, 248, 0.6);
}

.htp-faq[open] {
    box-shadow: 0 0 16px rgba(69, 244, 248, 0.18);
}

.htp-faq summary {
    cursor: pointer;
    list-style: none;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 16px 46px 16px 20px;
    position: relative;
    user-select: none;
}

.htp-faq summary::-webkit-details-marker {
    display: none;
}

.htp-faq summary::after {
    content: '+';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #45f4f8;
    font-size: 22px;
    font-weight: 400;
    transition: transform 0.2s;
}

.htp-faq[open] summary::after {
    content: '\2212'; /* − */
}

.htp-faq[open] summary {
    color: #45f4f8;
}

.htp-faq-body {
    color: #b8dfe6;
    font-size: 14px;
    line-height: 1.65;
    padding: 0 20px 18px;
}

.htp-faq-body a {
    color: #45f4f8;
    text-decoration: underline;
}

/* ---------- CTA ---------- */
.htp-cta {
    text-align: center;
    margin: 44px 0 50px;
    padding: 34px 20px;
    background: linear-gradient(135deg, #0e334d, #010f1d);
    border: 1px solid rgba(69, 244, 248, 0.35);
    border-radius: 16px;
    box-shadow: 0 0 22px rgba(69, 244, 248, 0.15);
}

.htp-cta p {
    color: #b8dfe6;
    font-size: 16px;
    max-width: 560px;
    margin: 0 auto 18px;
}

.htp-cta-btn {
    display: inline-block;
    background: linear-gradient(45deg, #00FFFF, #FF00FF);
    color: #000;
    font-weight: 700;
    font-size: 16px;
    padding: 12px 38px;
    border-radius: 30px;
    text-decoration: none;
    transition: box-shadow 0.2s;
}

.htp-cta-btn:hover {
    box-shadow: 0 0 18px rgba(69, 244, 248, 0.7);
    color: #000;
}

/* ---------- Responsive ---------- */
@media (max-width: 576px) {
    .htp-game-card {
        flex-direction: column;
        gap: 14px;
    }

    .htp-game-icon {
        width: 52px;
        height: 52px;
        font-size: 23px;
    }
}
