* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow: auto;
}

body {
    font-family: 'Arial', sans-serif;
    background-image: url('images/background.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding-bottom: 40px;
}

.container {
    width: 100%;
    max-width: 900px;
    padding: 20px;
    padding-top: 40px;
}

.content {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.logo-container {
    margin-bottom: 30px;
}

.logo {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
    animation: fadeInUp 0.8s ease-out;
}

.message {
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.message h1 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.message p {
    color: #e0e0e0;
    font-size: 1.2rem;
    margin-top: 10px;
}

.app-stores {
    animation: fadeInUp 1.2s ease-out 0.4s both;
}

.availability-text {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-weight: 500;
}

.store-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.store-button {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

.store-button:hover {
    transform: translateY(-5px);
    filter: brightness(1.2);
}

.store-button:active {
    transform: translateY(-2px);
}

.store-button-img {
    max-width: 200px;
    height: auto;
    display: block;
    border-radius: 8px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 30px 20px;
    }
    
    .logo {
        max-height: 150px;
    }
    
    .message h1 {
        font-size: 2rem;
    }
    
    .message p {
        font-size: 1rem;
    }
    
    .availability-text {
        font-size: 1rem;
    }
    
    .store-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .store-button-img {
        max-width: 220px;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 25px 15px;
    }
    
    .logo {
        max-height: 120px;
    }
    
    .message h1 {
        font-size: 1.75rem;
    }
    
    .message p {
        font-size: 0.9rem;
    }
    
    .store-button-img {
        max-width: 250px;
    }
}

