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

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

body {
    background: #0f0c29;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to bottom right, #24243e, #302b63, #0f0c29);
    background: linear-gradient(to bottom right, #24243e, #302b63, #0f0c29);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero {
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    width: 100%;
}

.title {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 1rem;
    background: -webkit-linear-gradient(#fff, #a0a0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInDown 1s ease-out;
}

.subtitle {
    font-size: 1.5rem;
    color: #d0d0f0;
    margin-bottom: 4rem;
    animation: fadeIn 1.5s ease-out;
}

.button-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out;
}

.store-button {
    display: flex;
    align-items: center;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 240px;
}

.store-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.store-icon {
    width: 32px;
    height: 32px;
    margin-right: 14px;
}

.button-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.small-text {
    font-size: 0.75rem;
    line-height: 1;
    color: #ccc;
    margin-bottom: 4px;
}

.large-text {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 600px) {
    .title {
        font-size: 3.5rem;
    }
    .subtitle {
        font-size: 1.2rem;
        margin-bottom: 3rem;
    }
    .button-container {
        flex-direction: column;
        align-items: center;
    }
    .store-button {
        width: 100%;
        max-width: 280px;
    }
}
