body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #181828;
    color: #f3f3fa;
    min-height: 100vh;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px 40px 20px;
    background: linear-gradient(135deg, #23234a 0%, #3a1c71 100%);
    box-shadow: 0 4px 24px rgba(58,28,113,0.2);
}

.icon-circle {
    background: #2d2d5a;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 2px 12px rgba(58,28,113,0.15);
}
.icon {
    font-size: 2.5rem;
}

h1 {
    font-size: 2.8rem;
    margin: 0 0 10px 0;
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.2rem;
    color: #a7a7e6;
    margin-bottom: 28px;
}

.download-btn {
    background: linear-gradient(90deg, #5f72bd 0%, #9a5cff 100%);
    color: #fff;
    padding: 16px 38px;
    border: none;
    border-radius: 32px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(154,92,255,0.15);
    transition: background 0.2s, transform 0.2s;
    margin-bottom: 18px;
}
.download-btn:hover {
    background: linear-gradient(90deg, #9a5cff 0%, #5f72bd 100%);
    transform: translateY(-2px) scale(1.04);
}

.features {
    max-width: 500px;
    margin: 40px auto 0 auto;
    background: #23234a;
    border-radius: 18px;
    padding: 32px 24px;
    box-shadow: 0 2px 16px rgba(58,28,113,0.10);
}
.features h2 {
    margin-top: 0;
    color: #9a5cff;
    font-size: 1.5rem;
}
.features ul {
    list-style: none;
    padding: 0;
    margin: 18px 0 0 0;
}
.features li {
    margin-bottom: 14px;
    font-size: 1.08rem;
    display: flex;
    align-items: center;
}

.direct-link {
    text-align: center;
    margin: 36px 0 0 0;
}
.direct-link h3 {
    color: #5f72bd;
    margin-bottom: 8px;
}
.direct-link a {
    color: #9a5cff;
    text-decoration: underline;
    font-weight: 500;
}
.direct-link a:hover {
    color: #5f72bd;
}

footer {
    text-align: center;
    padding: 24px 0 12px 0;
    color: #a7a7e6;
    font-size: 0.98rem;
    margin-top: 40px;
}

@media (max-width: 600px) {
    .hero {
        padding: 40px 10px 24px 10px;
    }
    .features {
        padding: 20px 8px;
    }
    h1 {
        font-size: 2rem;
    }
} 