/* RESET & BASICS */
:root {
    --primary-color: #ff0055; /* Neon Pink/Red for FF vibe */
    --secondary-color: #7000ff; /* Purple for Aura vibe */
    --bg-dark: #0a0a0f;
    --bg-card: #15151c;
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;
    --accent: #00ffcc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
}

h1, h2, h3, h4, .btn-download {
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HERO SECTION */
.hero-section {
    position: relative;
    height: 90vh; /* Almost full screen */
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, #1a1a2e 0%, #000000 100%);
    overflow: hidden;
    border-bottom: 4px solid var(--primary-color);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1542751371-adc38448a05e?auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.badge {
    background-color: var(--accent);
    color: #000;
    padding: 5px 10px;
    font-weight: bold;
    font-size: 0.9rem;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.hero-section h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 15px;
    font-weight: 700;
}

.highlight {
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(255, 0, 85, 0.6);
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px auto;
}

/* MAIN CONVERSION BUTTON */
.cta-container {
    margin-top: 20px;
    animation: pulse 2s infinite;
}

.btn-download {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    text-decoration: none;
    padding: 20px 60px;
    border-radius: 50px;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(112, 0, 255, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(255,255,255,0.1);
}

.btn-download:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 0, 85, 0.6);
}

.btn-download .small-text {
    font-size: 0.8rem;
    font-weight: 400;
    margin-top: 5px;
    opacity: 0.9;
    font-family: 'Roboto', sans-serif;
}

/* CONTENT STYLES */
.content-wrapper {
    padding: 60px 0;
}

article {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

article h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

article h3 {
    color: var(--accent);
    font-size: 1.5rem;
    margin: 30px 0 15px 0;
}

article h4 {
    color: #fff;
    font-size: 1.2rem;
    margin: 20px 0 10px 0;
}

article p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #ccc;
}

.feature-list {
    list-style: none;
    margin-bottom: 20px;
}

.feature-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: #ddd;
}

.feature-list li::before {
    content: "►";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* SECONDARY BUTTONS IN TEXT */
.mid-cta {
    text-align: center;
    margin: 40px 0;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    font-size: 1.2rem;
}

.btn-secondary:hover {
    background-color: var(--accent);
    color: #000;
}

/* FLOATING MOBILE CTA */
.floating-cta {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    z-index: 100;
}

.floating-cta a {
    display: block;
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 40px 0;
    background-color: #000;
    color: #666;
    margin-top: 40px;
}

.disclaimer {
    font-size: 0.8rem;
    margin-top: 10px;
}

/* ANIMATIONS */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-section h1 { font-size: 2.5rem; }
    .btn-download { font-size: 1.5rem; padding: 15px 40px; }
    .floating-cta { display: block; }
    article { padding: 20px; }
}