* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: linear-gradient(to bottom, #64b5f6, #90caf9, #bbdefb);
    color: #1a1a1a;
}

header {
    padding: 20px;
    background: linear-gradient(to bottom, #64b5f6, #90caf9, #bbdefb);
}

.header-content {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.app-logo {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background-color: white;
    padding: 4px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.header-text h1 {
    margin: 0;
    font-size: 2rem;
}

.header-text p {
    margin: 5px 0 0;
    font-size: 1rem;
}

.description {
    padding: 30px 20px;
    max-width: 800px;
    margin: 20px auto;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.description h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.description p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.description ul {
    list-style-type: "✅ ";
    padding-left: 1.2rem;
    line-height: 1.8;
}

.screenshots {
    display: flex;
    overflow-x: auto;
    padding: 20px;
    gap: 12px;
    scroll-snap-type: x mandatory;
}

.screenshots img {
    height: 500px;
    max-width: 300px;
    flex-shrink: 0;
    scroll-snap-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}



.store-buttons a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.store-buttons a.android {
    background-color: #ffffff;
    color: #333;
    border: 1px solid #ccc;
}

.store-buttons a.ios {
    background-color: #ffffff;
    color: #333;
    border: 1px solid #ccc;
}

.store-buttons a:hover {
    opacity: 0.9;
}

.store-buttons .store-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}


footer {
    text-align: center;
    padding: 40px 20px;
    margin-top: 40px;
    color: #1a1a1a;
}



@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 12px;
    }

    .header-text h1 {
        font-size: 1.5rem;
    }

    .header-text p {
        font-size: 0.95rem;
    }

    .app-logo {
        width: 56px;
        height: 56px;
    }

    .screenshots img {
        height: 350px;
    }

    .description h2 {
        font-size: 1.2rem;
    }

    .description p,
    .description ul {
        font-size: 0.95rem;
    }


}