/* Simple responsive styles for the under-construction landing page */
:root {
    --bg1: #0f172a;
    --bg2: #082032;
    --card: #0b1220cc;
    --accent: #ff6b6b;
    --muted: #cbd5e1;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    font-family: Inter, system-ui, Segoe UI, Roboto, Arial;
    background: linear-gradient(135deg, var(--bg1), var(--bg2));
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.wrap {
    width: 100%;
    max-width: 880px
}

.card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border-radius: 14px;
    padding: 2.25rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(2, 6, 23, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.brand {
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--muted);
    margin-bottom: 0.5rem;
}

h1 {
    margin: 0 0 0.5rem;
    color: #fff;
    font-size: 1.8rem
}

.lead {
    margin: 0 0 1.25rem;
    color: #cbd5e1
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem
}

.btn {
    display: inline-block;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    text-decoration: none;
    color: #081122;
    background: linear-gradient(90deg, var(--accent), #ff9a6b);
    font-weight: 600
}

.btn.shop {
    box-shadow: 0 6px 16px rgba(255, 107, 107, 0.16)
}

.socials {
    display: flex;
    gap: 0.5rem
}

.social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--muted);
    text-decoration: none
}

.social svg {
    display: block
}

.note {
    font-size: 0.85rem;
    color: #9aa8bb
}

@media (max-width:480px) {
    .card {
        padding: 1.25rem
    }

    h1 {
        font-size: 1.4rem
    }

    .btn {
        padding: 0.5rem 0.8rem
    }
}