@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    background: #121212;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(34, 34, 59, 0.7), rgba(75, 0, 130, 0.7)), url('https://www.transparenttextures.com/patterns/clean-gray-paper.png');
    background-size: cover;
    z-index: -1;
    opacity: 0.5;
}

.container {
    max-width: 800px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

header h1 {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 0.2em;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

header p {
    font-size: 1.2em;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 2em auto;
    opacity: 0.9;
}

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

.store-button {
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(128, 0, 128, 0.7);
}

.store-button img {
    height: 60px;
    border-radius: 8px;
}

.store-button.app-store img {
    height: 60px;
}

footer {
    margin-top: 3em;
    font-size: 0.9em;
    opacity: 0.7;
}
