:root {
    --purple-dark: #1c0f54;
    --purple-light: #581b98;
    --accent: #9d8df1;
    --secondary: #f2e9e4;
    --text-light: #FFFFFF;
    --yellow: #f9c70c;
}

body {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    color: var(--secondary);
    background: linear-gradient(135deg, var(--purple-dark), var(--purple-light));
    text-align: center;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    padding: 60px 0;
}

.logo {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5em;
    font-weight: 800;
    margin: 0;
    color: var(--text-light);
    text-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.subtitle {
    font-size: 1.2em;
    font-weight: 400;
    margin-top: 10px;
    color: var(--accent);
}

.download-section {
    padding: 40px 0;
    background-color: rgba(0,0,0,0.1);
}

.play-store-button img {
    height: 80px;
    transition: transform 0.2s ease-in-out;
}

.play-store-button:hover img {
    transform: scale(1.05);
}

.call-to-action {
    margin-top: 20px;
    font-size: 1.1em;
}

.features-section {
    padding: 60px 0;
}

h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    font-weight: 800;
    color: var(--text-light);
}

.features-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.feature-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    flex-basis: 280px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.feature-item h3 {
    font-size: 1.5em;
    color: var(--yellow);
    margin-top: 0;
}

footer {
    padding: 30px 0;
    margin-top: 40px;
    background-color: var(--purple-dark);
    font-size: 0.9em;
}

footer a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

footer a:hover {
    text-decoration: underline;
}
