/* Launcher Page - KitsuMC */
.launcher-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 85vh;
    padding: 8rem 10% 4rem;
    position: relative;
}

.launcher-content {
    max-width: 650px;
    z-index: 2;
    animation: fadeIn 0.8s ease-out;
    text-align: center;
}

.launcher-content h1 { font-size: 4.2rem; line-height: 0.95; margin-bottom: 1.5rem; }
.launcher-content h1 .highlight { color: var(--accent); display: block; }
.launcher-content p { font-size: 1.15rem; color: var(--text-dim); margin-bottom: 2.5rem; max-width: 500px; line-height: 1.6; }

.download-area { display: flex; flex-direction: column; align-items: center; gap: 1rem; }

.primary-btn.download-main {
    padding: 1.2rem 2rem;
    font-size: 1.2rem;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), #ff4da6);
    color: #fff;
    box-shadow: 0 8px 40px var(--accent-glow), 0 3px 0 var(--plush-dark);
    border: 2px solid rgba(255,255,255,0.2);
}

.primary-btn.download-main:hover {
    box-shadow: 0 12px 60px var(--accent-glow), 0 3px 0 var(--plush-dark);
    transform: translateY(-4px) scale(1.03);
}

.os-coming-soon {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-dim);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    opacity: 0.6;
}

.os-coming-soon i {
    font-size: 1rem;
    color: var(--accent-secondary);
}

.launcher-hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    perspective: 1000px;
}

.launcher-hero-visual .interface-mockup {
    transform: rotateY(-15deg) rotateX(5deg);
    transition: transform 0.5s ease;
    box-shadow: -20px 20px 60px rgba(255,140,26,0.2);
}

.launcher-hero-visual:hover .interface-mockup { transform: rotateY(-5deg) rotateX(2deg); }

.features-grid-launcher {
    background: rgba(26,13,20,0.85);
    backdrop-filter: blur(10px);
    padding: 2rem 10%;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 5;
    margin-top: -4rem;
}

.feature-box {
    background: var(--card-bg);
    border: 1.5px solid var(--border-subtle);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    text-align: left;
    transition: all 0.3s var(--ease-bounce);
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 250px;
    max-width: 380px;
}

.feature-box:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 12px 30px var(--accent-glow);
}

.feature-box .icon-glow {
    font-size: 1.8rem;
    color: var(--accent);
    text-shadow: 0 0 16px var(--accent-glow);
    flex-shrink: 0;
}

.feature-box div { display: flex; flex-direction: column; }
.feature-box h3 { font-family: var(--font-mc); font-size: 1.1rem; margin-bottom: 0.2rem; color: var(--text-primary); }
.feature-box p { color: var(--text-dim); font-size: 0.85rem; line-height: 1.4; }

.launcher-details-section {
    padding: 6rem 10%;
    background: rgba(26,13,20,0.7);
    border-top: 1px solid var(--border-subtle);
    position: relative;
    z-index: 10;
}

.details-container { display: flex; justify-content: space-between; gap: 4rem; flex-wrap: wrap; }
.detail-column { flex: 1; min-width: 300px; }

.detail-column h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-mc);
    text-shadow: 0 0 20px var(--accent-glow);
}

.mod-list li, .security-list li {
    background: var(--card-bg);
    padding: 1rem;
    margin-bottom: 0.8rem;
    border-radius: 12px;
    border-left: 3px solid var(--accent);
    color: var(--text-dim);
    transition: transform 0.3s ease, background 0.3s;
    list-style: none;
}

.security-list li { border-color: #c5a8ff; }

.mod-list li:hover, .security-list li:hover {
    transform: translateX(8px);
    background: rgba(255,140,26,0.08);
    color: var(--text-primary);
}

strong { color: var(--text-primary); margin-right: 5px; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
