


/* GLOBAL */
body {
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    background: #f4f6f9;
    color: #333;
    margin: 0;
    line-height: 1.7;
}

/* HEADER */
.header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 40px 20px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.logo {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 20px;
    background: white;
    padding: 5px;
    margin-bottom: 15px;
}

/* TITLE */
.header h1 {
    margin: 10px 0 5px;
    font-size: 26px;
}

.header p {
    opacity: 0.9;
    font-size: 14px;
}

/* CONTAINER */
.container {
    max-width: 900px;
    margin: -30px auto 30px;
    padding: 20px;
}

/* CARD */
.card {
    background: #fff;
    border-radius: 16px;
    padding: 22px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
}

/* HEADINGS */
h2 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary);
    border-left: 4px solid var(--primary);
    padding-left: 10px;
}

/* LIST */
ul {
    padding-left: 20px;
}

li {
    margin-bottom: 6px;
}

/* LINKS */
a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* FOOTER */
.footer {
    text-align: center;
    font-size: 13px;
    color: #888;
    margin-top: 30px;
}

/* BADGE */
.badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    margin-top: 5px;
}

/* MOBILE */
@media (max-width: 600px) {
    .header {
        padding: 30px 15px;
    }

    .logo {
        width: 70px;
        height: 70px;
    }

    .card {
        padding: 16px;
    }
}

.store-buttons {
    text-align: center;
    margin-top: 15px;
}

.store-btn {
    display: inline-block;
    padding: 10px 16px;
    margin: 5px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-size: 14px;
    transition: 0.2s;
}

.store-btn.play {
    background: #34a853;
}

.store-btn.ios {
    background: #000;
}

.store-btn:hover {
    opacity: 0.85;
}

.store-badges {
    text-align: center;
    margin-top: 15px;
}

.store-img {
    height: 40px;
    margin: 6px;
    transition: transform 0.2s ease;
}

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