/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0f172a; /* Dark Blue/Slate Background */
    color: #e2e8f0; /* Light text */
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Rajdhani', sans-serif;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hero Section - The "Hook" */
.hero {
    background-image: linear-gradient(to bottom, rgba(15, 23, 42, 0.6), #0f172a), url('https://images.unsplash.com/photo-1542751371-adc38448a05e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80'); /* Placeholder gaming BG */
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    border-bottom: 4px solid #3b82f6;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.tag {
    background-color: #3b82f6;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 3rem;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.hero .subtitle {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 40px;
}

/* THE CONVERSION BUTTON - Critical Part */
.cta-container {
    margin: 40px 0;
    display: flex;
    justify-content: center;
}

.download-btn {
    background: linear-gradient(45deg, #22c55e, #16a34a); /* Vibrant Green */
    color: #ffffff;
    padding: 20px 50px;
    border-radius: 50px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid #4ade80;
    position: relative;
    overflow: hidden;
}

.download-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(34, 197, 94, 0.9);
    background: linear-gradient(45deg, #16a34a, #22c55e);
}

.btn-icon {
    font-size: 2rem;
    margin-bottom: 5px;
}

.btn-sub {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
    font-family: 'Inter', sans-serif;
    margin-top: 5px;
    text-transform: none;
}

.small-btn {
    font-size: 1.2rem;
    padding: 15px 30px;
}

/* Content Layout */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-wrapper {
    padding-top: 40px;
    padding-bottom: 60px;
}

article p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #cbd5e1;
}

article strong {
    color: #3b82f6; /* Blue highlight for keywords */
}

/* Feature Boxes */
.highlight-box {
    background-color: #1e293b;
    border-left: 5px solid #3b82f6;
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
}

.highlight-box ul {
    list-style: none;
    margin-top: 15px;
}

.highlight-box li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.feature-card {
    background-color: #1e293b;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #334155;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
}

.feature-card h4 {
    color: #3b82f6;
    font-size: 1.3rem;
}

hr {
    border: 0;
    border-top: 1px solid #334155;
    margin: 50px 0;
}

/* Footer */
footer {
    background-color: #020617;
    text-align: center;
    padding: 40px 20px;
    color: #64748b;
    font-size: 0.9rem;
    border-top: 1px solid #1e293b;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .download-btn {
        padding: 15px 30px;
        font-size: 1.4rem;
        width: 100%;
    }
}