/**
 * LNURL-Auth Explainer Page Styles
 * LightningFaucet.com
 */

/* Page Container */
.lnurl-page {
    min-height: 100vh;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(247, 147, 26, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, #0a0a0f 0%, #0d1117 50%, #0a0a0f 100%);
}

/* Hero Section */
.lnurl-hero {
    padding: 5rem 1.5rem 3rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.lnurl-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.lnurl-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f7931a 0%, #ffb84d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lnurl-subtitle {
    font-size: 1.25rem;
    color: #8b949e;
    line-height: 1.6;
}

/* Content Sections */
.lnurl-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.lnurl-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-align: center;
}

.lnurl-section p {
    color: #8b949e;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.lnurl-section.highlight {
    background: rgba(247, 147, 26, 0.03);
    border-top: 1px solid rgba(247, 147, 26, 0.1);
    border-bottom: 1px solid rgba(247, 147, 26, 0.1);
    max-width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.lnurl-section.highlight h2,
.lnurl-section.highlight .steps-grid {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Benefit Chips */
.benefit-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 2rem;
}

.chip {
    background: rgba(247, 147, 26, 0.1);
    border: 1px solid rgba(247, 147, 26, 0.2);
    color: #f7931a;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f7931a, #ffb84d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #000;
    font-size: 1.1rem;
    margin: 0 auto 1rem;
}

.step-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.9rem;
    color: #8b949e;
    margin: 0;
    line-height: 1.5;
}

/* Wallets Grid */
.wallets-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.wallet-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.wallet-card:hover {
    border-color: rgba(247, 147, 26, 0.3);
    transform: translateY(-4px);
}

.wallet-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 0.75rem;
    border-radius: 12px;
}

.wallet-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.wallet-card p {
    font-size: 0.9rem;
    color: #8b949e;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.wallet-platforms {
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 1rem;
}

.wallet-link {
    display: inline-block;
    color: #f7931a;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.wallet-link:hover {
    color: #ffb84d;
}

/* FAQ List */
.faq-list {
    margin-top: 2rem;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.5rem 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.faq-item p {
    font-size: 0.95rem;
    color: #8b949e;
    margin: 0;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding-bottom: 5rem;
}

.cta-section p {
    margin-bottom: 2rem;
}

.try-login-btn {
    background: linear-gradient(135deg, #f7931a, #ffb84d);
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.try-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(247, 147, 26, 0.3);
}

/* Responsive */
@media (max-width: 900px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .lnurl-hero {
        padding: 4rem 1rem 2rem;
    }

    .lnurl-section {
        padding: 2rem 1rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .wallets-grid {
        grid-template-columns: 1fr;
    }

    .benefit-chips {
        gap: 0.5rem;
    }

    .chip {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}
