body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.coming-soon-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 60px;
}

.coming-soon-card {
    width: 100%;
    max-width: 560px;
    background: var(--bg-surface-elevated);
    border: 1px solid rgba(255, 42, 133, 0.35);
    border-radius: 20px;
    padding: 48px 36px;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    text-align: center;
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.7), 
        0 0 35px -5px rgba(255, 42, 133, 0.25);
    position: relative;
    overflow: hidden;
}

.coming-soon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff2a85, #7928ca, #00e5ff);
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 14px;
    background: rgba(255, 42, 133, 0.12);
    border: 1px solid rgba(255, 42, 133, 0.4);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--neon-pink);
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 0 14px -3px rgba(255, 42, 133, 0.4);
}

.store-icon-glow {
    font-size: 56px;
    margin-bottom: 16px;
    display: block;
    filter: drop-shadow(0 0 20px rgba(255, 42, 133, 0.6));
    animation: floatIcon 3s ease-in-out infinite alternate;
}

@keyframes floatIcon {
    from { transform: translateY(0); }
    to { transform: translateY(-8px); }
}

.coming-soon-card h1 {
    font-family: var(--font-display) !important;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 14px;
    text-shadow: 0 0 24px rgba(255, 42, 133, 0.35);
}

.coming-soon-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 34px;
}

.button-group {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
