/* Reset & Basic Setup */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #141414; /* Netflix Dark Background */
    color: #e5e5e5;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styling */
.header {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
}

.header h1 {
    font-size: 2.5rem;
    color: #E50914; /* Netflix Red */
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.1rem;
    color: #bbb;
}

/* CTA Section - The Important Part */
.cta-section {
    background: #1f1f1f;
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #333;
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.2);
    margin-bottom: 50px;
}

.file-info {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 20px;
}

/* The Main Button */
.download-btn {
    display: inline-block;
    background: linear-gradient(180deg, #E50914 0%, #b20710 100%);
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 20px 40px;
    border-radius: 50px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    text-transform: uppercase;
    width: 100%;
    max-width: 450px;
}

.download-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(229, 9, 20, 0.6);
    background: linear-gradient(180deg, #ff1f2b 0%, #d60813 100%);
}

.btn-sub {
    display: block;
    font-size: 0.8rem;
    font-weight: normal;
    margin-top: 5px;
    opacity: 0.9;
}

.safe-text {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #46d369; /* Green for safety */
}

/* Content Styling for SEO */
.content {
    background-color: #181818;
    padding: 30px;
    border-radius: 10px;
}

.content h2 {
    color: #fff;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #E50914;
    display: inline-block;
}

.content h3 {
    color: #f5f5f1;
    margin-top: 20px;
    margin-bottom: 10px;
}

.content p, .content li {
    color: #ccc;
    margin-bottom: 15px;
    font-size: 1rem;
}

.content ul, .content ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.content strong {
    color: #fff;
}

.final-cta {
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 30px;
    color: #E50914 !important;
}

footer {
    text-align: center;
    margin-top: 50px;
    font-size: 0.8rem;
    color: #555;
    padding-bottom: 20px;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .header h1 {
        font-size: 1.8rem;
    }
    
    .download-btn {
        font-size: 1.2rem;
        padding: 15px 20px;
    }
}