body {
    font-family: "Plus Jakarta Sans", sans-serif;
    background-color: #1267d1;
    color: white;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.mask-gradient-right {
    mask-image: linear-gradient(to right, black 85%, transparent 100%);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-in {
    animation: fadeIn 0.5s ease-out;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

header {
    overflow: visible;
}

header > div {
    overflow: visible;
}

/* Blazor error UI — hidden by default, shown by framework on circuit failure */
#blazor-error-ui {
    display: none;
}

#blazor-error-ui a:hover {
    transform: scale(0.95);
}

/* Fix: remove focus outline/border on deal title after page load */
h1:focus,
h1:focus-visible {
    outline: none;
    border: none;
    box-shadow: none;
}

/* Line clamp utilities for description */
.line-clamp-5 {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-8 {
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-12 {
    display: -webkit-box;
    -webkit-line-clamp: 12;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
