:root {
    --TOTO-700: #F9A8D4;
    --TOTO-50: #500724;
    --Whitebox: 384px;
}

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(180deg, var(--TOTO-700, #F9A8D4) 30%, var(--TOTO-50, #500724) 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.fanta-wizard {
    width: 361px;
    height: 297.294px;
    flex-shrink: 0;
    aspect-ratio: 361.00/297.29;
    margin-bottom: 40px;
}

.message {
    color: #FFF;
    text-align: center;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 55px;
    margin-bottom: 40px;
    width: 683px;
    font-display: swap;
}

.join-button {
    display: inline-block;
    background: white;
    color: var(--TOTO-50, #500724);
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-display: swap;
}

.join-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.join-button:active {
    transform: translateY(0);
}

.fallback-message {
    display: none;
    color: #FFF;
    text-align: center;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.fallback-link {
    color: #FFF;
    text-decoration: underline;
    font-weight: 600;
}

.store-message {
    color: #FFF;
    text-align: center;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.store-badge {
    display: inline-block;
    height: 60px;
    width: auto;
    margin: 0 8px;
    transition: opacity 0.3s ease;
}

.store-badge:hover {
    opacity: 0.8;
}

.store-badge-container a {
    text-decoration: none;
    display: inline-block;
}

.store-badge-container a:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease;
}

.store-badge-container {
    text-align: center;
    margin-top: 15px;
}

/* Hide button on desktop */
.join-button {
    display: none;
}

@media (max-width: 768px) {
    .message {
        width: 100%;
        max-width: 450px;
        font-size: 28px;
        line-height: 1.4;
        padding: 0 20px;
        margin-bottom: 30px;
    }

    .fanta-wizard {
        width: 250px;
        height: auto;
    }

    /* Show button only on mobile */
    .join-button {
        display: inline-block;
    }

    .store-message {
        font-size: 14px;
        margin-top: 15px;
        margin-bottom: 10px;
    }

    .store-badge {
        height: 50px;
        margin: 0 6px;
    }

    .store-badge-container {
        margin-top: 12px;
    }
} 