/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #050505;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Effect */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #1a0b0b 0%, #000000 100%);
    z-index: -1;
}

/* Header */
header {
    padding: 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid #333;
}

.logo {
    font-family: 'Creepster', cursive;
    font-size: 2rem;
    color: #ff3b3b;
    text-shadow: 0 0 10px rgba(255, 59, 59, 0.5);
    letter-spacing: 2px;
}

/* Hero Section */
.hero-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.3), #050505);
}

.content-wrapper {
    max-width: 800px;
}

.badge {
    background: #ff9800;
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 800;
}

.highlight {
    display: block;
    color: #ff3b3b;
    font-family: 'Creepster', cursive;
    font-size: 4rem;
    text-shadow: 2px 2px 0px #fff;
}

.sub-headline {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
}

/* THE BIG BUTTON */
.cta-container {
    margin: 30px 0;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #00c853, #64dd17);
    color: #000;
    text-decoration: none;
    padding: 20px 50px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(100, 221, 23, 0.4);
    border: 2px solid #fff;
    position: relative;
    overflow: hidden;
}

.download-btn svg {
    margin-right: 15px;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.btn-text small {
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.8;
    margin-top: 5px;
}

.download-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(100, 221, 23, 0.8);
}

.download-btn:active {
    transform: scale(0.98);
}

/* Info Section */
.info-section {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.info-card {
    background: #111;
    border: 1px solid #333;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.info-card h2 {
    color: #ff9800;
    margin-bottom: 15px;
}

.features-list {
    list-style: none;
    margin-top: 20px;
}

.features-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.seo-content {
    color: #aaa;
    font-size: 0.95rem;
    text-align: justify;
}

.seo-content h3 {
    color: #fff;
    margin-bottom: 10px;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid #222;
    color: #555;
    font-size: 0.8rem;
}

footer a {
    color: #777;
    text-decoration: none;
    margin: 0 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    .highlight {
        font-size: 2.8rem;
    }
    .download-btn {
        width: 100%;
        padding: 15px 20px;
        border-radius: 15px;
    }
    .btn-text span {
        font-size: 1.2rem;
    }
}