/* Index page styles */
body.index-page {
    color: #ffffff;
    display: flex;
    flex-direction: column;
}

.index-page .container {
    max-width: 800px;
    margin: 0 auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.app-icon {
    width: 120px;
    height: 120px;
    border-radius: 26px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.index-page h1 {
    font-size: 2.5em;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.tagline {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
}

.features {
    list-style: none;
    text-align: left;
    margin-bottom: 50px;
    max-width: 600px;
    width: 100%;
}

.features li {
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
}

.features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 1.2em;
}

.app-store-badge {
    display: inline-block;
    margin-bottom: 60px;
}

.app-store-badge img {
    height: 60px;
    width: auto;
    display: block;
}

footer {
    margin-top: auto;
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Media queries */
@media (max-width: 600px) {
    .index-page h1 {
        font-size: 2em;
    }

    .tagline {
        font-size: 1.1em;
    }

    .features {
        max-width: 100%;
    }

    .features li {
        font-size: 1em;
        margin-bottom: 14px;
    }

    .app-icon {
        width: 100px;
        height: 100px;
    }

    .app-store-badge img {
        height: 50px;
    }
}
