/* Index page specific styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: #f6f7fb;
    color: #222;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

.container {
    max-width: 420px;
    width: 100%;
    margin: 40px 20px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.12);
    padding: 32px 24px 24px 24px;
    text-align: center;
}

.logo {
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #6c7cfb;
    margin-bottom: 8px;
}

.subtitle {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 24px;
}

.hero-img {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 24px auto;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.08);
}

.desc {
    font-size: 1.15rem;
    margin-bottom: 18px;
    color: #333;
}

#desc-main {
    display: block;
    margin-bottom: 6px;
}

.platforms {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 24px;
}

.platforms img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f6f7fb;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
    padding: 4px;
}

.download-btn {
    display: inline-block;
    background: linear-gradient(90deg, #6c7cfb 60%, #a6b1ff 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 14px 38px;
    border-radius: 32px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.10);
    transition: background 0.2s;
    margin-bottom: 18px;
}

.download-btn:hover {
    background: linear-gradient(90deg, #5a6ae6 60%, #8c98e6 100%);
}

.features {
    text-align: left;
    margin: 32px 0 0 0;
    padding: 0 8px;
}

.features h3 {
    font-size: 1.15rem;
    color: #6c7cfb;
    margin-bottom: 10px;
}

.features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features li {
    font-size: 1rem;
    margin-bottom: 10px;
    padding-left: 18px;
    position: relative;
}

.features li:before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #6c7cfb;
    font-size: 1.1rem;
}

.footer {
    margin-top: 32px;
    font-size: 0.95rem;
    color: #aaa;
}
