/* =============================================
   Eventifa — dark red brand refresh
   Header + footer rules below are global (every
   page). Everything under .home-page only affects
   the homepage body — other pages keep the
   existing light/dark theme untouched.
   ============================================= */

:root {
	--brand-bg: #0b0b10;
	--brand-surface: #131318;
	--brand-border: rgba(255, 255, 255, 0.08);
	--brand-text: #f5f5f7;
	--brand-text-muted: #a0a0ab;
	--brand-accent: #aa251b;
	--brand-accent-hover: #861d15;
}

/* --- Header --- */
.header__content {
	background: rgba(11, 11, 16, 0.85);
	border-color: var(--brand-border);
}

.nav-links-con a {
	color: var(--brand-text-muted);
}

.nav-links-con a:hover {
	background: rgba(255, 255, 255, 0.06);
	color: var(--brand-text);
}

.nav-links-con a.active {
	background: rgba(170, 37, 27, 0.15);
	color: var(--brand-accent);
}

.header__logo a {
	color: var(--brand-text);
}

.theme-toggle,
.header__icon-btn {
	color: var(--brand-text-muted);
}

.theme-toggle:hover,
.header__icon-btn:hover {
	background: rgba(255, 255, 255, 0.06);
	color: var(--brand-text);
}

.header__icon-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
}

.header__signin {
	display: flex;
	align-items: center;
	height: 36px;
	padding: 0 18px;
	border-radius: 8px;
	background: var(--brand-accent);
	color: #fff;
	font-size: 0.85rem;
	font-weight: 600;
	white-space: nowrap;
}

.header__signin:hover {
	background: var(--brand-accent-hover);
	color: #fff;
}

.header__btn span {
	background: var(--brand-text-muted);
}

.header__btn:hover {
	background: rgba(255, 255, 255, 0.06);
}

/* --- Footer --- */
.footer {
	background: var(--brand-bg);
}

.footer-content--columns {
	max-width: 1280px;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
	text-align: left;
	flex-wrap: wrap;
	gap: 40px;
}

.footer-brand {
	max-width: 320px;
}

.footer-brand p {
	color: var(--brand-text-muted);
}

.footer-col {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-col h4 {
	margin: 0 0 4px;
	color: var(--brand-text);
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.footer-col a {
	color: var(--brand-text-muted);
	font-size: 0.9rem;
}

.footer-col a:hover {
	color: var(--brand-accent);
}

.footer-content a {
	color: var(--brand-accent);
}

.footer-social ul {
	justify-content: flex-start;
}

.footer__bottom {
	border-top-color: var(--brand-border);
}

.footer__bottom p {
	color: var(--brand-text-muted);
}

@media (max-width: 700px) {
	.footer-content--columns {
		flex-direction: column;
		text-align: center;
	}
	.footer-brand {
		max-width: 100%;
	}
	.footer-social ul {
		justify-content: center;
	}
}

body:has(.home-page) {
	background: #0b0b10;
}

.home-page {
	--home-bg: #0b0b10;
	--home-surface: #131318;
	--home-border: rgba(255, 255, 255, 0.08);
	--home-text: #f5f5f7;
	--home-text-muted: #a0a0ab;
	--home-accent: #aa251b;
	--home-accent-hover: #861d15;
	--home-accent-soft: rgba(170, 37, 27, 0.15);
	--home-gradient: linear-gradient(120deg, #aa251b 0%, #2b0000 100%);
	background: var(--home-bg);
}

/* --- Hero --- */
.home-hero {
	background: var(--home-bg);
	border-radius: var(--radius-lg);
	padding: 32px 32px 24px;
}

.home-hero__intro {
	max-width: 640px;
	margin-bottom: 20px;
}

.home-badge {
	display: inline-flex;
	align-items: center;
	padding: 8px 16px;
	border-radius: 100px;
	border: 1px solid rgba(170, 37, 27, 0.35);
	background: var(--home-accent-soft);
	color: var(--home-accent);
	font-size: 0.8rem;
	font-weight: 600;
}

.home-badge--light {
	border-color: rgba(255, 255, 255, 0.4);
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
}

.home-hero__title {
	margin: 20px 0 0;
	color: var(--home-text);
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 800;
	line-height: 1.1;
}

.home-hero__title-accent {
	display: block;
	color: var(--home-accent);
}

.home-hero__subtitle {
	margin-top: 16px;
	color: var(--home-text-muted);
	font-size: 1.05rem;
	max-width: 480px;
	line-height: 1.6;
}

.home-hero__search {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.home-hero__search input {
	flex: 1;
	min-width: 220px;
	height: 52px;
	padding: 0 20px;
	border-radius: var(--radius-lg);
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.06);
	color: var(--home-text);
	font-size: 0.95rem;
	outline: none;
}

.home-hero__search input::placeholder {
	color: var(--home-text-muted);
}

.home-hero__search button {
	height: 52px;
	padding: 0 28px;
	border-radius: var(--radius-lg);
	background: var(--home-accent);
	color: #fff;
	font-weight: 600;
	transition: background 0.2s;
}

.home-hero__search button:hover {
	background: var(--home-accent-hover);
}

.home-hero__search select {
	height: 52px;
	padding: 0 16px;
	border-radius: var(--radius-lg);
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.06);
	color: var(--home-text);
	font-size: 0.9rem;
}

.home-hero {
	position: relative;
	background-image: linear-gradient(180deg, rgba(11, 11, 16, 0.75) 0%, rgba(11, 11, 16, 0.96) 75%), url("https://images.unsplash.com/photo-1470229722913-7c0e2dbbafd3?q=80&w=1600&auto=format&fit=crop");
	background-size: cover;
	background-position: center;
}

.home-hero #hero .hero__slide {
	border-radius: var(--radius-lg);
	aspect-ratio: 30/9;
	min-height: 160px;
	max-height: 240px;
	padding: 20px;
}

.home-hero__quick-search {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-top: 16px;
	font-size: 0.85rem;
}

.home-hero__quick-search span {
	color: var(--home-text-muted);
}

.home-hero__quick-search a {
	padding: 6px 14px;
	border-radius: 100px;
	border: 1px solid var(--home-border);
	background: rgba(255, 255, 255, 0.05);
	color: var(--home-text);
}

.home-hero__quick-search a:hover {
	border-color: var(--home-accent);
	color: var(--home-accent);
}

.home-view-all {
	color: var(--home-accent);
	font-weight: 600;
	font-size: 0.9rem;
	white-space: nowrap;
}

/* --- Categories --- */
.home-categories {
	margin-top: 48px;
}

.home-categories__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

@media (min-width: 768px) {
	.home-categories__grid {
		grid-template-columns: repeat(5, 1fr);
	}
}

.home-category-card {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 28px 16px;
	border-radius: var(--radius-lg);
	border: 1px solid var(--home-border);
	background: var(--home-surface);
	transition: border-color 0.2s, transform 0.2s;
}

.home-category-card:hover {
	border-color: var(--home-accent);
	transform: translateY(-2px);
}

.home-category-card {
	flex-direction: column;
	gap: 12px;
}

.home-category-card svg {
	width: 28px;
	height: 28px;
	color: var(--home-accent);
}

.home-category-card h3 {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--home-text);
}

/* --- Section titles + event cards take the dark/pink treatment --- */
.home-page .main__title h1,
.home-page .main__title h2,
.home-page .main__title h3,
.home-page .main-section-header .main__title h2 {
	color: var(--home-text);
}

.home-page .main-section-header .main__title .section-eyebrow {
	color: var(--home-accent);
}

.home-page .main-section-header .main__title h2::before {
	background: var(--home-accent);
}

.home-page .main-section-header {
	border-bottom-color: var(--home-border);
}

.home-page .filter-search {
	background: var(--home-surface);
}

.home-page .filter-search input {
	color: var(--home-text);
}

.home-page .filter-flags::before {
	background: var(--home-border);
}

.home-page .main__load {
	background: var(--home-accent);
}

.home-page .main__load:hover {
	background: var(--home-accent-hover);
}

.home-page .event-card {
	background: var(--home-surface);
	border-color: var(--home-border);
}

.home-page .event-card__title a {
	color: var(--home-text);
}

.home-page .event-card__title a:hover {
	color: var(--home-accent);
}

.home-page .event-card__meta {
	color: var(--home-accent);
	font-weight: 600;
}

.home-page .event-card__location {
	color: var(--home-text-muted);
}

.home-page .event-card__price {
	display: inline-flex;
	align-self: flex-start;
	color: var(--home-accent);
	background: var(--home-accent-soft);
	padding: 4px 10px;
	border-radius: 100px;
	font-weight: 700;
	font-size: 0.85rem;
	margin: 0;
}

.home-page .event-card__cta {
	background: var(--home-accent);
	color: #fff;
}

.home-page .event-card__cta:hover {
	background: var(--home-accent-hover);
	color: #fff;
}

.home-page .featured-ribbon {
	background: var(--home-accent);
}

.home-page .event-card__coming-soon-ribbon {
	background: var(--warning);
}

.home-page .event-card__media {
	position: relative;
}

.event-card__sold-overlay {
	position: absolute;
	inset: 0;
	z-index: 4;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(var(--primary-rgb), 0.55);
}

.event-card__sold-overlay span {
	background: rgba(0, 0, 0, 0.65);
	color: #fff;
	padding: 6px 16px;
	border-radius: 100px;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.home-page .event-card__fav {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.45);
	color: #fff;
	backdrop-filter: blur(4px);
}

.home-page .event-card__fav svg {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
}

.home-page .event-card__fav.is-active {
	color: var(--home-accent);
}

.home-page .event-card__fav.is-active svg {
	fill: currentColor;
	stroke: none;
}

.home-page .event-card__body-row {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}

.home-page .event-card__day-badge {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	border-radius: var(--radius-md);
	background: var(--home-accent-soft);
	color: var(--home-accent);
}

.home-page .event-card__day-badge span:first-child {
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.5px;
}

.home-page .event-card__day-badge span:last-child {
	font-size: 1.1rem;
	font-weight: 800;
	line-height: 1.1;
}

.home-page .event-card__body-text {
	flex: 1;
	min-width: 0;
}

/* --- Spotlight banner (real featured event) --- */
.home-spotlight {
	margin-top: 48px;
}

.home-spotlight__card {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: 360px;
	border-radius: 32px;
	overflow: hidden;
	background: var(--home-gradient);
	background-size: cover;
	background-position: center;
	padding: 48px;
}

.home-spotlight__card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.home-spotlight__content {
	position: relative;
	z-index: 1;
	max-width: 520px;
}

.home-spotlight__title {
	margin: 16px 0 8px;
	color: #fff;
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	font-weight: 800;
	line-height: 1.15;
}

.home-spotlight__meta {
	color: rgba(255, 255, 255, 0.85);
	font-size: 1rem;
}

.home-spotlight__details {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 8px;
}

.home-spotlight__pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border-radius: 100px;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	font-size: 0.85rem;
}

.home-spotlight__pill svg {
	width: 16px;
	height: 16px;
}

.home-spotlight__cta {
	display: inline-flex;
	margin-top: 24px;
	padding: 14px 28px;
	border-radius: var(--radius-lg);
	background: #fff;
	color: #111;
	font-weight: 700;
}

/* --- Top organizers --- */
.home-organizers {
	margin-top: 48px;
}

.home-organizers__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

@media (min-width: 768px) {
	.home-organizers__grid {
		grid-template-columns: repeat(6, 1fr);
	}
}

.home-organizer-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 12px;
}

.home-organizer-card img {
	width: 88px;
	height: 88px;
	border-radius: 50%;
	object-fit: cover;
	border: 1px solid var(--home-border);
}

.home-organizer-card h3 {
	margin: 0;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--home-text);
}

.home-organizer-card__count {
	font-size: 0.8rem;
	color: var(--home-text-muted);
}

/* --- Newsletter --- */
.home-newsletter {
	margin-top: 48px;
	margin-bottom: 24px;
}

.home-newsletter__card {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	border-radius: 24px;
	padding: 40px;
	background: linear-gradient(120deg, #2b0000 0%, #1a0000 100%);
}

.home-newsletter__text {
	display: flex;
	align-items: center;
	gap: 20px;
}

.home-newsletter__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	border-radius: var(--radius-md);
	background: var(--home-accent-soft);
	color: var(--home-accent);
}

.home-newsletter__icon svg {
	width: 22px;
	height: 22px;
}

.home-newsletter__card h2 {
	margin: 0;
	color: var(--home-text);
	font-size: 1.75rem;
	font-weight: 700;
}

.home-newsletter__card p {
	margin: 8px 0 0;
	color: var(--home-text-muted);
}

.home-newsletter__form {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.home-newsletter__form input {
	min-width: 220px;
	height: 52px;
	padding: 0 20px;
	border-radius: var(--radius-lg);
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(0, 0, 0, 0.25);
	color: var(--home-text);
}

.home-newsletter__form button {
	height: 52px;
	padding: 0 28px;
	border-radius: var(--radius-lg);
	background: var(--home-accent);
	color: #fff;
	font-weight: 600;
}

.home-newsletter__form button:hover {
	background: var(--home-accent-hover);
}

/* --- Similar Events (single event page) --- */
.similar-events {
	margin-top: 48px;
}

.similar-events h2 {
	margin-bottom: 20px;
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--text);
}

.events-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

@media (max-width: 900px) {
	.events-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.events-grid {
		grid-template-columns: 1fr;
	}
}

.similar-events .event-card {
	position: relative;
	display: block;
	margin-bottom: 0;
}

.similar-events .event-card img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	display: block;
}

.similar-events .event-info {
	padding: 16px;
	font-weight: 600;
	color: var(--text);
}

.similar-events .event-card__badge {
	position: absolute;
	top: 12px;
	right: 12px;
	padding: 4px 10px;
	border-radius: 6px;
	background: var(--primary);
	color: #fff;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* --- Persistent sidebar nav on desktop (replaces top nav links) --- */
.sidebar {
	background: var(--brand-bg);
	border-right-color: var(--brand-border);
}

.sidebar__logo {
	border-bottom-color: var(--brand-border);
}

.sidebar__nav-link {
	color: var(--brand-text-muted);
}

.sidebar__nav-link svg *[fill] {
	fill: var(--brand-text-muted);
}

.sidebar__nav-link:hover {
	background: rgba(255, 255, 255, 0.06);
	color: var(--brand-text);
}

.sidebar__nav-link:hover svg *[fill] {
	fill: var(--brand-text);
}

.sidebar__nav-link--active {
	background: rgba(170, 37, 27, 0.2);
	color: var(--brand-accent);
}

.sidebar__nav-link--active svg *[fill] {
	fill: var(--brand-accent);
}

@media (min-width: 1200px) {
	.sidebar {
		transform: none;
		z-index: 100;
	}

	.nav-links-con {
		display: none;
	}

	.header__logo {
		display: none;
	}

	.header__content {
		margin-left: 280px;
		max-width: 1280px;
		justify-content: flex-end;
	}

	.main {
		margin: 104px 0 0 280px;
		max-width: 1280px;
		padding-right: 24px;
	}

	.footer {
		margin-left: 280px;
	}
}

/* --- Event details page: forced dark glass theme ---
   Defined on body (not .event-page) so the booking-sheet — which the
   modal's inert-trapping JS requires to stay a direct sibling of .main,
   not nested inside .event-page — still inherits these variables. */
body:has(.event-page) {
	background: #0d0d12;
	--bg: #0d0d12;
	--bg-muted: #1c1c23;
	--bg-elevated: #1e1e2a;
	--bg-glass: rgba(20, 20, 30, 0.55);
	--text: #f5f5f7;
	--text-secondary: #98989d;
	--text-muted: #6e6e73;
	--text-inverse: #0d0d12;
	--border: #2c2c32;
	--border-subtle: #222228;
	--sheet-bg: #1a1a25;
	--sheet-elevated: #222230;
	--sheet-text: #f5f5f7;
	--sheet-text-muted: #9090a0;
	--sheet-border: #333345;
	--sheet-border-subtle: #2a2a3a;
	--sheet-control-bg: #252535;
	--sheet-close-bg: #2a2a3a;
	--sheet-close-color: #ccc;
	--step-active: var(--primary);
	--step-done: var(--success);
	--step-inactive: #3a3a48;
}

.event-page {
	background: var(--bg);
}

.event-page .single-hero-wrap {
	border-radius: 24px;
	margin-top: 16px;
}

.event-page .single-hero-img {
	min-height: 420px;
	border-radius: 24px;
}

.event-page .single-hero-overlay {
	background: linear-gradient(180deg, rgba(13, 13, 18, 0) 0%, rgba(13, 13, 18, 0.1) 45%, rgba(13, 13, 18, 0.55) 75%, #0d0d12 100%);
	border-radius: 24px;
}

@media (min-width: 1200px) {
	.event-page .single-hero-wrap {
		position: relative;
		left: 50%;
		width: 100vw;
		transform: translateX(-50%);
		margin-left: 0;
		margin-right: 0;
		border-radius: 0;
	}

	.event-page .single-hero-img,
	.event-page .single-hero-overlay {
		border-radius: 0;
	}
}

.event-page .glass-card {
	background: linear-gradient(180deg, rgba(20, 20, 30, 0.95), rgba(10, 10, 15, 0.95));
	backdrop-filter: blur(20px);
	border: 1px solid var(--border);
	padding: 24px;
	border-radius: 24px;
	margin-top: 24px;
}

/* --- Venue showcase --- */
.venue-section {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	margin-top: 24px;
}

@media (min-width: 900px) {
	.venue-section {
		grid-template-columns: 500px 1fr;
	}
}

.venue-section img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	border-radius: 20px;
	display: block;
}

.venue-section__info {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 24px;
	border-radius: 20px;
	overflow: hidden;
	background-color: #11151c;
}

.venue-section__info h2 {
	margin: 0;
	color: var(--text);
	font-size: 1.5rem;
	font-weight: 700;
}

.venue-section__name {
	margin: 12px 0 0;
	color: var(--text-secondary);
	font-size: 1rem;
	line-height: 1.6;
}

.venue-section__description {
	margin: 12px 0 0;
	color: var(--text-secondary);
	font-size: 0.9rem;
	line-height: 1.6;
	opacity: 0.85;
}

/* --- Smaller event cards on home page --- */
.home-page .event-card__media img {
	aspect-ratio: 4/3;
}

.home-page .event-card__body {
	padding: 12px;
	gap: 6px;
}

.home-page .event-card__title a {
	font-size: 0.95rem;
}

.home-page .event-card__meta,
.home-page .event-card__location {
	font-size: 0.78rem;
}

.home-page .event-card__cta {
	height: 34px;
	font-size: 0.78rem;
}

.home-page .event-card__day-badge {
	width: 42px;
	height: 42px;
}

.home-page .event-card__day-badge span:last-child {
	font-size: 0.95rem;
}

/* --- Flip-card countdown timer --- */
.counter .counter-boxes {
	gap: 12px;
}

.flip-unit {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.flip-card {
	position: relative;
	width: 64px;
	height: 64px;
	perspective: 300px;
}

@media (min-width: 768px) {
	.flip-card {
		width: 76px;
		height: 76px;
	}
}

.flip-card__face {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 800;
	font-family: var(--font-mono, monospace);
	color: var(--text);
	background: linear-gradient(180deg, var(--bg-elevated), var(--bg-muted));
	border: 1px solid var(--border);
	border-radius: 10px;
	backface-visibility: hidden;
	transition: transform 0.6s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

@media (min-width: 768px) {
	.flip-card__face {
		font-size: 1.85rem;
	}
}

.flip-card__face--front {
	transform: rotateX(0deg);
	z-index: 2;
}

.flip-card__face--back {
	transform: rotateX(180deg);
}

.flip-card.is-flipping .flip-card__face--front {
	transform: rotateX(-180deg);
}

.flip-card.is-flipping .flip-card__face--back {
	transform: rotateX(0deg);
}

.flip-card.is-resetting .flip-card__face {
	transition: none;
}

.flip-card::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	height: 1px;
	background: rgba(0, 0, 0, 0.35);
	z-index: 3;
	pointer-events: none;
}

.flip-unit__label {
	font-size: 0.65rem;
	font-weight: 600;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* --- Event meta row as pill cards --- */
.event-page .article__meta {
	flex-direction: row;
	flex-wrap: wrap;
	gap: 10px;
}

.event-page .article__place,
.event-page .article__date {
	padding: 8px 14px;
	border-radius: 100px;
	background: var(--bg-elevated);
	border: 1px solid var(--border);
	font-size: 0.85rem;
	color: var(--text-secondary);
}

.event-page .article__place:hover {
	border-color: var(--primary);
	color: var(--text-secondary);
}

/* --- Teaser video --- */
.teaser-video {
	margin-top: 24px;
}

.teaser-video h2 {
	margin: 0 0 16px;
	color: var(--text);
	font-size: 1.5rem;
	font-weight: 700;
}

.teaser-video__frame {
	position: relative;
	width: 100%;
	max-width: 480px;
	aspect-ratio: 16 / 9;
	border-radius: 16px;
	overflow: hidden;
}

.teaser-video__frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* --- Sponsors --- */
.sponsors-section__grid {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 12px;
}

.sponsors-section__item {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px 24px;
	border-radius: 14px;
	background: var(--bg-elevated);
	border: 1px solid var(--border);
	transition: transform 0.2s ease, border-color 0.2s ease;
}

a.sponsors-section__item:hover {
	transform: translateY(-2px);
	border-color: var(--primary);
}

.sponsors-section__logo {
	max-height: 48px;
	max-width: 160px;
	width: auto;
	object-fit: contain;
}

/* --- Coming soon / Notify me --- */
.coming-soon-card {
	margin: 16px 0;
	padding: 28px;
	border-radius: 20px;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
	max-width: 560px;
}

.coming-soon-card__badge {
	display: inline-flex;
	padding: 6px 14px;
	border-radius: 100px;
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.coming-soon-card__text {
	margin: 14px 0 18px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.95rem;
	line-height: 1.5;
}

.notify-me-form {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.notify-me-form input {
	height: 44px;
	min-width: 220px;
	padding: 0 16px;
	border-radius: var(--radius-md);
	border: 1px solid rgba(255, 255, 255, 0.3);
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}

.notify-me-form input::placeholder {
	color: rgba(255, 255, 255, 0.7);
}

.coming-soon-card .hero__btn--primary {
	background: #fff;
	color: var(--primary);
}

.coming-soon-card .hero__btn--primary:hover {
	background: rgba(255, 255, 255, 0.9);
}

/* --- Share modal --- */
.share-modal-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 1100;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
}

.share-modal-backdrop.is-open {
	opacity: 1;
	pointer-events: auto;
}

.share-modal {
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 100%);
	width: 100%;
	max-width: 420px;
	background: var(--bg-elevated);
	border-radius: 20px 20px 0 0;
	z-index: 1101;
	transition: transform 0.25s ease;
	box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.3);
}

.share-modal.is-open {
	transform: translate(-50%, 0);
}

@media (min-width: 600px) {
	.share-modal {
		bottom: auto;
		top: 50%;
		transform: translate(-50%, -40%);
		border-radius: 20px;
		opacity: 0;
		pointer-events: none;
	}

	.share-modal.is-open {
		top: 50%;
		transform: translate(-50%, -50%);
		opacity: 1;
		pointer-events: auto;
	}
}

.share-modal__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 20px 12px;
}

.share-modal__header h3 {
	margin: 0;
	color: var(--text);
	font-size: 1.1rem;
	font-weight: 700;
}

.share-modal__close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	color: var(--text-secondary);
	background: var(--bg-muted);
}

.share-modal__close:hover {
	color: var(--text);
}

.share-modal__body {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 8px 16px 24px;
}

.share-modal__option {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	border-radius: 12px;
	background: var(--bg-muted);
	color: var(--text);
	font-weight: 600;
	font-size: 0.95rem;
	width: 100%;
	border: none;
	text-align: left;
	cursor: pointer;
}

.share-modal__option:hover {
	opacity: 0.85;
}

.share-modal__option--whatsapp svg {
	color: #25d366;
}

.share-modal__option--telegram svg {
	color: #229ed9;
}

.share-modal__option--copy svg {
	color: var(--primary);
}
