/* ============================================
   ShortLinks — Premium Design System
   ============================================ */

:root {
    --bg: #050816;
    --surface: rgba(15, 23, 42, 0.55);
    --surface-hover: rgba(15, 23, 42, 0.75);
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.18);
    --text: #f1f5f9;
    --text-muted: #94a3b8;
    --accent: #818cf8;
    --accent-bright: #a5b4fc;
    --link: #38bdf8;
    --success: #34d399;
    --error: #f87171;
    --radius-sm: 0.625rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ---- Spline 3D Background ---- */
.spline-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.spline-bg spline-viewer {
    width: calc(100% + 250px);
    height: calc(100% + 80px);
    pointer-events: auto;
    /* allow mouse interaction for 3D follow effect */
}

/* ---- Base ---- */
body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.page-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem 1.5rem;
    pointer-events: none;
    /* let mouse events pass through to Spline */
}

/* Make interactive elements clickable */
.page-wrapper input,
.page-wrapper button,
.page-wrapper a,
.page-wrapper .glass-card,
.page-wrapper .history-item {
    pointer-events: auto;
}

.container {
    width: 100%;
    max-width: 580px;
}

/* ---- Hero / Header ---- */
.hero {
    text-align: center;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.6s ease both;
}

.badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 9999px;
    background: rgba(129, 140, 248, 0.15);
    border: 1px solid rgba(129, 140, 248, 0.25);
    color: var(--accent-bright);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 1.25rem;
}

.hero h1 {
    font-size: clamp(2.75rem, 7vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 0.75rem;
}

.hero h1 .accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--link) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 400;
    max-width: 360px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ---- Glass Card ---- */
.glass-card {
    background: var(--surface);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.03) inset,
        0 20px 40px -12px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
    transition: border-color 0.4s, box-shadow 0.4s;
    animation: fadeUp 0.6s ease 0.1s both;
}

.glass-card:hover {
    border-color: var(--border-hover);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 24px 48px -12px rgba(0, 0, 0, 0.6);
}

/* ---- Input Row ---- */
.input-row {
    margin-bottom: 0.75rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 1rem;
    color: var(--text-muted);
    pointer-events: none;
    flex-shrink: 0;
}

input[type="url"] {
    width: 100%;
    background: rgba(0, 0, 0, 0.35);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.875rem 1rem 0.875rem 2.75rem;
    color: #fff;
    font-size: 0.95rem;
    font-family: var(--font);
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
}

input[type="url"]::placeholder {
    color: rgba(148, 163, 184, 0.6);
}

input[type="url"]:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.15);
}

/* ---- Options Row ---- */
.options-row {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
}

.alias-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.35);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0 0.75rem;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.alias-wrapper:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.15);
}

.alias-prefix {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    user-select: none;
}

#aliasInput {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 0.85rem;
    font-family: var(--font);
    padding: 0.75rem 0.25rem;
    outline: none;
    min-width: 0;
}

#aliasInput::placeholder {
    color: rgba(148, 163, 184, 0.4);
}

/* ---- Shorten Button ---- */
#shortenBtn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #6366f1, #818cf8);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
    white-space: nowrap;
}

#shortenBtn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.35);
    filter: brightness(1.1);
}

#shortenBtn:active {
    transform: translateY(0px) scale(0.98);
}

/* ---- Result Area ---- */
.result-area {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    animation: fadeUp 0.35s ease both;
}

.hidden {
    display: none !important;
}

.result-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.625rem;
}

.short-link-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
}

.short-link-box a {
    flex: 1;
    color: var(--link);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.short-link-box a:hover {
    text-decoration: underline;
}

.copy-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.85rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    font-family: var(--font);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: var(--border-hover);
}

.copy-btn.copied {
    background: rgba(52, 211, 153, 0.15);
    color: var(--success);
    border-color: rgba(52, 211, 153, 0.3);
}

/* ---- History ---- */
.history-section {
    animation: fadeUp 0.5s ease 0.15s both;
}

.section-title {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.history-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.history-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 0.875rem 1rem;
    border-radius: var(--radius-md);
    transition: background 0.2s, border-color 0.2s;
    animation: fadeUp 0.3s ease both;
}

.history-item:hover {
    background: var(--surface-hover);
    border-color: var(--border-hover);
}

.history-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    overflow: hidden;
    min-width: 0;
}

.history-short {
    color: var(--link);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.history-short:hover {
    text-decoration: underline;
}

.history-original {
    color: var(--text-muted);
    font-size: 0.75rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.history-actions {
    display: flex;
    gap: 0.4rem;
    flex-shrink: 0;
}

.icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
}

.icon-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: var(--border-hover);
}

.icon-btn.copied-icon {
    color: var(--success);
    border-color: rgba(52, 211, 153, 0.3);
}

/* ---- Footer ---- */
footer {
    margin-top: auto;
    padding: 2.5rem 0 1rem;
    text-align: center;
    color: rgba(148, 163, 184, 0.35);
    font-size: 0.8rem;
}

/* ---- Toast Notifications ---- */
.notification-container {
    position: fixed;
    top: 1.25rem;
    right: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    z-index: 1000;
}

.toast {
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(12px);
    color: #fff;
    padding: 0.875rem 1.25rem;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--accent);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    animation: slideIn 0.35s ease forwards;
    font-size: 0.875rem;
    max-width: 360px;
}

.toast.error {
    border-color: var(--error);
}

.toast.success {
    border-color: var(--success);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* ---- Animations ---- */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- Responsive ---- */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .options-row {
        flex-direction: column;
    }

    #shortenBtn {
        justify-content: center;
        padding: 0.875rem;
    }

    .glass-card {
        padding: 1.5rem;
    }

    .history-original {
        max-width: 180px;
    }
}

/* ---- Coffee Support Feature ---- */
.coffee-fab {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 1.25rem;
    background: var(--surface);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: #fff;
    font-family: var(--font);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: fadeUp 0.6s ease 0.4s both;
    pointer-events: auto;
}

.coffee-fab:hover {
    background: var(--surface-hover);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(129, 140, 248, 0.25);
}

.coffee-icon {
    color: var(--accent-bright);
    transition: transform 0.3s ease;
}

.coffee-fab:hover .coffee-icon {
    transform: rotate(-10deg) scale(1.1);
}

/* Coffee Overlay */
.coffee-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(2, 6, 23, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    transition: opacity 0.3s ease;
}

/* Coffee Modal */
.coffee-modal {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 440px;
    padding: 2.5rem 2rem;
    position: relative;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 24px 64px -12px rgba(0, 0, 0, 0.8);
    animation: modalZoom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalZoom {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #fff;
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.coffee-badge {
    display: inline-block;
    padding: 0.25rem 0.875rem;
    background: rgba(129, 140, 248, 0.15);
    border: 1px solid rgba(129, 140, 248, 0.2);
    border-radius: 9999px;
    color: var(--accent-bright);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.modal-header h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Coffee Selection */
.coffee-selection {
    margin-bottom: 1.75rem;
}

.selection-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.selection-row {
    display: flex;
    gap: 0.75rem;
}

.coffee-chip {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.75rem 0;
    color: #fff;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.coffee-chip:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--border-hover);
}

.coffee-chip.active {
    background: rgba(129, 140, 248, 0.15);
    border-color: var(--accent);
    color: var(--accent-bright);
    box-shadow: 0 0 16px rgba(129, 140, 248, 0.2);
}

/* Message Writer */
.message-writer {
    margin-bottom: 2rem;
}

.message-writer label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.message-writer textarea {
    width: 100%;
    min-height: 100px;
    background: rgba(0, 0, 0, 0.3);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.875rem 1rem;
    color: #fff;
    font-family: var(--font);
    font-size: 0.95rem;
    resize: none;
    outline: none;
    transition: all 0.25s;
}

.message-writer textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.1);
    background: rgba(0, 0, 0, 0.4);
}

/* Support Button */
.support-submit-btn {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #6366f1, #818cf8);
    color: #fff;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.support-submit-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.1);
    box-shadow: 0 12px 28px rgba(99, 102, 241, 0.4);
}

.support-submit-btn:active {
    transform: scale(0.98);
}

/* Footer Decoration */
.modal-footer-decoration {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0.3;
}

.decor-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--text-muted), transparent);
}

.decor-text {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    white-space: nowrap;
}

/* Custom Amount */
.custom-amount-wrapper {
    margin-top: 1rem;
    position: relative;
    display: flex;
    align-items: center;
    animation: fadeUp 0.3s ease;
}

.currency-prefix {
    position: absolute;
    left: 1rem;
    color: var(--accent-bright);
    font-weight: 700;
    font-size: 1.1rem;
    pointer-events: none;
}

#customAmountInput {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1.5px solid var(--accent);
    border-radius: var(--radius-md);
    padding: 0.875rem 1rem 0.875rem 2.25rem;
    color: #fff;
    font-family: var(--font);
    font-size: 1.1rem;
    font-weight: 700;
    outline: none;
    transition: all 0.25s;
    box-shadow: 0 0 16px rgba(129, 140, 248, 0.1);
}

#customAmountInput:focus {
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 20px rgba(129, 140, 248, 0.2);
}

/* --- Auth FAB (Top Left) --- */
.auth-wrapper {
    position: fixed;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 1000;
}

.auth-fab {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.2rem;
    background: var(--surface);
    backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.auth-fab:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
}

.auth-icon-box {
    width: 32px;
    height: 32px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.6s ease;
}

.auth-fab:hover .auth-icon-box {
    transform: rotate(360deg);
}

.auth-label {
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

/* --- History Promo for Guests --- */
.history-promo {
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px dashed var(--border-color);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.history-promo:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
}

.promo-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.4));
}

.history-promo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.history-promo p {
    color: var(--text-dim);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.promo-btn {
    background: var(--accent-gradient);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 100px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.promo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.5);
    filter: brightness(1.1);
}

/* --- Compliance Footer & Modals --- */
.compliance-footer {
    margin-top: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    color: var(--text-dim);
    font-size: 0.9rem;
    padding-bottom: 2rem;
}

.compliance-footer a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s ease;
}

.compliance-footer a:hover {
    color: var(--accent);
}

.compliance-footer .dot {
    opacity: 0.3;
}

.compliance-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    transition: all 0.4s ease;
}

.compliance-modal {
    width: 100%;
    max-width: 600px;
    padding: 3rem;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.compliance-modal h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.compliance-content {
    color: var(--text-main);
    line-height: 1.7;
}

.compliance-content h3 {
    margin: 1.5rem 0 0.5rem;
    font-size: 1.1rem;
    color: var(--accent);
}

.compliance-content p {
    margin-bottom: 1rem;
    opacity: 0.8;
}

@media (max-width: 640px) {
    .compliance-footer {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 2rem;
    }

    .compliance-modal {
        padding: 2rem;
    }
}

/* Fixes for mobile */
@media (max-width: 480px) {
    .coffee-fab span {
        display: none;
    }

    .coffee-fab {
        padding: 0.75rem;
        border-radius: 9999px;
    }

    .coffee-modal {
        padding: 2rem 1.5rem;
    }
}