/* =====================================================
   Launcher Page — Dark Tether Games
   ===================================================== */

/* Nav launcher link accent */
.nav-launcher-link {
    color: var(--accent-primary) !important;
    font-weight: 600 !important;
    position: relative;
}
.nav-launcher-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-gradient);
    border-radius: 1px;
    opacity: 0;
    transition: opacity 0.2s;
}
.nav-launcher-link:hover::after,
.nav-launcher-link.active::after {
    opacity: 1;
}

/* Hero */
.launcher-hero {
    position: relative;
    padding: 6rem 2rem 5rem;
    text-align: center;
    overflow: hidden;
}

.launcher-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(220, 38, 38, 0.15), transparent 70%),
        radial-gradient(ellipse 40% 40% at 70% 20%, rgba(147, 51, 234, 0.1), transparent 60%);
    pointer-events: none;
}

.launcher-hero-content {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
}

.launcher-hero-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: rgba(220, 38, 38, 0.12);
    border: 1px solid rgba(220, 38, 38, 0.25);
    border-radius: 2rem;
    color: #ef4444;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.launcher-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.launcher-hero-sub {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 2.5rem;
}

.launcher-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.launcher-hero-note {
    width: 100%;
    text-align: center;
}

.btn-launcher-download {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.5rem;
    background: var(--accent-gradient);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
}

.btn-launcher-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(220, 38, 38, 0.45);
    color: #fff;
}

.launcher-hero-note {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Android download button */
.btn-launcher-android {
    background: linear-gradient(135deg, #3ddc84, #2fa866);
    box-shadow: 0 4px 20px rgba(61, 220, 132, 0.3);
}

.btn-launcher-android:hover {
    box-shadow: 0 8px 35px rgba(61, 220, 132, 0.45);
}

/* Features */
.launcher-features {
    padding: 4rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
    border-color: rgba(220, 38, 38, 0.3);
    transform: translateY(-4px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 26px;
    height: 26px;
    color: var(--accent-primary);
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Patreon CTA */
.launcher-patreon {
    padding: 3rem 0 4rem;
}

.patreon-card {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

.patreon-card-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 80% at 0% 50%, rgba(249, 104, 84, 0.08), transparent 60%),
        radial-gradient(ellipse 50% 80% at 100% 50%, rgba(147, 51, 234, 0.06), transparent 60%);
    pointer-events: none;
}

.patreon-card-content {
    position: relative;
    padding: 3rem;
    text-align: center;
}

.patreon-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: rgba(249, 104, 84, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f96854;
}

.patreon-card h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.patreon-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 750px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.patreon-perks {
    list-style: none;
    max-width: 650px;
    margin: 0 auto 2.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.patreon-perks li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.patreon-perks li svg {
    flex-shrink: 0;
    color: #22c55e;
    margin-top: 2px;
}

.btn-patreon-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #f96854, #e5533d);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 4px 20px rgba(249, 104, 84, 0.3);
}

.btn-patreon-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(249, 104, 84, 0.45);
    color: #fff;
}

.btn-subscribestar-cta {
    background: linear-gradient(135deg, #1e3a8a, #2b4db0);
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.35);
}

.btn-subscribestar-cta:hover {
    box-shadow: 0 8px 35px rgba(30, 58, 138, 0.5);
}

.launcher-cta-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.patreon-note {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* How it works */
.launcher-steps {
    padding: 4rem 0 5rem;
}

.launcher-steps h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: var(--text-primary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.step-card {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    width: 44px;
    height: 44px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: var(--accent-gradient);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .launcher-hero {
        padding: 4rem 1.5rem 3rem;
    }
    .launcher-hero h1 {
        font-size: 2rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .patreon-card-content {
        padding: 2rem 1.5rem;
    }
}

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

