/* ===== PhilSugar — Homepage ===== */
:root {
    --pink: #ff6b9d;
    --magenta: #c44dff;
    --purple: #7b5cff;
    --orange: #ff8a4c;
    --navy: #1a1530;
    --text: #2a2440;
    --muted: #6b6580;
    --line: #e8e4f0;
    --lavender: #f6f2fb;
    --white: #ffffff;
    --grad: linear-gradient(135deg, #ff6b9d 0%, #c44dff 48%, #7b5cff 100%);
    --grad-soft: linear-gradient(135deg, #ff8ab5 0%, #b07aff 100%);
    --shadow-card: 0 18px 50px rgba(90, 40, 140, 0.18);
    --shadow-soft: 0 8px 24px rgba(90, 40, 140, 0.1);
    --radius: 16px;
    --header-h: 72px;
    --bottom-nav-h: 64px;
    --font: "Manrope", system-ui, sans-serif;
    --display: "Cormorant Garamond", Georgia, serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 0;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select {
    font: inherit;
}

ul,
ol {
    list-style: none;
}

.section-inner {
    width: min(1120px, calc(100% - 48px));
    margin-inline: auto;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), opacity 0.2s;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

.btn-outline {
    background: var(--white);
    border-color: #e0a0d0;
    color: var(--magenta);
}

.btn-outline:hover {
    border-color: var(--pink);
    box-shadow: var(--shadow-soft);
}

.btn-gradient {
    background: var(--grad);
    color: var(--white);
    border: none;
    box-shadow: 0 8px 22px rgba(180, 60, 200, 0.35);
}

.btn-gradient:hover {
    box-shadow: 0 12px 28px rgba(180, 60, 200, 0.45);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
    padding: 14px 20px;
    font-size: 1rem;
}

/* ===== Header ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(232, 228, 240, 0.8);
}

.header-inner {
    width: min(1200px, calc(100% - 40px));
    margin-inline: auto;
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-mark {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.logo-mark svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-tagline {
    font-size: 0.52rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--muted);
    margin-top: 2px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: calc(100vh - var(--header-h));
    min-height: calc(100dvh - var(--header-h));
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
}

.hero-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url("/new-v2/images/hero-banner.png") center right / cover no-repeat;
    transform: scale(1.02);
    animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from {
        transform: scale(1.02);
    }
    to {
        transform: scale(1.08);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(18, 8, 36, 0.78) 0%, rgba(30, 12, 50, 0.55) 42%, rgba(40, 15, 60, 0.35) 70%, rgba(50, 20, 70, 0.25) 100%),
    linear-gradient(to top, rgba(18, 8, 36, 0.55) 0%, transparent 45%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: min(1200px, calc(100% - 48px));
    margin: 48px auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

.hero-copy h1 {
    font-family: var(--font);
    font-size: clamp(2.1rem, 3.6vw, 3.15rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    max-width: 14ch;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
    animation: fadeUp 0.7s var(--ease) both;
}

.hero-copy h1 em {
    display: block;
    font-family: var(--display);
    font-style: italic;
    font-weight: 600;
    font-size: 1.15em;
    background: linear-gradient(90deg, #ffb0d0, #e0b0ff, #c9b0ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.01em;
}

.hero-sub {
    margin-top: 16px;
    font-size: 1.05rem;
    font-weight: 500;
    opacity: 0.92;
    max-width: 36ch;
    animation: fadeUp 0.7s 0.1s var(--ease) both;
}

.hero-copy .btn {
    margin-top: 28px;
    animation: fadeUp 0.7s 0.18s var(--ease) both;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
    margin-top: 28px;
    animation: fadeUp 0.7s 0.26s var(--ease) both;
}

.hero-trust li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    opacity: 0.95;
}

.trust-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    display: grid;
    place-items: center;
    color: #ffd0e8;
}

.trust-icon svg {
    width: 15px;
    height: 15px;
}

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

/* Join card */
.join-card {
    background: var(--white);
    color: var(--text);
    border-radius: 20px;
    padding: 28px 28px 24px;
    box-shadow: var(--shadow-card);
    animation: fadeUp 0.75s 0.15s var(--ease) both;
}

.join-card h2 {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.join-card-sub {
    color: var(--muted);
    font-size: 0.9rem;
    margin-top: 4px;
    margin-bottom: 20px;
}

.join-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text);
}

.field input,
.select-wrap select {
    width: 100%;
    height: 46px;
    padding: 0 14px;
    border: 1.5px solid var(--line);
    border-radius: 12px;
    background: #faf9fc;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.field input:focus,
.select-wrap select:focus {
    border-color: #d0a0e8;
    box-shadow: 0 0 0 3px rgba(196, 77, 255, 0.12);
    background: var(--white);
}

.select-wrap {
    position: relative;
}

.select-wrap::after {
    content: "";
    position: absolute;
    right: 14px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--muted);
    border-bottom: 2px solid var(--muted);
    transform: translateY(-70%) rotate(45deg);
    pointer-events: none;
}

.select-wrap select {
    appearance: none;
    padding-right: 36px;
    cursor: pointer;
}

.password-wrap {
    position: relative;
}

.password-wrap input {
    padding-right: 44px;
}

.password-toggle {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    color: var(--magenta);
    cursor: pointer;
    display: grid;
    place-items: center;
    border-radius: 8px;
    padding: 0;
}

.password-toggle:hover {
    color: var(--purple);
    background: var(--lavender);
}

.password-toggle svg {
    width: 18px;
    height: 18px;
    grid-area: 1 / 1;
    pointer-events: none;
}

/* Default: password hidden → show crossed eye */
.password-toggle .icon-eye {
    display: none;
}

.password-toggle .icon-eye-off {
    display: block;
}

/* Password visible → show open eye */
.password-toggle.is-visible .icon-eye {
    display: block;
}

.password-toggle.is-visible .icon-eye-off {
    display: none;
}

.form-legal {
    text-align: center;
    font-size: 0.72rem;
    color: var(--muted);
    line-height: 1.45;
}

.form-legal a {
    color: var(--magenta);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ===== How It Works ===== */
.how {
    padding: 72px 0 64px;
    background: var(--white);
}

.section-title {
    font-family: var(--display);
    font-size: clamp(1.85rem, 2.8vw, 2.4rem);
    font-weight: 600;
    text-align: center;
    color: var(--navy);
    letter-spacing: -0.01em;
}

.steps {
    margin-top: 48px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
}

.step {
    flex: 1;
    max-width: 200px;
    text-align: center;
    padding: 0 8px;
}

.step-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--grad);
    display: grid;
    place-items: center;
    box-shadow: 0 10px 28px rgba(180, 60, 200, 0.3);
    transition: transform 0.35s var(--ease);
}

.step:hover .step-icon {
    transform: translateY(-4px) scale(1.04);
}

.step-icon svg {
    width: 36px;
    height: 36px;
}

.step h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--navy);
}

.step p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.45;
}

.step-arrow {
    flex: 0 0 auto;
    align-self: center;
    margin-top: -36px;
    color: #d0b8e8;
    opacity: 0.85;
}

.step-arrow svg {
    width: 22px;
    height: 22px;
}

/* ===== Featured Members ===== */
.members {
    padding: 24px 0 72px;
    background: var(--white);
}

.members-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
}

.members-head .section-title {
    text-align: left;
}

.view-more {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--magenta);
    white-space: nowrap;
    transition: opacity 0.2s;
}

.view-more:hover {
    opacity: 0.75;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.member-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 4px 16px rgba(60, 30, 90, 0.06);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    cursor: pointer;
}

.member-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(90, 40, 140, 0.14);
}

.member-photo {
    position: relative;
    aspect-ratio: 3 / 3.6;
    overflow: hidden;
    background: #ece8f4;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.member-card:hover .member-photo img {
    transform: scale(1.05);
}

.online-dot {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2ecc71;
    border: 2px solid white;
    box-shadow: 0 0 0 2px rgba(46, 204, 113, 0.25);
}

.member-info {
    padding: 12px 12px 14px;
}

.member-info h3 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.01em;
}

.member-info h3 span {
    font-weight: 600;
    color: var(--muted);
}

.member-city {
    font-size: 0.75rem;
    color: var(--muted);
    margin: 2px 0 8px;
}

.badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 999px;
    letter-spacing: 0.01em;
}

.badge-baby {
    background: linear-gradient(135deg, #ffe0ec, #f5d0ff);
    color: #c02080;
}

.badge-daddy {
    background: linear-gradient(135deg, #ffe8d4, #ffd4b8);
    color: #c06020;
}

.members-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.members-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd5ea;
}

.members-dots .dot.active {
    background: var(--magenta);
    width: 20px;
    border-radius: 999px;
}

/* ===== Trust bar ===== */
.trust-bar {
    position: relative;
    background: var(--lavender);
    padding: 56px 0;
    overflow: hidden;
}

.trust-bar::before,
.trust-bar::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle at 30% 40%, rgba(180, 100, 220, 0.12) 0 8%, transparent 9%),
    radial-gradient(circle at 70% 60%, rgba(180, 100, 220, 0.1) 0 6%, transparent 7%);
    opacity: 0.9;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M100 180C60 140 30 100 30 70c0-25 20-45 45-45 15 0 28 8 35 20 7-12 20-20 35-20 25 0 45 20 45 45 0 30-30 70-70 110z' fill='none' stroke='%23c9a8e8' stroke-width='1.2' opacity='0.35'/%3E%3Cpath d='M40 160c-20-30-30-55-20-75 8-16 28-22 42-12-4 18 2 40 18 62-14 8-30 15-40 25z' fill='%23d8c0f0' opacity='0.18'/%3E%3Cpath d='M160 40c20 10 35 30 30 55-4 18-20 28-38 25 5-20-2-42-18-60 10-8 18-14 26-20z' fill='%23d8c0f0' opacity='0.16'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.trust-bar::before {
    left: -40px;
    bottom: -40px;
}

.trust-bar::after {
    right: -40px;
    top: -40px;
    transform: scaleX(-1);
}

.trust-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.trust-item {
    text-align: center;
    padding: 8px 12px;
}

.trust-item-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
    display: grid;
    place-items: center;
}

.trust-item-icon svg {
    width: 40px;
    height: 40px;
}

.trust-item h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
}

.trust-item p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.45;
    max-width: 28ch;
    margin-inline: auto;
}

/* ===== Footer ===== */
.site-footer {
    background: #1a1230;
    color: rgba(255, 255, 255, 0.78);
    padding: 28px 20px 32px;
}

.footer-inner {
    width: min(1120px, 100%);
    margin-inline: auto;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4px 0;
    font-size: 0.88rem;
    font-weight: 600;
}

.footer-links a {
    padding: 6px 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #ffb0d8;
}

.footer-sep {
    color: rgba(255, 255, 255, 0.35);
    user-select: none;
    padding: 0 2px;
}

.footer-copy {
    margin-top: 14px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== Mobile bottom nav (hidden on desktop) ===== */
.bottom-nav {
    display: none;
}

/* ===== Tablet ===== */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        margin: 36px auto;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-copy h1 {
        max-width: none;
        margin-inline: auto;
    }

    .hero-copy h1 em {
        display: inline;
    }

    .hero-sub {
        margin-inline: auto;
    }

    .hero-trust {
        justify-content: center;
    }

    .join-card {
        max-width: 420px;
        margin-inline: auto;
        width: 100%;
    }

    .members-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 20px;
    }
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
    body {
        padding-bottom: var(--bottom-nav-h);
    }

    :root {
        --header-h: 60px;
    }

    .header-inner {
        width: calc(100% - 24px);
        gap: 8px;
    }

    .logo-tagline {
        display: none;
    }

    .logo-name {
        font-size: 1.1rem;
    }

    .logo-mark {
        width: 34px;
        height: 34px;
    }

    .header-actions .btn-outline {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .header-actions .btn-gradient {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .hero {
        min-height: auto;
        display: block;
        background: #160c28;
    }

    .hero-media {
        position: relative;
        height: min(78vw, 420px);
        min-height: 300px;
    }

    .hero-bg {
        animation: none;
        transform: none;
        background-position: 72% center;
    }

    .hero-overlay {
        background: linear-gradient(
                180deg,
                rgba(22, 12, 40, 0.12) 0%,
                rgba(22, 12, 40, 0.2) 28%,
                rgba(22, 12, 40, 0.45) 48%,
                rgba(22, 12, 40, 0.72) 68%,
                rgba(22, 12, 40, 0.92) 86%,
                #160c28 100%
        );
    }

    .hero-inner {
        width: 100%;
        margin: -120px 0 0;
        padding: 0 0 28px;
        gap: 0;
        color: var(--text);
        position: relative;
        z-index: 2;
        background: linear-gradient(
                180deg,
                transparent 0%,
                rgba(22, 12, 40, 0.55) 18%,
                #160c28 42%,
                #160c28 100%
        );
    }

    .hero-copy {
        position: relative;
        margin-top: 0;
        z-index: 2;
        padding: 36px 20px 20px;
        color: var(--white);
        text-align: left;
        background: none;
    }

    .hero-copy h1 {
        font-size: 1.65rem;
        max-width: 16ch;
        margin: 0;
    }

    .hero-copy h1 em {
        display: inline;
        font-size: 1.05em;
    }

    .hero-sub {
        font-size: 0.9rem;
        margin-top: 10px;
        opacity: 0.9;
    }

    .hero-copy .btn {
        margin-top: 18px;
        width: 100%;
    }

    .hero-trust {
        justify-content: space-between;
        gap: 8px;
        margin-top: 20px;
        padding: 14px 4px 4px;
    }

    .hero-trust li {
        flex-direction: column;
        text-align: center;
        font-size: 0.68rem;
        gap: 6px;
        flex: 1;
    }

    .trust-icon {
        width: 32px;
        height: 32px;
    }

    .join-card {
        margin: 20px 16px 0;
        max-width: none;
        width: auto;
        padding: 22px 18px 18px;
        border-radius: 16px;
        box-shadow: var(--shadow-soft);
        border: 1px solid var(--line);
    }

    .how {
        padding: 40px 0 32px;
    }

    .section-inner {
        width: calc(100% - 32px);
    }

    .steps {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 4px;
        margin-top: 28px;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .step {
        max-width: none;
        padding: 0 2px;
    }

    .step-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 10px;
    }

    .step-icon svg {
        width: 26px;
        height: 26px;
    }

    .step h3 {
        font-size: 0.82rem;
    }

    .step p {
        font-size: 0.68rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .step-arrow {
        display: none;
    }

    .members {
        padding: 8px 0 40px;
    }

    .members-head {
        margin-bottom: 16px;
    }

    .members-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 12px;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .members-grid::-webkit-scrollbar {
        display: none;
    }

    .member-card {
        flex: 0 0 42%;
        min-width: 140px;
        scroll-snap-align: start;
    }

    .members-dots {
        display: flex;
    }

    .trust-bar {
        padding: 40px 0 48px;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px 12px;
    }

    .trust-item h3 {
        font-size: 0.9rem;
    }

    .trust-item p {
        font-size: 0.75rem;
    }

    .site-footer {
        padding: 24px 16px calc(20px + env(safe-area-inset-bottom, 0px));
    }

    .footer-links {
        font-size: 0.8rem;
    }

    .footer-links a {
        padding: 6px 8px;
    }

    .bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 100;
        height: calc(var(--bottom-nav-h) + env(safe-area-inset-bottom, 0px));
        padding-bottom: env(safe-area-inset-bottom, 0px);
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(10px);
        border-top: 1px solid var(--line);
        justify-content: space-around;
        align-items: center;
    }

    .bottom-nav-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
        padding: 8px 4px;
        font-size: 0.65rem;
        font-weight: 600;
        color: var(--muted);
        transition: color 0.2s;
    }

    .bottom-nav-item:hover,
    .bottom-nav-item:focus {
        color: var(--magenta);
    }

    .bottom-nav-item svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .member-card {
        flex: 0 0 46%;
    }

    .hero-copy h1 {
        font-size: 1.5rem;
    }

    .footer-sep {
        display: none;
    }

    .footer-links {
        gap: 4px 0;
    }

    .footer-links a:not(:last-child)::after {
        content: "丨";
        margin-left: 10px;
        color: rgba(255, 255, 255, 0.35);
        font-weight: 400;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}
