.guide-hero {
            padding: 130px 0 60px;
            text-align: center;
            position: relative;
        }

        .guide-hero .hero-badge {
            margin-bottom: 20px;
        }

        .guide-hero h1 {
            font-family: var(--font-display);
            font-size: clamp(36px, 6vw, 64px);
            font-weight: 800;
            line-height: 1.05;
            letter-spacing: -1.5px;
            margin-bottom: 18px;
            background: linear-gradient(135deg, #ffffff 40%, var(--neon-pink) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .guide-hero p {
            max-width: 680px;
            margin: 0 auto 36px;
            color: var(--text-muted);
            font-size: 16.5px;
            line-height: 1.6;
        }

        /* Banner de IP Principal */
        .guide-ip-banner {
            max-width: 580px;
            margin: 0 auto 60px;
            padding: 24px;
            background: rgba(17, 19, 28, 0.9);
            border: 1px solid rgba(0, 229, 255, 0.35);
            border-radius: 18px;
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 35px rgba(0, 229, 255, 0.15);
            backdrop-filter: blur(20px);
            text-align: left;
        }

        .guide-ip-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            background: rgba(8, 9, 14, 0.85);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 12px 18px;
            margin-top: 14px;
        }

        .guide-ip-address {
            font-family: var(--font-mono);
            font-size: clamp(18px, 2.5vw, 24px);
            font-weight: 700;
            color: #ffffff;
            letter-spacing: 0.8px;
        }

        /* Pasos Numéricos */
        .steps-container {
            padding: 40px 0 80px;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        @media (max-width: 880px) {
            .steps-grid {
                grid-template-columns: 1fr;
            }
        }

        .step-card {
            background: rgba(22, 25, 38, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: 34px 28px;
            position: relative;
            backdrop-filter: blur(14px);
            transition: all var(--duration-snappy) var(--ease-out);
            display: flex;
            flex-direction: column;
        }

        .step-card:hover {
            transform: translateY(-6px);
            border-color: rgba(255, 42, 133, 0.35);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 42, 133, 0.12);
        }

        .step-number {
            font-family: var(--font-display);
            font-size: 54px;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 16px;
            background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .step-card h3 {
            font-family: var(--font-display);
            font-size: 20px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 12px;
            letter-spacing: 0.3px;
        }

        .step-card p {
            font-size: 14.5px;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 16px;
            flex: 1;
        }

        .step-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-family: var(--font-mono);
            font-size: 11.5px;
            color: var(--neon-cyan);
            background: rgba(0, 229, 255, 0.1);
            border: 1px solid rgba(0, 229, 255, 0.25);
            padding: 4px 10px;
            border-radius: 6px;
            align-self: flex-start;
        }

        .mod-download-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            padding: 12px 16px;
            margin: 4px 0 14px;
            background: linear-gradient(135deg, #ff2a85 0%, #d80060 100%);
            color: #ffffff !important;
            font-family: var(--font-body);
            font-weight: 700;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.4px;
            text-decoration: none;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.25);
            box-shadow: 0 0 20px -4px var(--neon-pink-glow), 0 6px 16px rgba(0, 0, 0, 0.5);
            transition: all var(--duration-snappy) var(--ease-out);
            cursor: pointer;
            box-sizing: border-box;
        }

        .mod-download-btn:hover {
            background: linear-gradient(135deg, #ff4a9a 0%, #ff1478 100%);
            transform: translateY(-2px);
            box-shadow: 0 0 28px 0px rgba(255, 42, 133, 0.7), 0 10px 22px rgba(0, 0, 0, 0.6);
            border-color: rgba(255, 255, 255, 0.5);
            color: #ffffff !important;
        }

        .mod-download-btn:active {
            transform: scale(0.97);
        }

        .mod-download-btn .btn-arrow {
            font-size: 13px;
            opacity: 0.85;
            transition: transform 0.2s ease;
        }

        .mod-download-btn:hover .btn-arrow {
            transform: translate(2px, -2px);
            opacity: 1;
        }

        .mod-link-inline {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--neon-cyan);
            font-family: var(--font-mono);
            font-size: 12px;
            font-weight: 600;
            text-decoration: none;
            margin-top: 12px;
            transition: color 0.2s ease, gap 0.2s ease;
        }

        .mod-link-inline:hover {
            color: #ffffff;
            gap: 9px;
            text-shadow: 0 0 8px var(--neon-cyan);
        }

        /* Sección de Requisitos */
        .reqs-section {
            padding: 60px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            background: rgba(13, 15, 24, 0.5);
        }

        .reqs-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }

        @media (max-width: 880px) {
            .reqs-grid {
                grid-template-columns: 1fr;
            }
        }

        .req-card {
            background: rgba(17, 19, 28, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 16px;
            padding: 24px;
        }

        .req-icon {
            font-size: 28px;
            margin-bottom: 12px;
            display: inline-block;
        }

        .req-card h4 {
            font-family: var(--font-display);
            font-size: 17px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 8px;
        }

        .req-card p {
            font-size: 13.5px;
            color: var(--text-muted);
            line-height: 1.55;
        }

        /* FAQ */
        .faq-section {
            padding: 60px 0 100px;
        }

        .faq-item {
            background: rgba(22, 25, 38, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 14px;
            padding: 22px 26px;
            margin-bottom: 16px;
        }

        .faq-item h4 {
            font-family: var(--font-display);
            font-size: 17px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 8px;
        }

        .faq-item p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.6;
        }