html,
body {
    min-height: 100%;
    overflow-y: auto !important;
    overflow-x: hidden;
}

.desktop-discover-page {
    min-height: 100vh;
    position: relative;
    isolation: isolate;
    background: #fff8fb;
    background: #000;
}

.desktop-discover-page::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at top left, rgba(236, 72, 153, 0.16), transparent 28%),
        radial-gradient(circle at top right, rgba(255, 138, 61, 0.14), transparent 24%),
        linear-gradient(180deg, #120711 0%, #201120 44%, #2b1829 100%);
    background: radial-gradient(circle at top left, rgba(236, 72, 153, 0.16), transparent 28%), radial-gradient(circle at top right, rgba(255, 138, 61, 0.14), transparent 24%), linear-gradient(180deg, #fe187d 0%, #201120 44%, #000000 100%);
}

.desktop-discover-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    padding: 16px 16px 0;
}

.desktop-discover-header-shell {
    width: min(1440px, calc(100vw - 32px));
    margin: 0 auto;
    min-height: 82px;
    padding: 16px 20px;
    border-radius: 22px;
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    background: rgba(11, 16, 32, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.22);
    box-sizing: border-box;
    transition: min-height 0.28s ease, padding 0.28s ease, border-radius 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, transform 0.28s ease;
    transform-origin: top center;
}

.desktop-discover-header.is-scrolled .desktop-discover-header-shell {
    min-height: 64px;
    padding: 10px 16px;
    border-radius: 999px;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.24);
    transform: translateY(-1px);
}

.desktop-discover-header-brand {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    max-width: 220px;
    width: 100%;
    color: #fff;
}

.desktop-discover-header-brand svg {
    display: block;
    width: 100%;
    height: auto;
    max-height: 28px;
    fill: currentColor;
}

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

.desktop-discover-header-link {
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.desktop-discover-header-actions .desktop-discover-header-link {
    min-width: 74px;
    min-height: 38px;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    line-height: 1;
    cursor: pointer;
}

.desktop-discover-header-icon-btn {
    min-width: 38px !important;
    width: 38px;
    margin-left: 6px;
    padding: 0;
}

.desktop-discover-header-search-btn {
    margin-left: 10px;
}

.desktop-discover-header-saved-btn {
    margin-left: 6px;
}

.desktop-discover-header-icon-btn svg {
    width: 16px;
    height: 16px;
    display: block;
}

.desktop-discover-header-link:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    transform: translateY(-1px);
}

.desktop-discover-header-link.primary {
    background: #fff;
    color: #0f172a;
}

.desktop-discover-city-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.36);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.26s ease;
    z-index: 48;
}

.desktop-discover-city-backdrop.is-visible {
    opacity: 1;
}

.desktop-discover-city-drawer {
    position: fixed;
    top: 50%;
    right: 0;
    width: 30dvw;
    height: 85dvh;
    min-width: 360px;
    max-width: 560px;
    padding: 16px;
    box-sizing: border-box;
    transform: translate(100%, -50%);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 49;
}

.desktop-discover-city-drawer.is-open {
    transform: translate(0, -50%);
}

.desktop-discover-city-drawer-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 22px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.56);
    box-shadow: 0 28px 68px rgba(15, 23, 42, 0.24);
    backdrop-filter: blur(22px) saturate(145%);
    -webkit-backdrop-filter: blur(22px) saturate(145%);
    overflow: hidden;
}

.desktop-discover-city-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.desktop-discover-city-head h3 {
    margin: 6px 0 0;
    color: #0f172a;
    font-size: clamp(28px, 2.2vw, 40px);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.desktop-discover-city-close {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.08);
    color: #0f172a;
    cursor: pointer;
}

.desktop-discover-city-close span {
    font-size: 24px;
    line-height: 1;
}

.desktop-discover-city-current {
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 20, 129, 0.08);
    border: 1px solid rgba(255, 20, 129, 0.16);
    display: grid;
    gap: 4px;
}

.desktop-discover-city-current span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(15, 23, 42, 0.56);
}

.desktop-discover-city-current strong {
    color: #0f172a;
    font-size: 22px;
    line-height: 1.04;
}

.desktop-discover-country-tabs {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}

.desktop-discover-country-tabs::-webkit-scrollbar {
    display: none;
}

.desktop-discover-country-tab {
    min-height: 38px;
    padding: 0 14px;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    background: rgba(15, 23, 42, 0.06);
    color: rgba(15, 23, 42, 0.72);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
}

.desktop-discover-country-tab.is-active {
    background: #ff1481;
    color: #fff;
}

.desktop-discover-city-list {
    flex: 1;
    overflow-y: auto;
    display: none;
    align-content: start;
    grid-auto-rows: min-content;
    gap: 10px;
    padding: 0 6px;
}

.desktop-discover-city-list.is-active {
    display: grid;
}

.desktop-discover-city-item {
    padding: 15px 16px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-decoration: none;
    color: #0f172a;
    background: rgba(248, 250, 252, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.92);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0);
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.desktop-discover-city-item:hover {
    transform: translateY(-2px) scale(1.01);
    border-color: rgba(255, 20, 129, 0.24);
    background: linear-gradient(180deg, rgba(255, 244, 249, 0.98) 0%, rgba(255, 238, 246, 0.96) 100%);
    box-shadow: 0 16px 30px rgba(255, 20, 129, 0.12);
}

.desktop-discover-city-item span {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
}

.desktop-discover-city-item strong {
    color: #ff1481;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.desktop-discover-city-item.is-active {
    background: rgba(255, 20, 129, 0.08);
    border-color: rgba(255, 20, 129, 0.24);
}

.desktop-discover-city-empty {
    padding: 18px;
    border-radius: 18px;
    background: rgba(248, 250, 252, 0.9);
    color: rgba(15, 23, 42, 0.72);
}

.desktop-featured-hero-rail {
    padding: 118px 16px 0;
}

.desktop-featured-hero-shell {
    width: min(1440px, calc(100vw - 32px));
    margin: 0 auto;
}

.desktop-discover-shell {
    display: grid;
    grid-template-columns: minmax(320px, 28vw) minmax(0, 1fr);
    gap: 28px;
    min-height: auto;
    padding-top: 24px;
    box-sizing: border-box;
    width: min(1440px, calc(100vw - 32px));
    margin: 0 auto;
    align-items: start;
}

.desktop-discover-bottom-action {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.desktop-discover-sidebar {
    position: sticky;
    top: 118px;
    display: grid;
    gap: 18px;
    align-content: start;
    max-height: none;
    overflow: visible;
    padding-right: 0;
}

.desktop-discover-sidebar-card,
.desktop-discover-side-block,
.desktop-discover-hero,
.desktop-discover-toolbar,
.desktop-discover-evont-section,
.desktop-discover-feed-section,
.desktop-discover-feed-stack {
    /* border-radius: 28px; */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
}

.desktop-discover-sidebar-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    padding: 28px;
    background: linear-gradient(145deg, #140714 0%, #111827 44%, #ff1481 100%);
    color: #fff;
}

.desktop-discover-eyebrow,
.desktop-discover-label {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.desktop-discover-eyebrow {
    color: rgba(255, 255, 255, 0.68);
}

.desktop-weekly-ai-heading {
    display: flex;
    align-items: center;
    gap: 14px;
}

.weekly-ai-title {
    display: flex;
    flex-direction: column;
}

.desktop-weekly-ai-heading .desktop-discover-eyebrow {
    margin-bottom: 4px;
}

.desktop-weekly-ai-heading h2 {
    margin: 0;
    font-size: 27px;
    line-height: 1;
    letter-spacing: -0.035em;
}

.desktop-weekly-ai-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.desktop-weekly-ai-icon svg {
    width: 25px;
    height: 25px;
}

.desktop-weekly-ai-intro {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    line-height: 1.6;
}

.desktop-weekly-ai-trigger {
    width: 100%;
    min-height: 48px;
    margin-top: 20px;
    padding: 0 16px;
    border: 0;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #fff;
    color: #0f172a;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.16s ease, opacity 0.16s ease;
}

.desktop-weekly-ai-trigger:hover:not(:disabled) {
    transform: translateY(-1px);
}

.desktop-weekly-ai-trigger:disabled {
    opacity: 0.64;
    cursor: wait;
}

.desktop-weekly-ai-trigger svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.desktop-weekly-ai-trigger[aria-expanded="true"] svg {
    transform: rotate(90deg);
}

.desktop-weekly-ai-result {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.desktop-weekly-ai-summary {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.65;
    white-space: pre-line;
}

.desktop-weekly-ai-loading {
    display: flex;
    align-items: center;
    gap: 10px;
}

.desktop-weekly-ai-loading[hidden] {
    display: none;
}

.desktop-weekly-ai-loading span {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 999px;
    animation: desktop-weekly-ai-spin 0.8s linear infinite;
}

.desktop-weekly-ai-loading p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
}

.desktop-weekly-ai-events {
    display: grid;
    gap: 7px;
    margin-top: 14px;
}

.desktop-weekly-ai-events a {
    padding: 9px 11px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.09);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.3;
    text-decoration: none;
}

.desktop-weekly-ai-events a:hover {
    background: rgba(255, 255, 255, 0.15);
}

.desktop-weekly-ai-credit {
    display: block;
    margin-top: 13px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.desktop-weather-card {
    background:
        radial-gradient(circle at top right, rgba(96, 165, 250, 0.28), transparent 38%),
        linear-gradient(145deg, #0f172a 0%, #183453 55%, #315f7a 100%);
}

.desktop-weather-icon {
    color: #bfdbfe;
}

.desktop-weather-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 15px;
}

.desktop-weather-metrics[hidden] {
    display: none;
}

.desktop-weather-metrics > div {
    min-width: 0;
    padding: 11px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
}

.desktop-weather-metrics strong,
.desktop-weather-metrics span {
    display: block;
}

.desktop-weather-metrics strong {
    color: #fff;
    font-size: 17px;
    line-height: 1.1;
}

.desktop-weather-metrics span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.desktop-subscriptions-section {
    display: grid;
    gap: 16px;
}

.desktop-subscriptions-section > .desktop-subscriptions-head {
    padding: 0 4px;
}

.desktop-subscriptions-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.desktop-subscriptions-head > div {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.desktop-subscriptions-head .desktop-discover-label {
    margin-bottom: 6px;
}

.desktop-subscriptions-head h2 {
    margin: 0;
    color: #f8fafc;
    font-size: 22px;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.desktop-subscriptions-head > span {
    flex: 0 0 auto;
    min-height: 26px;
    padding: 0 9px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    color: #a1a1aa;
    font-size: 10px;
    font-weight: 800;
}

.desktop-subscriptions-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
}

.desktop-subscription-event {
    position: relative;
    min-width: 0;
    aspect-ratio: 1 / 1;
    padding: 10px;
    /* border: 1px solid rgba(255, 255, 255, 0.10); */
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    overflow: hidden;
    background-color: #1b1b21;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    text-decoration: none;
    transition: transform 0.18s ease, border-color 0.18s ease;
}

.desktop-subscription-event:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.24);
}

.desktop-subscription-event-date {
    align-self: flex-start;
    min-height: 23px;
    padding: 0 8px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: rgba(12, 12, 16, 0.52);
    color: #fff;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.desktop-subscription-event-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.desktop-subscription-event-copy strong {
    display: -webkit-box;
    overflow: hidden;
    color: #fff;
    font-size: 13px;
    line-height: 1.08;
    letter-spacing: -0.02em;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.desktop-subscription-event-copy small {
    display: block;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.70);
    font-size: 9px;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.desktop-subscriptions-empty {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    display: grid;
    justify-items: center;
    background: rgba(255, 255, 255, 0.04);
    text-align: center;
}

.desktop-subscriptions-auth {
    padding: 20px 16px 16px;
    background:
        radial-gradient(circle at top, rgba(255, 20, 129, 0.13), transparent 48%),
        rgba(255, 255, 255, 0.04);
}

.desktop-subscriptions-state-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 13px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 20, 129, 0.10);
    color: #fe187d;
}

.desktop-subscriptions-state-icon svg {
    width: 23px;
    height: 23px;
}

.desktop-subscriptions-empty strong {
    display: block;
    color: #f8fafc;
    font-size: 14px;
    line-height: 1.2;
}

.desktop-subscriptions-empty p {
    margin: 7px 0 0;
    color: #a1a1aa;
    font-size: 12px;
    line-height: 1.5;
}

.desktop-subscriptions-actions {
    width: 100%;
    margin-top: 16px;
    display: flex;
    gap: 8px;
}

.desktop-subscriptions-actions a {
    flex: 1 1 0;
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    text-decoration: none;
    transition: transform 0.16s ease, background 0.16s ease;
}

.desktop-subscriptions-actions a.primary {
    border-color: #fe187d;
    background: #fe187d;
}

.desktop-subscriptions-actions a:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.12);
}

.desktop-subscriptions-actions a.primary:hover {
    background: #e90f71;
}

.desktop-subscriptions-view-all {
    width: 100%;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.16s ease, background 0.16s ease;
}

.desktop-subscriptions-view-all:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.12);
}

.desktop-subscriptions-view-all svg {
    width: 17px;
    height: 17px;
}

.desktop-subscriptions-app-modal-card {
    width: min(620px, 100%);
    justify-items: center;
    text-align: center;
    background:
        radial-gradient(circle at top, rgba(255, 20, 129, 0.16), transparent 42%),
        rgba(18, 18, 22, 0.98);
}

.desktop-subscriptions-app-modal-card .desktop-discover-info-close {
    justify-self: end;
}

.desktop-subscriptions-app-icon {
    width: 62px;
    height: 62px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 20, 129, 0.12);
    color: #fe187d;
}

.desktop-subscriptions-app-icon svg {
    width: 31px;
    height: 31px;
}

.desktop-subscriptions-app-modal-card .desktop-discover-label {
    margin: 4px 0 -4px;
}

.desktop-subscriptions-app-modal-card > p:last-of-type {
    max-width: 52ch;
}

.desktop-subscriptions-store-actions {
    width: min(430px, 100%);
    margin-top: 8px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.desktop-subscriptions-store-actions a {
    min-width: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.desktop-subscriptions-store-actions a:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.34);
}

.desktop-subscriptions-store-actions img {
    display: block;
    width: 100%;
    height: auto;
}

@keyframes desktop-weekly-ai-spin {
    to { transform: rotate(360deg); }
}

.desktop-discover-btn {
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.desktop-discover-btn.primary {
    background: #fff;
    color: #0f172a;
}

.desktop-discover-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.desktop-discover-side-block,
.desktop-discover-hero,
.desktop-discover-toolbar,
.desktop-discover-evont-section,
.desktop-discover-feed-section,
.desktop-discover-feed-stack {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(226, 232, 240, 0.92);
}

.desktop-discover-side-block {
    display: grid;
    gap: 18px;
    padding: 22px;
    align-content: start;
    overflow: hidden;
}

.desktop-discover-side-head {
    display: grid;
    gap: 6px;
    margin: 0;
}

.desktop-discover-side-head h2 {
    margin: 0;
    color: #0f172a;
    font-size: 22px;
    line-height: 1.05;
}

.desktop-discover-label {
    color: #ff1481;
}

.desktop-discover-trending-panel {
    background:
        radial-gradient(circle at top right, rgba(255, 20, 129, 0.10), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 250, 252, 0.96) 100%);
}

.desktop-discover-badge-wrap {
    min-width: 0;
}

.desktop-discover-badge-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.desktop-discover-badge-wrap module.badges {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.desktop-discover-badge-wrap module.badges > a.badge {
    width: 100%;
    display: block;
    border-radius: 14px;
    overflow: hidden;
}

.desktop-discover-badge-wrap module.badges > a.badge img {
    width: 100% !important;
    max-width: 100%;
    display: block;
    box-sizing: border-box;
    padding: 0;
}

.desktop-discover-trending-list {
    display: grid;
    gap: 10px;
}

.desktop-discover-trending-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(226, 232, 240, 0.92);
    background: #fff;
    text-decoration: none;
}

.desktop-discover-trending-rank {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffe0ef;
    color: #ff1481;
    font-size: 12px;
    font-weight: 900;
}

.desktop-discover-trending-copy {
    min-width: 0;
    display: block;
}

.desktop-discover-trending-copy strong {
    display: block;
    color: #0f172a;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.desktop-discover-trending-copy small {
    display: block;
    margin-top: 3px;
    color: #64748b;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.desktop-discover-trending-score {
    color: #0f172a;
    font-size: 13px;
    font-weight: 900;
}

.desktop-discover-main {
    display: grid;
    align-content: start;
    gap: 20px;
    min-width: 0;
    position: relative;
    top: auto;
    max-height: none;
    overflow: visible;
    padding-right: 6px;
}

.desktop-discover-beta-notice {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    border: 1px solid rgba(255, 20, 129, 0.24);
    border-radius: 16px;
    background:
        radial-gradient(circle at top left, rgba(255, 20, 129, 0.15), transparent 34%),
        rgba(18, 18, 22, 0.96);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
    color: #f8fafc;
}

.desktop-discover-beta-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 20, 129, 0.28);
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 20, 129, 0.12);
    color: #ff1481;
}

.desktop-discover-beta-icon svg {
    width: 23px;
    height: 23px;
}

.desktop-discover-beta-notice > div {
    min-width: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 10px;
}

.desktop-discover-beta-badge {
    min-height: 24px;
    padding: 0 9px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: #ff1481;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.desktop-discover-beta-notice strong {
    color: #f8fafc;
    font-size: 15px;
    line-height: 1.3;
}

.desktop-discover-beta-notice p {
    flex-basis: 100%;
    margin: 0;
    color: #a1a1aa;
    font-size: 12px;
    line-height: 1.5;
}

.desktop-notification-banner {
    position: fixed;
    left: 50%;
    bottom: 24px;
    z-index: 1200;
    width: min(760px, calc(100vw - 48px));
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: rgba(18, 18, 22, 0.94);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.52);
    color: #f8fafc;
    opacity: 0;
    transform: translate(-50%, calc(100% + 48px));
    transition: opacity 220ms ease, transform 280ms ease;
    backdrop-filter: blur(24px) saturate(145%);
    -webkit-backdrop-filter: blur(24px) saturate(145%);
}

.desktop-notification-banner.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

.desktop-notification-banner-icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 20, 129, 0.3);
    border-radius: 14px;
    background: rgba(255, 20, 129, 0.13);
    color: #ff1481;
}

.desktop-notification-banner-icon svg {
    width: 24px;
    height: 24px;
}

.desktop-notification-banner-copy {
    min-width: 0;
}

.desktop-notification-banner-copy strong {
    display: block;
    margin-bottom: 3px;
    font-size: 15px;
    line-height: 1.3;
}

.desktop-notification-banner-copy p {
    margin: 0;
    color: #a1a1aa;
    font-size: 12px;
    line-height: 1.45;
}

.desktop-notification-banner-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.desktop-notification-banner-actions button {
    min-height: 42px;
    padding: 0 15px;
    border: 0;
    border-radius: 12px;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.desktop-notification-banner-later {
    background: rgba(255, 255, 255, 0.08);
    color: #d4d4d8;
}

.desktop-notification-banner-enable {
    background: #ff1481;
    color: #fff;
}

.desktop-notification-banner-enable:disabled {
    background: rgba(255, 255, 255, 0.1);
    color: #71717a;
    cursor: not-allowed;
}

@media (max-width: 820px) {
    .desktop-notification-banner {
        bottom: 14px;
        width: calc(100vw - 28px);
        grid-template-columns: auto minmax(0, 1fr);
    }

    .desktop-notification-banner-actions {
        grid-column: 1 / -1;
        justify-content: flex-end;
    }
}

.desktop-discover-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    padding: 24px 26px;
}

.desktop-discover-hero-copy h2 {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1;
    letter-spacing: -0.04em;
    max-width: 18ch;
}

.desktop-discover-hero-copy p:last-child {
    margin: 0;
    max-width: 56ch;
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
}

.desktop-discover-hero-meta {
    display: grid;
    gap: 10px;
    min-width: 180px;
}

.desktop-discover-hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.desktop-discover-meta-card {
    padding: 16px 18px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.9);
}

.desktop-discover-meta-card span {
    display: block;
    color: #64748b;
    font-size: 12px;
    margin-bottom: 6px;
}

.desktop-discover-meta-card strong {
    display: block;
    color: #0f172a;
    font-size: 18px;
}

.desktop-discover-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: end;
    padding: 20px 24px;
}

.desktop-discover-toolbar widget.heading {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0;
}

.desktop-discover-toolbar widget.heading p.broj,
.desktop-discover-toolbar widget.heading element.grad p.grad {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.2;
}

.desktop-discover-toolbar widget.heading element.grad p.grad {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.desktop-discover-grad-icon {
    flex: 0 0 auto;
}

.desktop-discover-date-explorer {
    padding: 20px 26px 26px;
    border: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
    overflow: hidden;
}

.desktop-date-tabs {
    display: flex;
    gap: 10px;
    margin: 18px -4px 20px;
    padding: 4px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
}

.desktop-date-tab {
    position: relative;
    flex: 0 0 104px;
    min-height: 82px;
    padding: 11px 30px 11px 12px;
    border: 1px solid rgba(203, 213, 225, 0.94);
    border-radius: 16px;
    background: #fff;
    color: #475569;
    text-align: left;
    cursor: pointer;
    transition: transform 0.16s ease, color 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}

.desktop-date-tab span,
.desktop-date-tab strong {
    display: block;
}

.desktop-date-tab span {
    overflow: hidden;
    font-size: 11px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.desktop-date-tab strong {
    margin-top: 5px;
    color: #0f172a;
    font-size: 17px;
}

.desktop-date-tab small {
    position: absolute;
    top: 10px;
    right: 9px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    background: #f1f5f9;
    color: #64748b;
    font-size: 10px;
    font-weight: 900;
}

.desktop-date-tab:hover {
    transform: translateY(-1px);
    border-color: rgba(254, 24, 125, 0.42);
}

.desktop-date-tab.is-active {
    border-color: #fe187d;
    background: #fe187d;
    color: rgba(255, 255, 255, 0.84);
}

.desktop-date-tab.is-active strong {
    color: #fff;
}

.desktop-date-tab.is-active small {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.desktop-date-tab:focus-visible {
    outline: 3px solid rgba(254, 24, 125, 0.3);
    outline-offset: 2px;
}

.desktop-date-panel[hidden] {
    display: none;
}

.desktop-date-panel .desktop-discover-evont-empty {
    min-height: 130px;
}

.desktop-regional-events {
    padding: 22px 0 26px;
    border: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
    overflow: hidden;
}

.desktop-regional-events-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    padding: 0 26px 18px;
}

.desktop-regional-events-head > div:first-child {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.desktop-regional-events-head .desktop-discover-label {
    display: block;
    width: 100%;
    margin: 0 0 8px;
}

.desktop-regional-events-head h2 {
    display: block;
    width: 100%;
    margin: 0 0 7px;
    color: #0f172a;
    font-size: clamp(24px, 2vw, 32px);
    line-height: 1;
    letter-spacing: -0.035em;
}

.desktop-regional-events-head > div > p:last-child {
    display: block;
    width: 100%;
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

.desktop-regional-events-controls {
    display: flex;
    gap: 8px;
}

.desktop-regional-events-nav {
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid rgba(203, 213, 225, 0.94);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #0f172a;
    cursor: pointer;
    transition: background 0.16s ease, color 0.16s ease, opacity 0.16s ease;
}

.desktop-regional-events-nav:hover:not(:disabled) {
    background: #0f172a;
    color: #fff;
}

.desktop-regional-events-nav:disabled {
    opacity: 0.35;
    cursor: default;
}

.desktop-regional-events-nav svg {
    width: 18px;
    height: 18px;
}

.desktop-regional-events-viewport {
    padding: 0 26px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}

.desktop-regional-events-track {
    display: flex;
    gap: 18px;
    width: max-content;
}

.desktop-regional-event-card {
    position: relative;
    flex: 0 0 clamp(280px, 27vw, 350px);
    min-height: 430px;
    border-radius: 24px;
    overflow: hidden;
    scroll-snap-align: start;
    background: #172033;
    color: #fff;
    isolation: isolate;
}

.desktop-regional-event-card > img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.desktop-regional-event-card:hover > img {
    transform: scale(1.035);
}

.desktop-regional-event-scrim {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.08) 20%, rgba(15, 23, 42, 0.95) 100%);
}

.desktop-regional-event-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

.desktop-regional-event-badges span,
.desktop-regional-event-status {
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.74);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.desktop-regional-event-badges .featured {
    background: #fe187d;
}

.desktop-regional-event-badges .sponsored {
    background: #f59e0b;
    color: #1f2937;
}

.desktop-regional-event-copy {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px;
}

.desktop-regional-event-status {
    display: inline-flex;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.18);
}

.desktop-regional-event-copy h3 {
    margin: 0 0 10px;
    font-size: clamp(24px, 2.2vw, 32px);
    line-height: 1;
    letter-spacing: -0.04em;
}

.desktop-regional-event-copy p {
    margin: 3px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
}

.desktop-regional-event-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
}

.desktop-regional-event-footer strong {
    font-size: 13px;
}

.desktop-regional-event-footer a {
    flex: 0 0 auto;
    padding: 9px 12px;
    border-radius: 999px;
    background: #fff;
    color: #0f172a;
    font-size: 11px;
    font-weight: 900;
    text-decoration: none;
}

.desktop-discover-toolbar widget.heading h1.main {
    margin: 0;
    color: #0f172a;
    font-size: clamp(28px, 2.6vw, 44px);
    line-height: 0.95;
    letter-spacing: -0.04em;
    font-weight: 900;
}

.desktop-discover-feed {
    display: grid;
    gap: 20px;
}

.desktop-discover-evont-section {
    padding: 20px 26px;
}

.desktop-discover-saved-section {
    background:
        radial-gradient(circle at top left, rgba(255, 20, 129, 0.14), transparent 30%),
        radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.12), transparent 28%),
        radial-gradient(circle at top right, rgba(255, 122, 53, 0.12), transparent 24%),
        linear-gradient(180deg, rgba(26, 14, 31, 0.98) 0%, rgba(43, 20, 44, 0.96) 100%);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 70px rgba(18, 7, 17, 0.32);
}

.desktop-discover-recent-saved-section {
    background:
        radial-gradient(circle at top right, rgba(255, 218, 185, 0.36), transparent 34%),
        radial-gradient(circle at bottom left, rgba(255, 20, 129, 0.14), transparent 30%),
        linear-gradient(180deg, rgba(255, 248, 251, 0.98) 0%, rgba(255, 240, 234, 0.96) 100%);
    border-color: rgba(255, 20, 129, 0.10);
    box-shadow: 0 24px 48px rgba(255, 20, 129, 0.08);
}

.desktop-discover-split-preview {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    grid-template-areas:
        "events trending"
        "ads ads";
    gap: 20px;
    align-items: stretch;
}

.desktop-discover-split-events {
    grid-area: events;
    height: 560px;
    display: flex;
    flex-direction: column;
}

.desktop-discover-split-trending {
    grid-area: trending;
    height: 560px;
}

.desktop-discover-split-side {
    display: grid;
    gap: 20px;
    align-content: start;
    grid-area: ads;
    margin-bottom: 4rem;
}

.desktop-discover-dev-note {
    margin: 4px 0 0;
    color: #ff1481;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.desktop-discover-split-events-list {
    display: grid;
    gap: 14px;
    flex: 1;
    align-content: start;
}

.desktop-discover-split-events-list > .desktop-discover-evont-card.is-hidden {
    display: none;
}

.desktop-discover-split-events .desktop-discover-evont-card {
    min-height: 106px;
}

.desktop-discover-split-events-head-side {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.desktop-discover-split-events-pager {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.desktop-discover-split-events-pager-btn {
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.76);
    color: #0f172a;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    transition: background 0.16s ease, transform 0.16s ease, opacity 0.16s ease;
}

.desktop-discover-split-events-pager-btn svg {
    width: 16px;
    height: 16px;
    display: block;
    flex: 0 0 16px;
}

.desktop-discover-split-events-pager-btn:hover:not(:disabled) {
    background: #fff;
    transform: translateY(-1px);
}

.desktop-discover-split-events-pager-btn:disabled {
    opacity: 0.42;
    cursor: not-allowed;
    background: rgba(226, 232, 240, 0.82);
    color: rgba(15, 23, 42, 0.46);
    transform: none;
}

.desktop-discover-split-ad {
    min-height: 100%;
}

.desktop-discover-split-ad-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.desktop-discover-split-ad-box {
    min-height: 100%;
    padding: 24px;
    border-radius: 24px;
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 10px;
    background:
        radial-gradient(circle at top right, rgba(255, 20, 129, 0.12), transparent 28%),
        linear-gradient(160deg, #ffffff 0%, #fff4f9 100%);
    border: 1px dashed rgba(255, 20, 129, 0.28);
    box-sizing: border-box;
}

.desktop-discover-split-ad-box span {
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: #ffe0ef;
    color: #ff1481;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.desktop-discover-split-ad-box strong {
    color: #0f172a;
    font-size: 26px;
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.desktop-discover-split-ad-box p {
    margin: 0;
    max-width: 28ch;
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
}

.desktop-discover-trending-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.desktop-discover-trending-mini-card {
    position: relative;
    min-height: 148px;
    padding: 14px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    background-color: #1f2937;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.14);
}

.desktop-discover-trending-mini-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.04) 0%, rgba(15, 23, 42, 0.78) 100%);
}

.desktop-discover-trending-mini-card strong,
.desktop-discover-trending-mini-meta {
    position: relative;
    z-index: 1;
}

.desktop-discover-trending-mini-meta {
    width: fit-content;
    min-height: 24px;
    margin-bottom: 8px;
    padding: 0 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.desktop-discover-trending-mini-card strong {
    color: #fff;
    font-size: 15px;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.desktop-discover-evont-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.desktop-discover-evont-head > div:first-child {
    min-width: 0;
}

.desktop-discover-evont-head h3 {
    margin: 0;
    color: #0f172a;
    font-size: 24px;
    line-height: 1;
}

.desktop-discover-evont-head p:last-child {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

.desktop-discover-saved-section .desktop-discover-evont-head h3,
.desktop-discover-saved-section .desktop-discover-evont-head p:last-child {
    color: #fff;
}

.desktop-discover-saved-section .desktop-discover-evont-head p:last-child {
    color: rgba(255, 255, 255, 0.72);
}

.desktop-discover-saved-section .desktop-discover-label {
    color: #ff1481;
}

.desktop-discover-recent-saved-section .desktop-discover-label {
    color: #ff1481;
}

.desktop-discover-recent-saved-section .desktop-discover-evont-head p:last-child {
    color: #7c586b;
}

.desktop-discover-recent-saved-section .desktop-discover-evont-date .time {
    margin-top: 6px;
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
}

.desktop-discover-saved-label-copy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.desktop-discover-saved-label-copy svg {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
}

.desktop-discover-saved-head-side {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
    gap: 12px;
}

.desktop-discover-saved-info-btn {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.18s ease, transform 0.18s ease;
}

.desktop-discover-saved-info-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}

.desktop-discover-evont-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.desktop-nearby-places-footer {
    display: flex;
    justify-content: center;
}

.desktop-nearby-places-logo {
    color: #FFF;
}

.desktop-nearby-places-head p:last-child {
    color: rgba(255, 255, 255, 0.72);
}

.desktop-nearby-places-cta {
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: linear-gradient(135deg, #ff1481 0%, #ff7b54 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: -0.02em;
    border: 1px solid transparent;
    box-shadow: 0 16px 34px rgba(255, 20, 129, 0.18);
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.desktop-discover-weekend-info {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.desktop-discover-weekend-head-side {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.desktop-discover-weekend-info-btn {
    width: 20px;
    height: 20px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.08);
    color: #0f172a;
    cursor: default;
    font-size: 10px;
}

.desktop-discover-weekend-info-bubble {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(4px);
    min-width: 240px;
    max-width: 280px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.92);
    color: #fff;
    font-size: 12px;
    line-height: 1.45;
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    z-index: 3;
}

.desktop-discover-weekend-info:hover .desktop-discover-weekend-info-bubble,
.desktop-discover-weekend-info:focus-within .desktop-discover-weekend-info-bubble {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.desktop-discover-evont-day-separator {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 6px 0 2px;
    color: rgba(15, 23, 42, 0.58);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.desktop-discover-evont-day-separator::before,
.desktop-discover-evont-day-separator::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(15, 23, 42, 0.12);
}

.desktop-discover-evont-empty {
    padding: 22px;
    border-radius: 22px;
    background:
        radial-gradient(circle at top right, rgba(255, 20, 129, 0.08), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(226, 232, 240, 0.92);
}

.desktop-discover-evont-empty strong {
    display: block;
    margin-bottom: 8px;
    color: #0f172a;
    font-size: 18px;
    line-height: 1.05;
}

.desktop-discover-evont-empty p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
}

.desktop-discover-visual-events-section {
    display: grid;
    gap: 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.desktop-discover-visual-events-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.desktop-discover-visual-event-card {
    position: relative;
    min-height: 248px;
    padding: 18px;
    border-radius: 24px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    text-decoration: none;
    background-color: #1f2937;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
}

.desktop-discover-visual-event-views {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 11px;
    font-weight: 800;
}

.desktop-discover-visual-event-views svg {
    width: 14px;
    height: 14px;
    display: block;
    flex: 0 0 14px;
}

.desktop-discover-visual-event-copy {
    display: grid;
    gap: 8px;
}

.desktop-discover-visual-event-date {
    width: fit-content;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 11px;
    font-weight: 800;
}

.desktop-discover-visual-event-copy h4 {
    margin: 0;
    color: #fff;
    font-size: 22px;
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.desktop-discover-visual-event-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 700;
}

.desktop-discover-visual-carousel {
    display: grid;
    gap: 16px;
    margin-top: 22px;
}

.desktop-visual-carousel-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 28px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
    touch-action: pan-x pan-y pinch-zoom;
}

.desktop-visual-carousel-viewport::-webkit-scrollbar {
    display: none;
}

.desktop-visual-carousel-track {
    display: flex;
    gap: 18px;
    width: max-content;
    padding-right: 18px;
}

.desktop-visual-carousel-card {
    position: relative;
    flex: 0 0 min(440px, 54vw);
    width: min(440px, 54vw);
    min-height: 320px;
    padding: 22px;
    border-radius: 26px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    scroll-snap-align: start;
    text-decoration: none;
    background-color: #1f2937;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.18);
}

.desktop-visual-carousel-card .desktop-discover-visual-event-copy h4 {
    font-size: 26px;
}

.desktop-discover-saved-empty {
    padding: 28px;
    border-radius: 24px;
    display: grid;
    gap: 10px;
    background:
        radial-gradient(circle at top right, rgba(255, 20, 129, 0.08), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #fff8fb 100%);
    border: 1px dashed rgba(255, 20, 129, 0.18);
}

.desktop-discover-saved-empty.guest {
    background: linear-gradient(180deg, rgba(19, 12, 28, 0.96) 0%, rgba(39, 20, 43, 0.94) 100%);
    border-color: rgba(255, 255, 255, 0.08);
}

.desktop-discover-saved-empty strong {
    color: #0f172a;
    font-size: 24px;
    line-height: 1.05;
}

.desktop-discover-saved-empty p {
    margin: 0;
    max-width: 62ch;
    color: #64748b;
    line-height: 1.7;
}

.desktop-discover-saved-empty.guest strong,
.desktop-discover-saved-empty.guest p {
    color: #fff;
}

.desktop-discover-saved-empty.guest p {
    color: rgba(255, 255, 255, 0.78);
}

.desktop-discover-saved-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 6px;
}

.desktop-discover-info-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.48);
    opacity: 0;
    transition: opacity 0.24s ease;
    z-index: 31;
}

.desktop-discover-info-backdrop.is-visible {
    opacity: 1;
}

.desktop-discover-info-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    z-index: 32;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
}

.desktop-discover-info-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.desktop-discover-info-card {
    width: min(560px, 100%);
    display: grid;
    gap: 14px;
    padding: 24px;
    border-radius: 28px;
    background: #fff;
    color: #0f172a;
    transform: translateY(18px) scale(0.98);
    transition: transform 0.26s ease;
}

.desktop-discover-info-modal.is-open .desktop-discover-info-card {
    transform: translateY(0) scale(1);
}

.desktop-discover-info-card h3 {
    margin: 0;
    font-size: 28px;
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.desktop-discover-info-card p {
    margin: 0;
    color: #475569;
    line-height: 1.7;
}

.desktop-discover-info-close {
    align-self: flex-end;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 0;
    background: rgba(15, 23, 42, 0.08);
    cursor: pointer;
}

.desktop-discover-evont-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 16px 18px;
    /* border-radius: 22px; */
    border-radius: 16px;
    background:
        radial-gradient(circle at top right, rgba(255, 20, 129, 0.10), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(226, 232, 240, 0.92);
    text-decoration: none;
}

.desktop-discover-evont-separator {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 4px 0 2px;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.desktop-discover-evont-separator span {
    color: #dc2626;
}

.desktop-discover-evont-separator::before,
.desktop-discover-evont-separator::after {
    content: "";
    flex: 1 1 auto;
    height: 1px;
    background: rgba(15, 23, 42, 0.12);
}

.desktop-discover-evont-card.is-high-priority {
    background:
        radial-gradient(circle at top right, rgba(255, 20, 129, 0.16), transparent 28%),
        radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.14), transparent 34%),
        linear-gradient(180deg, #13151a 0%, #090b10 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    /* box-shadow: 0 22px 44px rgba(0, 0, 0, 0.26); */
    min-height: 114px;
}

.desktop-discover-evont-card.is-high-priority .desktop-discover-evont-date .date,
.desktop-discover-evont-card.is-high-priority .desktop-discover-evont-date .day,
.desktop-discover-evont-card.is-high-priority .desktop-discover-evont-body h4,
.desktop-discover-evont-card.is-high-priority .desktop-discover-evont-time strong {
    color: #f8fafc;
}

.desktop-discover-evont-card.is-high-priority .desktop-discover-evont-body p {
    color: rgba(248, 250, 252, 0.72);
}

.desktop-discover-saved-section .desktop-discover-evont-card {
    min-height: 120px;
    grid-template-columns: auto minmax(0, 1fr);
    position: relative;
    background:
        radial-gradient(circle at bottom left, rgba(56, 189, 248, 0.12), transparent 30%),
        radial-gradient(circle at top right, rgba(255, 20, 129, 0.16), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 245, 249, 0.98) 100%);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

.desktop-discover-evont-date {
    display: grid;
    gap: 2px;
    min-width: 72px;
}

.desktop-discover-saved-section .desktop-discover-evont-date {
    padding: 32px 12px;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.05);
}

.desktop-discover-saved-section .desktop-discover-evont-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    min-height: 34px;
    padding: 0;
    border-radius: 999px;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 20, 129, 0.14) 0%, rgba(56, 189, 248, 0.14) 100%);
    color: #ff1481;
    border: 1px solid rgba(255, 20, 129, 0.12);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}

.desktop-discover-saved-section .desktop-discover-evont-tag i {
    font-size: 13px;
    line-height: 1;
}

.desktop-discover-evont-date .date {
    color: #0f172a;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
}

.desktop-discover-evont-date .day {
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.desktop-discover-saved-section .desktop-discover-evont-date .time {
    color: #0f172a;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
}

.desktop-discover-evont-body {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.desktop-discover-evont-tag {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: #ffe0ef;
    color: #ff1481;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.desktop-discover-evont-body h4 {
    margin: 10px 0 4px;
    color: #0f172a;
    font-size: 18px;
    line-height: 1.05;
}

.desktop-discover-evont-body p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

.desktop-discover-evont-body p svg {
    width: 12px;
    height: 12px;
    margin-right: 6px;
    color: #ff1481;
    vertical-align: -1px;
}

.desktop-discover-evont-time strong {
    color: #0f172a;
    font-size: 18px;
    line-height: 1;
}

.desktop-discover-saved-section .desktop-discover-evont-time strong {
    min-width: 56px;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 20, 129, 0.12) 0%, rgba(56, 189, 248, 0.12) 100%);
}

.desktop-discover-saved-section .desktop-discover-evont-time {
    display: none;
}

.desktop-discover-locations-section {
    display: grid;
    gap: 18px;
    margin: 3% 0 0 0;
}

.desktop-discover-locations-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.desktop-discover-locations-footer {
    display: flex;
    justify-content: center;
}

.desktop-discover-locations-footer .desktop-discover-btn.secondary {
    min-width: 220px;
    background: #1f2937;
    border: 1px solid rgba(15, 23, 42, 0.18);
    color: #fff;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.18);
}

.desktop-discover-locations-footer .desktop-discover-btn.secondary:hover {
    background: #111827;
    transform: translateY(-1px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.22);
}

.desktop-discover-location-card {
    min-height: 220px;
    padding: 18px;
    border-radius: 24px;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    box-shadow: 0 20px 46px rgba(15, 23, 42, 0.14);
    transition: box-shadow .18s ease;
}

.desktop-discover-location-card:hover {
    box-shadow: 0 28px 54px rgba(15, 23, 42, 0.18);
}

.desktop-discover-location-copy {
    display: grid;
    gap: 8px;
    max-width: 85%;
}

.desktop-discover-location-kicker {
    display: inline-flex;
    width: max-content;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    align-items: center;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.desktop-discover-location-copy h4 {
    margin: 0;
    color: #fff;
    font-size: 18px;
    line-height: .96;
    font-weight: 600;
    letter-spacing: unset;
}

.desktop-discover-location-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
}

.desktop-discover-location-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
    opacity: 0;
    transform: translateY(10px);
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease, max-height .22s ease;
}

.desktop-discover-location-card:hover .desktop-discover-location-meta {
    opacity: 1;
    transform: translateY(0);
    max-height: 56px;
    pointer-events: auto;
}

.desktop-discover-location-meta span {
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 12px;
    font-weight: 800;
}

.desktop-discover-location-empty {
    min-height: 220px;
    padding: 28px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background: linear-gradient(180deg, rgba(255, 247, 250, .96) 0%, rgba(255, 255, 255, .98) 100%);
    border: 1px dashed rgba(255, 20, 129, .2);
}

.desktop-discover-location-empty strong {
    display: block;
    margin: 0 0 8px;
    color: #0f172a;
    font-size: 24px;
    line-height: 1.05;
}

.desktop-discover-location-empty p {
    margin: 0;
    color: rgba(15, 23, 42, .64);
    line-height: 1.7;
}

.desktop-discover-feed-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.desktop-discover-feed-stack {
    padding: 18px;
}

.desktop-discover-feed-stack > * + * {
    margin-top: 18px;
}

.desktop-discover-feed-section.featured {
    padding: 20px;
}

.desktop-featured-carousel {
    display: grid;
    gap: 16px;
    margin-bottom: 22px;
}

.desktop-featured-carousel-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
}

.desktop-featured-carousel-head h3 {
    margin: 0;
    color: #0f172a;
    font-size: 28px;
    line-height: 1;
}

.desktop-featured-carousel-controls {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.desktop-featured-carousel-btn {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: #0f172a;
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.desktop-featured-carousel-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 28px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
    touch-action: pan-x pan-y pinch-zoom;
}

.desktop-featured-carousel-viewport::-webkit-scrollbar {
    display: none;
}

.desktop-featured-carousel-track {
    display: flex;
    gap: 18px;
    width: max-content;
    padding-right: 18px;
}

.desktop-featured-group-divider {
    flex: 0 0 32px;
    width: 32px;
    height: 560px;
    align-self: stretch;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.desktop-featured-group-divider::before {
    content: "";
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.24) 12%, rgba(255, 20, 129, 0.55) 50%, rgba(255, 255, 255, 0.24) 88%, transparent 100%);
}

.desktop-featured-slide {
    position: relative;
    flex: 0 0 var(--desktop-featured-slide-width, clamp(320px, 28vw, 420px));
    width: var(--desktop-featured-slide-width, clamp(320px, 28vw, 420px));
    height: 560px;
    min-height: 560px;
    padding: 32px;
    border-radius: 28px;
    overflow: hidden;
    box-sizing: border-box;
    scroll-snap-align: start;
    display: block;
    text-decoration: none;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.desktop-featured-slide-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 20%),
        linear-gradient(180deg, rgba(7, 7, 10, 0.04) 28%, rgba(7, 7, 10, 0.5) 62%, rgba(7, 7, 10, 0.94) 100%);
}

.desktop-featured-ad-slide {
    background-color: #24101f;
}

.desktop-featured-ad-badge {
    position: absolute;
    z-index: 2;
    top: 28px;
    left: 28px;
    min-height: 28px;
    padding: 0 11px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: rgba(10, 10, 14, 0.5);
    color: #fff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.desktop-featured-ad-slide .desktop-featured-slide-text {
    display: -webkit-box;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.desktop-featured-slide-copy {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    max-width: 100%;
    color: #fff;
}

.desktop-featured-slide-badges {
    position: absolute;
    top: 28px;
    left: 28px;
    z-index: 1;
    display: grid;
    gap: 12px;
}

.desktop-featured-pin-badge {
    position: absolute;
    z-index: 4;
    top: 28px;
    right: 28px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 14, 0.52);
    color: #fff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.desktop-featured-pin-badge svg {
    width: 19px;
    height: 19px;
    transform: rotate(12deg);
}

.desktop-featured-slide-date-badge,
.desktop-featured-slide-price-badge {
    width: 74px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.18);
}

.desktop-featured-slide-date-badge {
    min-height: 96px;
    padding: 8px 5px;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    color: #fff;
}

.desktop-featured-slide-date-badge strong {
    display: block;
    font-size: 14px;
    line-height: 1;
    font-weight: 900;
    white-space: nowrap;
}

.desktop-featured-slide-date-badge small {
    display: block;
    margin-top: 4px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.desktop-featured-slide-date-badge small.weekday {
    margin-top: 0;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.76);
    letter-spacing: 0.12em;
}

.desktop-featured-slide-date-badge small.time {
    margin-top: 7px;
    font-size: 10px;
    letter-spacing: 0;
    text-transform: none;
}

.desktop-featured-slide-price-badge {
    min-height: 50px;
    background: rgba(255, 20, 129, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    color: #fff;
    font-size: 14px;
    font-weight: 900;
}

.desktop-featured-slide h4 {
    margin: 0 0 12px;
    font-size: clamp(24px, 2vw, 34px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
}

.desktop-random-featured-event-link {
    position: absolute;
    z-index: 2;
    inset: 0;
    border-radius: inherit;
}

.desktop-random-featured-slide .desktop-featured-slide-badges,
.desktop-random-featured-slide .desktop-featured-slide-copy {
    z-index: 3;
    pointer-events: none;
}

.desktop-featured-recommendation-info {
    position: absolute;
    z-index: 4;
    top: 28px;
    right: 28px;
    width: 42px;
    height: 42px;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 14, 0.48);
    color: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.desktop-featured-recommendation-info svg {
    flex: 0 0 17px;
    width: 17px;
    height: 17px;
}

.desktop-featured-recommendation-info:hover,
.desktop-featured-recommendation-info:focus-visible {
    border-color: rgba(255, 20, 129, 0.58);
    background: rgba(255, 20, 129, 0.22);
    color: #fff;
    outline: none;
}

.desktop-featured-recommendation-modal-icon {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 20, 129, 0.28);
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 20, 129, 0.12);
    color: #ff1481;
}

.desktop-featured-recommendation-modal-icon svg {
    width: 25px;
    height: 25px;
}

.desktop-featured-recommendation-event {
    color: #f8fafc;
    font-size: 16px;
    line-height: 1.35;
}

.desktop-featured-slide-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 16px;
    line-height: 1.7;
}

.desktop-featured-slide-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-top: 18px;
}

.desktop-featured-slide-meta span {
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    display: block;
    background: transparent;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}

.desktop-featured-slide-meta .desktop-featured-event-venue {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 700;
}

.desktop-featured-slide-meta .desktop-featured-event-city {
    color: rgba(255, 255, 255, 0.66);
    font-size: 12px;
    font-weight: 600;
}

.desktop-featured-slide-btn {
    margin-top: 20px;
    width: fit-content;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #fff;
    color: #0f172a;
    font-size: 13px;
    font-weight: 800;
}

.desktop-featured-carousel-viewport.is-dragging {
    cursor: grabbing;
}

.desktop-discover-sidebar > a.reklamas[platform="desktop"] {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    margin: 0 !important;
    border-radius: 16px;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.desktop-discover-sidebar > a.reklamas[platform="desktop"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.18);
}

.desktop-discover-sidebar > a.reklamas[platform="desktop"]::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0 0 auto;
    height: 72px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.5) 0%, rgba(15, 23, 42, 0) 100%);
}

.desktop-discover-sidebar > a.reklamas[platform="desktop"]::after {
    content: "Ad";
    position: absolute;
    z-index: 2;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 9px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.42);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    pointer-events: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.desktop-category-showcases {
    display: grid;
    gap: 20px;
}

.desktop-category-section {
    padding: 22px 0 26px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(18, 18, 22, 0.96);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.desktop-category-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    padding: 0 26px 18px;
}

.desktop-category-head > div:first-child {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.desktop-category-head .desktop-discover-label {
    display: block;
    width: 100%;
    margin-bottom: 8px;
}

.desktop-category-head h2 {
    display: block;
    width: 100%;
    margin: 0 0 7px;
    color: #f8fafc;
    font-size: clamp(24px, 2vw, 32px);
    line-height: 1;
    letter-spacing: -0.035em;
}

.desktop-category-head > div:first-child > p:last-child {
    display: block;
    width: 100%;
    margin: 0;
    color: #a1a1aa;
    font-size: 14px;
}

.desktop-category-actions,
.desktop-category-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.desktop-category-actions > a {
    margin-right: 4px;
    color: #f8fafc;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.desktop-category-actions > a:hover {
    color: #fe187d;
}

.desktop-category-controls button {
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(27, 27, 33, 0.98);
    color: #f8fafc;
    cursor: pointer;
    transition: background 0.16s ease, opacity 0.16s ease, transform 0.16s ease;
}

.desktop-category-controls button:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

.desktop-category-controls button:disabled {
    opacity: 0.3;
    cursor: default;
}

.desktop-category-controls svg {
    width: 18px;
    height: 18px;
}

.desktop-category-viewport {
    padding: 0 26px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    cursor: grab;
}

.desktop-category-viewport::-webkit-scrollbar {
    display: none;
}

.desktop-category-viewport.is-dragging {
    cursor: grabbing;
}

.desktop-category-track {
    display: flex;
    gap: 18px;
    width: max-content;
    padding-right: 26px;
}

.desktop-category-card {
    position: relative;
    flex: 0 0 clamp(230px, 24vw, 310px);
    width: clamp(230px, 24vw, 310px);
    aspect-ratio: 4 / 5;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    overflow: hidden;
    scroll-snap-align: start;
    background-color: #1b1b21;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.desktop-category-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.34);
}

.desktop-category-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

.desktop-category-card-kicker {
    align-self: flex-start;
    min-height: 26px;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: rgba(12, 12, 16, 0.48);
    color: #fff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.desktop-category-card-rating,
.desktop-category-card-status {
    flex: 0 0 auto;
    min-height: 26px;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(12, 12, 16, 0.56);
    color: #fff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 10px;
    font-weight: 900;
}

.desktop-category-card-rating > span {
    color: #fbbf24;
}

.desktop-category-card-status {
    background: rgba(255, 255, 255, 0.16);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.desktop-festival-card .desktop-category-card-kicker {
    background: rgba(254, 24, 125, 0.72);
}

.desktop-category-card-copy h3 {
    margin: 0;
    color: #fff;
    font-size: 24px;
    line-height: 1;
    letter-spacing: -0.035em;
}

.desktop-category-card-copy p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    line-height: 1.35;
}

/* Dark surfaces for the black Discover canvas. */
.desktop-discover-page,
.desktop-discover-info-modal {
    --discover-surface: rgba(18, 18, 22, 0.96);
    --discover-surface-raised: rgba(27, 27, 33, 0.98);
    --discover-surface-soft: rgba(255, 255, 255, 0.055);
    --discover-border: rgba(255, 255, 255, 0.10);
    --discover-border-strong: rgba(255, 255, 255, 0.16);
    --discover-text: #f8fafc;
    --discover-text-secondary: #a1a1aa;
}

.desktop-discover-side-block,
.desktop-discover-hero,
.desktop-discover-toolbar,
.desktop-discover-evont-section,
.desktop-discover-feed-section,
.desktop-discover-feed-stack,
.desktop-discover-date-explorer,
.desktop-regional-events {
    background: var(--discover-surface);
    border-color: var(--discover-border);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.desktop-discover-trending-panel {
    background:
        radial-gradient(circle at top right, rgba(255, 20, 129, 0.12), transparent 30%),
        var(--discover-surface);
}

.desktop-discover-recent-saved-section {
    background:
        radial-gradient(circle at top right, rgba(255, 122, 53, 0.12), transparent 34%),
        radial-gradient(circle at bottom left, rgba(255, 20, 129, 0.10), transparent 30%),
        var(--discover-surface);
    border-color: var(--discover-border);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.desktop-discover-side-head h2,
.desktop-discover-hero-copy h2,
.desktop-discover-toolbar widget.heading h1.main,
.desktop-discover-evont-head h3,
.desktop-regional-events-head h2,
.desktop-discover-meta-card strong,
.desktop-discover-trending-copy strong,
.desktop-discover-trending-score,
.desktop-discover-evont-date .date,
.desktop-discover-evont-body h4,
.desktop-discover-evont-time strong,
.desktop-discover-evont-empty strong,
.desktop-discover-saved-empty strong,
.desktop-discover-location-empty strong,
.desktop-discover-split-ad-box strong {
    color: var(--discover-text);
}

.desktop-discover-hero-copy p:last-child,
.desktop-discover-toolbar widget.heading p.broj,
.desktop-discover-toolbar widget.heading element.grad p.grad,
.desktop-discover-evont-head p:last-child,
.desktop-regional-events-head > div > p:last-child,
.desktop-discover-meta-card span,
.desktop-discover-trending-copy small,
.desktop-discover-evont-date .day,
.desktop-discover-evont-body p,
.desktop-discover-evont-empty p,
.desktop-discover-saved-empty p,
.desktop-discover-location-empty p,
.desktop-discover-split-ad-box p,
.desktop-discover-evont-separator,
.desktop-discover-evont-day-separator {
    color: var(--discover-text-secondary);
}

.desktop-discover-meta-card,
.desktop-discover-trending-item,
.desktop-date-tab,
.desktop-discover-evont-card,
.desktop-discover-evont-empty,
.desktop-discover-saved-empty,
.desktop-discover-location-empty,
.desktop-discover-split-ad-box {
    background: var(--discover-surface-raised);
    border-color: var(--discover-border);
}

.desktop-discover-meta-card,
.desktop-discover-trending-item,
.desktop-date-tab,
.desktop-discover-evont-card {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.desktop-date-tab {
    color: var(--discover-text-secondary);
}

.desktop-date-tab strong {
    color: var(--discover-text);
}

.desktop-date-tab small {
    background: rgba(255, 255, 255, 0.08);
    color: var(--discover-text-secondary);
}

.desktop-date-tab.is-active {
    background: #fe187d;
    border-color: #fe187d;
}

.desktop-discover-trending-rank,
.desktop-discover-evont-tag,
.desktop-discover-split-ad-box span {
    background: rgba(255, 20, 129, 0.14);
}

.desktop-regional-events-nav,
.desktop-discover-split-events-pager-btn,
.desktop-discover-weekend-info-btn,
.desktop-discover-info-close {
    background: var(--discover-surface-raised);
    border-color: var(--discover-border-strong);
    color: var(--discover-text);
}

.desktop-regional-events-nav:hover:not(:disabled),
.desktop-discover-split-events-pager-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.desktop-discover-split-events-pager-btn:disabled {
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.34);
}

.desktop-discover-evont-separator::before,
.desktop-discover-evont-separator::after,
.desktop-discover-evont-day-separator::before,
.desktop-discover-evont-day-separator::after {
    background: var(--discover-border);
}

.desktop-discover-saved-section .desktop-discover-evont-card {
    background:
        radial-gradient(circle at top right, rgba(255, 20, 129, 0.12), transparent 30%),
        var(--discover-surface-raised);
    border-color: var(--discover-border);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.desktop-discover-saved-section .desktop-discover-evont-date {
    background: var(--discover-surface-soft);
}

.desktop-discover-saved-section .desktop-discover-evont-date .date,
.desktop-discover-saved-section .desktop-discover-evont-date .day,
.desktop-discover-saved-section .desktop-discover-evont-date .time,
.desktop-discover-saved-section .desktop-discover-evont-body h4,
.desktop-discover-saved-section .desktop-discover-evont-time strong {
    color: var(--discover-text);
}

.desktop-discover-saved-section .desktop-discover-evont-body p,
.desktop-discover-recent-saved-section .desktop-discover-evont-head p:last-child,
.desktop-discover-recent-saved-section .desktop-discover-evont-date .time {
    color: var(--discover-text-secondary);
}

.desktop-discover-city-drawer-inner,
.desktop-discover-info-card {
    background: rgba(18, 18, 22, 0.97);
    border: 1px solid var(--discover-border);
    color: var(--discover-text);
    box-shadow: 0 28px 68px rgba(0, 0, 0, 0.5);
}

.desktop-discover-city-head h3,
.desktop-discover-city-current strong,
.desktop-discover-city-item,
.desktop-discover-info-card h3 {
    color: var(--discover-text);
}

.desktop-discover-city-current span,
.desktop-discover-info-card p,
.desktop-discover-city-empty {
    color: var(--discover-text-secondary);
}

.desktop-discover-city-close,
.desktop-discover-country-tab,
.desktop-discover-city-item,
.desktop-discover-city-empty {
    background: var(--discover-surface-raised);
    border-color: var(--discover-border);
    color: var(--discover-text);
}

.desktop-discover-country-tab {
    color: var(--discover-text-secondary);
}

.desktop-discover-country-tab.is-active {
    background: #ff1481;
    color: #fff;
}

.desktop-discover-city-empty {
    color: var(--discover-text-secondary);
}

.desktop-discover-city-item:hover {
    background: rgba(255, 20, 129, 0.10);
    border-color: rgba(255, 20, 129, 0.36);
}

.desktop-discover-city-item.is-active,
.desktop-discover-city-current {
    background: rgba(255, 20, 129, 0.10);
    border-color: rgba(255, 20, 129, 0.28);
}

.desktop-sidebar-saved-events {
    padding: 20px;
    border: 1px solid var(--discover-border);
    background:
        radial-gradient(circle at top right, rgba(255, 20, 129, 0.12), transparent 34%),
        var(--discover-surface);
}

.desktop-sidebar-saved-events .desktop-discover-label {
    color: #ff1481;
}

.desktop-sidebar-saved-events .desktop-discover-evont-grid {
    grid-template-columns: 1fr;
    gap: 10px;
}

.desktop-sidebar-saved-events .desktop-discover-evont-card {
    grid-template-columns: 58px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 5px 12px;
    padding: 14px;
}

.desktop-sidebar-saved-events .desktop-discover-evont-date {
    grid-row: 1 / span 2;
    min-width: 0;
}

.desktop-sidebar-saved-events .desktop-discover-evont-date .date {
    font-size: 15px;
}

.desktop-sidebar-saved-events .desktop-discover-evont-body h4 {
    margin: 0 0 4px;
    overflow: hidden;
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.desktop-sidebar-saved-events .desktop-discover-evont-body p {
    overflow: hidden;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.desktop-sidebar-saved-events .desktop-discover-evont-time {
    grid-column: 2;
    justify-self: start;
}

.desktop-sidebar-saved-events .desktop-discover-evont-time strong {
    color: #ff1481;
    font-size: 11px;
}

.desktop-sidebar-saved-events .desktop-discover-evont-empty {
    padding: 18px;
    border-radius: 14px;
}

.desktop-sidebar-saved-events .desktop-discover-evont-empty strong {
    font-size: 15px;
}

.desktop-sidebar-saved-events .desktop-discover-evont-empty p {
    font-size: 12px;
    line-height: 1.55;
}

.desktop-related-cities-section {
    display: grid;
    gap: 22px;
    margin-top: 34px;
}

.desktop-related-region-intro {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 24px;
    border: 1px solid rgba(255, 20, 129, 0.24);
    border-radius: 16px;
    background:
        radial-gradient(circle at top left, rgba(255, 20, 129, 0.15), transparent 38%),
        var(--discover-surface);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}

.desktop-related-region-intro > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.desktop-related-region-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 20, 129, 0.3);
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 20, 129, 0.13);
    color: #ff1481;
}

.desktop-related-region-icon svg {
    width: 25px;
    height: 25px;
}

.desktop-related-region-intro .desktop-discover-label {
    color: #ff1481;
}

.desktop-related-region-intro h2 {
    margin: 0;
    color: var(--discover-text);
    font-size: clamp(25px, 2.2vw, 36px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.desktop-related-region-intro div > p:last-child {
    margin: 7px 0 0;
    color: var(--discover-text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

.desktop-related-cities-list {
    display: grid;
    gap: 16px;
}

.desktop-related-city-group {
    padding: 20px;
    border: 1px solid var(--discover-border);
    border-radius: 16px;
    background: var(--discover-surface);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.desktop-related-city-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--discover-text);
    text-decoration: none;
}

.desktop-related-city-head h3 {
    flex: 1 1 auto;
    margin: 0;
    color: inherit;
    font-size: 22px;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.desktop-related-city-head span {
    color: var(--discover-text-secondary);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.18s ease;
}

.desktop-related-city-head svg {
    width: 17px;
    height: 17px;
    color: #ff1481;
    transition: transform 0.18s ease;
}

.desktop-related-city-head:hover span {
    color: var(--discover-text);
}

.desktop-related-city-head:hover svg {
    transform: translateX(3px);
}

.desktop-related-city-events {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.desktop-related-event-card {
    min-width: 0;
    min-height: 104px;
    border: 1px solid var(--discover-border);
    border-radius: 14px;
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    overflow: hidden;
    background: var(--discover-surface-raised);
    color: var(--discover-text);
    text-decoration: none;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.desktop-related-event-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 20, 129, 0.34);
    background: rgba(34, 34, 41, 0.98);
}

.desktop-related-event-card > img,
.desktop-related-event-image-fallback {
    width: 88px;
    height: 100%;
    min-height: 104px;
}

.desktop-related-event-card > img {
    object-fit: cover;
}

.desktop-related-event-image-fallback {
    display: block;
    background:
        radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.24), transparent 24%),
        radial-gradient(circle at 82% 76%, rgba(255, 20, 129, 0.7), transparent 38%),
        linear-gradient(145deg, #ff1481 0%, #6d174f 48%, #17121d 100%);
}

.desktop-related-event-copy {
    min-width: 0;
    padding: 13px 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.desktop-related-event-date {
    margin-bottom: 6px;
    color: #ff1481;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.desktop-related-event-copy strong {
    width: 100%;
    overflow: hidden;
    color: var(--discover-text);
    font-size: 14px;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.desktop-related-event-copy small {
    width: 100%;
    margin-top: 5px;
    overflow: hidden;
    color: var(--discover-text-secondary);
    font-size: 11px;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.carousel-track {
    will-change: transform;
}

@media (max-width: 1360px) {
    .desktop-discover-shell {
        grid-template-columns: 340px minmax(0, 1fr);
        padding: 18px;
    }

    .desktop-discover-feed-grid,
    .desktop-discover-evont-grid,
    .desktop-discover-locations-grid,
    .desktop-discover-visual-events-grid,
    .desktop-discover-split-preview {
        grid-template-columns: 1fr;
    }

    .desktop-featured-slide-copy {
        max-width: 100%;
    }
}

@media (max-width: 1120px) {
    .desktop-discover-city-drawer {
        width: min(100dvw, 420px);
        min-width: 0;
        padding: 10px;
    }

    .desktop-discover-shell {
        grid-template-columns: 1fr;
    }

    .desktop-discover-sidebar {
        position: relative;
        top: auto;
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }

    .desktop-related-region-intro {
        align-items: flex-start;
    }

    .desktop-discover-hero,
    .desktop-discover-toolbar {
        grid-template-columns: 1fr;
    }

    .desktop-featured-carousel-head {
        flex-direction: column;
        align-items: stretch;
    }

    .desktop-featured-slide {
        height: 460px;
        min-height: 460px;
        padding: 24px;
    }

    .desktop-featured-group-divider {
        flex-basis: 24px;
        width: 24px;
        height: 460px;
    }

    .desktop-featured-slide-copy {
        max-width: 100%;
    }

    .desktop-featured-slide-badges,
    .desktop-featured-ad-badge {
        top: 20px;
        left: 20px;
    }

    .desktop-featured-pin-badge {
        top: 20px;
        right: 20px;
    }

    .desktop-featured-recommendation-info {
        top: 20px;
        right: 20px;
    }

    .desktop-discover-main {
        position: relative;
        top: auto;
        max-height: none;
        overflow: visible;
    }
}
