* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #1e1e1e 0%, #2d2d2d 100%);
    color: #e0e0e0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    flex: 1;
}

.home-link {
    color: #bb86fc;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 2rem;
    display: inline-block;
    transition: color 0.3s ease;
}

.home-link:hover {
    color: #dec2ff;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #fff;
    line-height: 1.2;
}

.description {
    margin-bottom: 2rem;
    color: #ccc;
    line-height: 1.6;
    font-size: 1.1rem;
}

.features-list {
    margin-bottom: 2rem;
    list-style-type: none;
}

.features-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.features-list li::before {
    content: "✨";
    margin-left: 10px;
    /* RTL fix */
    color: #bb86fc;
}

.store-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.store-button {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.apple-store {
    background-color: #000;
    border: 1px solid #333;
}

.google-play {
    background-color: #01875f;
}

.store-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.disclaimer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #444;
    font-size: 0.85rem;
    color: #888;
    text-align: center;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        order: -1;
        margin-bottom: 2rem;
    }

    .store-buttons {
        justify-content: center;
    }
}