/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0a0a;
    background-image: radial-gradient(circle at 50% 0%, #2a1b3d 0%, #0a0a0a 70%);
    color: #e0e0e0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    margin-bottom: 15px;
}

strong {
    color: #b942ff;
}

/* Header */
header {
    padding: 20px;
    text-align: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 0 0 10px rgba(185, 66, 255, 0.7);
}

.logo span {
    color: #b942ff;
}

/* Hero Section (The Converter) */
.hero-section {
    text-align: center;
    padding: 60px 20px;
    position: relative;
    z-index: 10;
}

.hero-section h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(185, 66, 255, 0.5);
}

.subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #ccc;
}

/* THE BIG BUTTON */
.cta-container {
    margin: 30px 0;
    display: flex;
    justify-content: center;
}

.download-btn {
    background: linear-gradient(90deg, #8a2be2, #ff00cc);
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.download-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(255, 0, 204, 0.8);
    filter: brightness(1.2);
}

.btn-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-sub {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-top: 5px;
    font-weight: 300;
}

.safe-badge {
    font-size: 0.9rem;
    color: #00ff88;
    margin-top: 15px;
    font-weight: 500;
}

/* Content Section */
.content-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 50px;
}

article h2 {
    font-size: 1.8rem;
    border-bottom: 2px solid #b942ff;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

article h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    color: #d1d1d1;
}

article p {
    margin-bottom: 20px;
    color: #bbb;
}

.features-list {
    list-style: none;
    margin-bottom: 20px;
}

.features-list li {
    background: rgba(185, 66, 255, 0.1);
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #b942ff;
}

.bottom-cta {
    text-align: center;
    margin-top: 40px;
}

.text-link {
    color: #ff00cc;
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;
    border-bottom: 2px dashed #ff00cc;
    transition: color 0.3s;
}

.text-link:hover {
    color: #fff;
    border-color: #fff;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #666;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .download-btn {
        padding: 15px 30px;
        width: 100%;
    }
    
    .btn-text {
        font-size: 1.2rem;
    }
}