* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #000;
    color: #fff;
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    background: radial-gradient(circle at top, #1a1a1a, #000);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3), #000);
}

.content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.logo {
    width: 140px;
    margin-bottom: 20px;
}

h1 {
    font-size: 3rem;
    letter-spacing: 2px;
}

.tagline {
    margin: 15px 0 30px;
    font-size: 1.1rem;
    opacity: 0.85;
}

.btn-download {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    color: #000;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-download:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255,215,0,0.6);
}

/* FEATURES */
.features {
    padding: 80px 20px;
    text-align: center;
    background: #050505;
}

.features h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: auto;
}

.feature-box {
    background: #111;
    padding: 30px;
    border-radius: 16px;
    transition: 0.3s;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 20px rgba(212,175,55,0.3);
}

.feature-box h3 {
    margin-bottom: 10px;
    color: #ffd700;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 25px;
    background: #000;
    font-size: 0.9rem;
    opacity: 0.6;
}