* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #f5f5f5;
}

.logo-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.logo {
    max-width: 300px;
    margin-bottom: 3rem;
}

.download-buttons {
    display: flex;
    gap: 20px;
    margin-top: 2rem;
}

.download-buttons img {
    height: 50px;
    transition: transform 0.3s ease;
}

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

/**START**/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Add new styles below */

.app-title {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.app-description {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 500px;
    line-height: 1.5;
}

.badge-container {
    position: relative;
    text-align: center;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.available .status-indicator {
    background-color: #4CAF50;
    color: white;
}

.coming-soon .status-indicator {
    background-color: #FF9800;
    color: white;
}

.app-store-container {
    position: relative;
    cursor: not-allowed;
    filter: grayscale(30%);
    opacity: 0.8;
}

.app-store-container img {
    opacity: 0.7;
    pointer-events: none;
}

.app-store-container:hover {
    transform: scale(1.02);
    filter: grayscale(0%);
    opacity: 1;
}

/* Media Queries */
@media (max-width: 600px) {
    .app-title {
        font-size: 2rem;
    }

    .app-description {
        font-size: 1rem;
    }

    .status-indicator {
        font-size: 0.8rem;
        padding: 5px 12px;
    }
}
/**END**/

@keyframes pulse {
    0% { opacity: 0.8; }
    50% { opacity: 1; }
    100% { opacity: 0.8; }
}

.coming-soon-container img {
    opacity: 0.7;
    pointer-events: none;
}

.coming-soon-container:hover {
    transform: scale(1.02);
    filter: grayscale(0%);
    opacity: 1;
}

footer {
    background-color: #333;
    color: white;
    padding: 2rem;
    text-align: center;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .logo {
        max-width: 200px;
    }

    .download-buttons {
        flex-direction: column;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}
