/* =========================
   MoakPlus Connection Guide
   ========================= */

.guide-section {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 0;
}

.guide-epr {
    text-align: center;
    margin-bottom: 35px;
}

.guide-epr h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.guide-epr p {
    font-size: 18px;
    color: #d6d6d6;
}

.guide-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.guide-card {
    background: rgba(20, 20, 20, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 26px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.guide-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.guide-card h2 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #f4c542;
}

.guide-card p,
.guide-card li {
    color: #e5e5e5;
    line-height: 1.6;
}

.guide-card ol {
    padding-left: 20px;
    margin: 0;
}

.guide-card code {
    background: rgba(255, 255, 255, 0.08);
    padding: 2px 6px;
    border-radius: 4px;
    color: #f4c542;
}

.server-ip {
    background: rgba(244, 197, 66, 0.15);
    border: 1px solid rgba(244, 197, 66, 0.35);
    color: #f4c542;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    padding: 18px;
    border-radius: 10px;
    margin-top: 15px;
    letter-spacing: 1px;
}

.guide-button {
    display: inline-block;
    margin-top: 15px;
    background: #f4c542;
    color: #111;
    text-decoration: none;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 999px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.guide-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* =========================
   Launcher Cards
   ========================= */

.launcher-card {
    text-align: center;
}

.launcher-logo {
    width: 96px;
    height: 96px;
    object-fit: contain;
    display: block;
    margin: 0 auto 15px auto;
    transition: transform 0.2s ease;
}

.launcher-card:hover .launcher-logo {
    transform: scale(1.05);
}

.launcher-card ol {
    text-align: left;
    margin-top: 15px;
}

.recommended-badge {
    display: inline-block;
    background: #00d26a;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =========================
   Mobile
   ========================= */

@media (max-width: 768px) {
    .guide-section {
        width: 94%;
        padding: 25px 0;
    }

    .guide-epr h1 {
        font-size: 30px;
    }

    .guide-list {
        grid-template-columns: 1fr;
    }

    .server-ip {
        font-size: 18px;
    }

    .launcher-logo {
        width: 72px;
        height: 72px;
    }
}