/* ==========================================================================
   ROCKOLA DIGITAL - LANDING PAGE STYLES
   ========================================================================== */

:root {
    --bg-color: #0d0f12;
    --bg-lighter: #161b22;
    --bg-card: rgba(255, 255, 255, 0.03);
    
    --primary: #ec4899;
    --primary-hover: #db2777;
    --secondary: #8b5cf6;
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    
    --border-color: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Components */
.btn-primary-large, .btn-secondary-large, .btn-login {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary-large {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.5);
}

.btn-secondary-large {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary-large:hover {
    background: var(--bg-card);
    border-color: var(--text-muted);
}

.btn-login {
    background: var(--bg-card);
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}
.btn-login:hover {
    background: rgba(255,255,255,0.1);
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(236, 72, 153, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(236, 72, 153, 0.2);
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(13, 15, 18, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 1px;
}
.logo i { color: var(--primary); font-size: 1.5rem; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a:not(.btn-login) {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
}

.nav-links a:not(.btn-login):hover {
    color: var(--text-main);
}

/* HERO SECTION */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 150px 5% 100px;
    min-height: 100vh;
    gap: 50px;
    background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.15), transparent 40%),
                radial-gradient(circle at bottom left, rgba(236, 72, 153, 0.1), transparent 40%);
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 25px;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.trust-indicators {
    display: flex;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.indicator i {
    color: var(--primary);
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.mockup-tv {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 10px #1a1a1a;
    width: 100%;
    max-width: 600px;
}
.mockup-tv img { width: 100%; display: block; }

.mockup-mobile {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 160px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8), 0 0 0 6px #2a2a2a;
}
.mockup-mobile img { width: 100%; display: block; }

/* FEATURES SECTION */
.features {
    padding: 100px 5%;
    background: var(--bg-lighter);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}
.section-title.text-left {
    text-align: left;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(139, 92, 246, 0.1);
    color: var(--secondary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-muted);
}

/* HOW IT WORKS */
.how-it-works {
    display: flex;
    align-items: center;
    padding: 100px 5%;
    gap: 60px;
}

.how-content {
    flex: 1;
}

.steps-list {
    list-style: none;
    margin-top: 40px;
}

.steps-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.4);
}

.step-text h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}
.step-text p {
    color: var(--text-muted);
}

.how-image {
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.how-image img { width: 100%; display: block; filter: grayscale(30%) contrast(1.1); }

/* DOWNLOAD CTA */
.download-cta {
    display: flex;
    justify-content: center;
    padding: 120px 5%;
    background: linear-gradient(180deg, var(--bg-color), var(--bg-lighter));
    border-top: 1px solid var(--border-color);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    background: var(--bg-card);
    padding: 60px 40px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.cta-content h2 { font-size: 3rem; margin-bottom: 20px; }
.cta-content p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 40px; line-height: 1.6; }
.sys-req { font-size: 0.9rem !important; opacity: 0.7; margin-top: 20px; margin-bottom: 0 !important; }

/* FOOTER */
footer {
    background: #000;
    padding: 60px 5% 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.social-links { display: flex; gap: 20px; }
.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.social-links a:hover { background: var(--primary); }

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

@media (max-width: 992px) {
    .hero, .how-it-works { flex-direction: column; text-align: center; padding-top: 120px; }
    .hero-content { margin-bottom: 60px; }
    .hero h1 { font-size: 3rem; }
    .hero-actions { justify-content: center; flex-wrap: wrap; }
    .section-title.text-left { text-align: center; }
    .steps-list li { text-align: left; }
    .nav-links a:not(.btn-login) { display: none; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}
