:root {
	--red: #d71920;
	--red-dark: #9f1117;
	--navy: #07111f;
	--navy-2: #0d1b2d;
	--blue: #164e78;
	--court: #d9a15b;
	--white: #fff;
	--text: #102033;
	--muted: #64748b;
	--line: rgba(255,255,255,.18);
}
* { box-sizing: border-box; }
html {
	scroll-behavior: smooth;
	height: 100%;
}
body {
	margin: 0;
	padding: 0;
	min-height: 100%;
	background: #eef2f6;
	color: var(--text);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
	"Hiragino Kaku Gothic ProN", "Hiragino Sans",
	"Yu Gothic", "Meiryo", sans-serif;
	line-height: 1.7;
}
a {
	color: inherit;
	text-decoration: none;
	transition: .25s ease;
}
img {
	max-width: 100%;
	height: auto;
	display: block;
}
.handballer-photo {
	display: block;
	width: 100%;
	max-width: 700px;
	height: auto;
	margin: 25px auto 0;
	border-radius: 8px;
}
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background: rgba(7,17,31,.94);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 3px solid var(--red);
	box-shadow: 0 8px 25px rgba(0,0,0,.2);
}
.header-inner {
	width: min(1200px, calc(100% - 30px));
	min-height: 74px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.logo {
	font-size: 21px;
	font-weight: 950;
	color: var(--white);
	letter-spacing: .04em;
	display: flex;
	align-items: center;
	gap: 7px;
	flex-shrink: 0;
}
.logo::before {
	content: "★";
	color: var(--red);
	font-size: 14px;
}
.logo span { color: var(--red); }
nav {
	display: flex;
	align-items: center;
	gap: 25px;
}
.nav-links {
	display: flex;
	gap: 20px;
}
.nav-links a {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 88px;
	padding: 9px 12px 10px;
	font-size: 12px;
	font-weight: 950;
	color: #f8fafc;
	letter-spacing: .16em;
	text-shadow: 0 2px 12px rgba(0,0,0,.45);
	border: 1px solid rgba(255,255,255,.10);
	border-radius: 4px;
	background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
	box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 4px 14px rgba(0,0,0,.12);
	overflow: hidden;
	transition: color .25s ease, border-color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.nav-links a::before {
	content: attr(data-nav-number);
	position: absolute;
	left: 8px;
	top: 2px;
	font-size: 7px;
	font-weight: 900;
	letter-spacing: .04em;
	color: var(--red);
	line-height: 1;
}
.nav-links a::after {
	content: "";
	position: absolute;
	left: 10px;
	right: 10px;
	bottom: 5px;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--red), transparent);
	transform: scaleX(.35);
	transform-origin: center;
	transition: transform .25s ease, box-shadow .25s ease;
}
.nav-links a:hover,
.nav-links a:focus-visible {
	outline: 2px solid #d71920 !important;
	outline-offset: 2px;
}
.nav-links a:hover::after,
.nav-links a:focus-visible::after {
	transform: scaleX(1);
	box-shadow: 0 0 9px rgba(215,25,32,.75);
}
	@keyframes navAttention {
	0%, 72%, 100% {
		border-color: rgba(255,255,255,.10);
		box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 4px 14px rgba(0,0,0,.12);
		text-shadow: 0 2px 12px rgba(0,0,0,.45);
	}
	76%, 84% {
		border-color: rgba(215,25,32,.95);
		box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 0 22px rgba(215,25,32,.42);
		text-shadow: 0 0 12px rgba(215,25,32,.85);
	}
}
.nav-links a { animation: navAttention 1.2s ease-in-out infinite; }
.nav-links a:nth-child(2) { animation-delay: 0.4s; }
.nav-links a:nth-child(3) { animation-delay: 0.8s; }
.nav-links a:hover,
.nav-links a:focus-visible {
	opacity: 0.8;
}
.nav-links a::after { animation: navLine 1.2s ease-in-out infinite; }
.nav-links a:nth-child(2)::after { animation-delay: 0.4s; }
.nav-links a:nth-child(3)::after { animation-delay: 0.8s; }
	@keyframes navLine {
	0%, 70%, 100% { opacity: .35; transform: scaleX(.35); }
	76%, 84% { opacity: 1; transform: scaleX(1); box-shadow: 0 0 10px rgba(215,25,32,.9); }
}
@media (prefers-reduced-motion: reduce) {
	.nav-links a, .nav-links a::after { animation: none; }
}
.nav-links a:focus-visible { outline: 2px solid rgba(215,25,32,.75); outline-offset: 3px; }
.nav-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}
#videoChatButton {
	padding: 8px 14px;
	font-size: 12px;
	font-weight: 850;
	cursor: pointer;
	border-radius: 5px;
	border: 1px solid rgba(255,255,255,.12);
	background: var(--red);
	color: var(--white);
	box-shadow: 0 5px 15px rgba(215,25,32,.35);
	white-space: nowrap;
}
#videoChatButton:hover:not(:disabled) {
	background: #ef1b24;
	transform: translateY(-1px);
}
#videoChatButton:disabled {
	background: #475569;
	cursor: not-allowed;
	box-shadow: none;
}
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 125px 20px 70px;
	color: #fff;
	position: relative;
	overflow: hidden;
	background:
	radial-gradient(circle at 78% 42%, rgba(215,25,32,.22), transparent 25%),
	linear-gradient(135deg, #050b14 0%, #0b1b2d 52%, #102b43 100%);
}
.hero::before {
	content: "";
	position: absolute;
	width: 760px;
	height: 760px;
	border: 2px solid rgba(255,255,255,.13);
	border-radius: 50%;
	right: -270px;
	top: 50%;
	transform: translateY(-50%);
	box-shadow:
	0 0 0 85px transparent,
	0 0 0 87px rgba(255,255,255,.055),
	0 0 0 185px transparent,
	0 0 0 187px rgba(255,255,255,.045);
}
.hero::after {
	content: "";
	position: absolute;
	left: -90px;
	bottom: -160px;
	width: 520px;
	height: 520px;
	border: 2px solid rgba(215,25,32,.22);
	border-radius: 50%;
	box-shadow: 0 0 0 90px rgba(215,25,32,.035);
}
.hero-inner {
	width: min(900px, 100%);
	text-align: center;
	position: relative;
	z-index: 2;
}
.hero-label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
	padding: 6px 14px;
	background: rgba(215,25,32,.14);
	border-left: 5px solid var(--red);
	border-right: 1px solid rgba(215,25,32,.35);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: .17em;
	color: #fecaca;
}
.hero-label::before {
	content: "DEAF";
	color: var(--red);
	font-size: 11px;
}
.hero h1 {
	margin: 0;
	font-size: clamp(42px, 8vw, 82px);
	line-height: 1.02;
	font-weight: 950;
	letter-spacing: -.035em;
	text-shadow: 0 8px 30px rgba(0,0,0,.3);
}
.hero h1 span {
	color: var(--red);
	text-shadow: 0 0 25px rgba(215,25,32,.35);
}
.hero-description {
	max-width: 650px;
	margin: 25px auto 0;
	font-size: 16px;
	color: #b9c7d6;
	text-align: left;
}
.hero-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 32px;
	padding: 14px 42px;
	border-radius: 5px;
	background: var(--red);
	color: #fff;
	font-weight: 850;
	letter-spacing: .06em;
	box-shadow: 0 9px 25px rgba(215,25,32,.32);
}
.hero-button::after {
	content: " →";
	margin-left: 7px;
}
.hero-button:hover {
	background: #ef1b24;
	transform: translateY(-2px);
}
	section {
	padding: 90px 20px;
}
.section-inner {
	width: min(900px, 100%);
	margin: 0 auto;
}
.section-title {
	text-align: center;
	margin-bottom: 45px;
}
section[id] { scroll-margin-top: 100px; }
.section-title { scroll-margin-top: 100px; }
.section-number {
	display: inline-block;
	padding: 3px 11px;
	background: var(--navy);
	border-radius: 3px;
	margin-bottom: 8px;
	font-size: 11px;
	font-weight: 950;
	color: #fff;
	letter-spacing: .12em;
}
.section-title h2 {
	margin: 0;
	font-size: clamp(28px, 5vw, 42px);
	font-weight: 950;
	letter-spacing: -.025em;
}
.about {
	background: #fff;
	position: relative;
}
.about::before {
	content: "Deaf";
	position: absolute;
	top: 28px;
	right: 20px;
	font-size: clamp(40px, 9vw, 100px);
	font-weight: 950;
	letter-spacing: -.04em;
	color: rgba(15,23,42,.035);
	pointer-events: none;
}
.about-lead {
	text-align: center;
	font-size: 20px;
	font-weight: 800;
	margin-bottom: 25px;
}
.about-text {
	background: #f5f7fa;
	padding: 38px;
	border-radius: 7px;
	border-left: 6px solid var(--red);
	color: #475569;
	font-size: 15px;
	box-shadow: 0 12px 35px rgba(15,23,42,.07);
}
.about-text p { margin: 0 0 16px; }
.about-text p:last-child { margin-bottom: 0; }
.content {
	background:
	linear-gradient(rgba(7,17,31,.96), rgba(7,17,31,.96)),
	linear-gradient(90deg, #c99152 1px, transparent 1px);
	color: #fff;
	position: relative;
}
.content::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
	linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
	linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
	background-size: 45px 45px;
}
.content .section-inner {
	position: relative;
	z-index: 1;
}
.content .section-title h2 { color: #fff; }
.content .section-number { background: #ffffff; color: var(--text); }
.content-box {
	padding: 35px 30px;
	background: rgba(255,255,255,.97);
	color: var(--text);
	border: 1px solid rgba(255,255,255,.25);
	border-radius: 7px;
	box-shadow: 0 18px 45px rgba(0,0,0,.3);
	position: relative;
	overflow: hidden;
}
.calendar-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}
.calendar-header h3 {
	margin: 0;
	font-size: 22px;
	font-weight: 900;
	color: var(--navy);
	cursor: pointer;
	text-decoration: underline;
	text-decoration-color: var(--red);
	text-underline-offset: 4px;
	transition: .2s;
}
.month-arrow {
	display: inline-block;
	color: var(--red);
	font-size: 1.4em;
	font-weight: 900;
	animation: monthArrowBlink 1s ease-in-out infinite;
}
@keyframes monthArrowBlink {
	0%, 100% {
		opacity: 0.3;
		transform: scale(1);
	}
	50% {
		opacity: 1;
		transform: scale(1.4);
	}
}
.calendar-header h3:hover { color: var(--red); }
.calendar-nav-btn {
	background: var(--navy);
	color: #fff;
	border: none;
	padding: 8px 16px;
	border-radius: 5px;
	cursor: pointer;
	font-weight: bold;
	transition: .2s;
}
.calendar-nav-btn:hover { background: var(--red); }
.calendar-grid {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 5px;
}
.calendar-day-name {
	text-align: center;
	font-size: 13px;
	font-weight: bold;
	color: #fff;
	background: var(--navy-2);
	padding: 8px 0;
	border-radius: 4px;
}
.calendar-day-name:nth-child(6) { background: #1d4ed8; }
.calendar-day-name:nth-child(7) { background: #b91c1c; }
.calendar-day {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 4px;
	min-height: 90px;
	padding: 5px;
	transition: .2s;
	display: flex;
	flex-direction: column;
}
.calendar-day.is-admin-active { cursor: pointer; }
.calendar-day.is-admin-active:hover { background: #f1f5f9; border-color: #cbd5e1; }
.calendar-day.empty { background: transparent; border: none; cursor: default; }
.calendar-day.is-holiday {
	background: #ffe4e1 !important;
}
.holiday-name {
	font-size: 10px;
	color: var(--red);
	margin-top: -3px;
	margin-bottom: 4px;
	font-weight: bold;
	line-height: 1.2;
}
.calendar-day.is-today {
	background: #fffdeb;
	border: 2px solid var(--red);
}
.calendar-day.is-today .day-num {
	color: var(--red);
}
.day-num {
	font-size: 14px;
	font-weight: 800;
	color: var(--muted);
	margin-bottom: 5px;
}
.event-item {
	background: var(--red);
	color: #fff;
	font-size: 11px;
	padding: 3px 5px;
	border-radius: 3px;
	margin-bottom: 4px;
	white-space: normal;
	word-break: break-word;
	line-height: 1.3;
	font-weight: bold;
	box-shadow: 0 2px 4px rgba(215,25,32,.2);
	cursor: pointer;
}
.event-item:hover { filter: brightness(1.2); }
.modal-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(7,17,31,0.7);
	z-index: 2000;
	justify-content: center;
	align-items: center;
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
}
#viewModal {
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}
.modal-content {
	background: #fff;
	width: 90%;
	max-width: 450px;
	padding: 25px;
	border-radius: 8px;
	box-shadow: 0 15px 40px rgba(0,0,0,0.3);
	max-height: 85vh;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
.modal-content h4 {
	margin: 0 0 15px;
	font-size: 18px;
	color: var(--navy);
	border-bottom: 2px solid var(--red);
	padding-bottom: 8px;
}
.input-group { margin-bottom: 15px; }
.input-group label { display: block; font-size: 12px; font-weight: bold; color: var(--navy); margin-bottom: 4px; }
.input-group input[type="text"], .input-group textarea {
	width: 100%; padding: 10px; border: 1px solid #cbd5e1; border-radius: 5px; font-size: 15px; outline: none; font-family: inherit;
}
.input-group input:focus, .input-group textarea:focus { border-color: var(--red); }
.input-group textarea { resize: vertical; min-height: 60px; }
.view-group { margin-bottom: 12px; font-size: 15px; line-height: 1.5; color: var(--text); display: block; }
.view-group strong { display: inline-block; width: 60px; color: var(--navy); font-size: 13px; vertical-align: top; }
.view-group .view-val { display: inline-block; width: calc(100% - 65px); word-break: break-all; vertical-align: top; }
.view-group a { color: #1877f2; text-decoration: underline; font-weight: bold; }
#schMetaSiteGroup {
	display: none;
	margin-top: 12px;
}
#schMetaSiteGroup strong {
	display: block;
	width: 100%;
	margin-bottom: 4px;
	color: var(--navy);
	font-size: 13px;
}
#schMetaSiteGroup .view-val {
	display: block;
	width: 100%;
}
.edit-modal-header {
	position: relative;
}
.edit-modal-header h4 {
	margin-right: 120px;
}
.btn-facebook-ics {
	position: absolute;
	top: -2px;
	right: 0;
	border: 1px solid #0d65d5;
	background: #0d65d5;
	color: #fff;
	border-radius: 5px;
	padding: 5px 8px;
	font-size: 10px;
	font-weight: bold;
	cursor: pointer;
	white-space: nowrap;
}
.btn-facebook-ics:hover {
	background: #1877f2;
}
.cal-sync-wrap {
	margin-top: 18px;
	padding-top: 14px;
	border-top: 1px dashed #cbd5e1;
}
.cal-sync-btns {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}
.btn-cal-sync {
	width: 100%;
	padding: 10px 12px;
	font-size: 13px;
	font-weight: bold;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	color: #fff;
	text-align: center;
	transition: .2s;
}
.btn-cal-dynamic {
	background: #ea580c;
}
.btn-cal-dynamic:hover {
	background: #f97316;
}
.btn-line-reminder { 
	background: #05b34c;
}
.btn-line-reminder:hover { 
	background: #06C755;
}
.btn-email-reminder { 
	background: #d9a300;
}
.btn-share-event {
	background: #334155;
}
.btn-share-event:hover {
	background: #475569;
}
.btn-email-reminder:hover { 
	background: #F5B800;
}
.btn-line-reminder:disabled,
.btn-email-reminder:disabled {
	background: #9ca3af !important;
	color: #e5e7eb !important;
	cursor: not-allowed !important;
	opacity: 0.55 !important;
}
.btn-line-reminder:disabled:hover,
.btn-email-reminder:disabled:hover {
	background: #9ca3af !important;
}
.reminder-register-overlay {
	position: fixed;
	inset: 0;
	z-index: 10000;
	background: rgba(7,17,31,.70);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	box-sizing: border-box;
}
.reminder-register-box {
	width: min(520px, 100%);
	max-height: 90vh;
	overflow-y: auto;
	background: #fff;
	border-radius: 8px;
	padding: 25px;
	box-shadow: 0 15px 40px rgba(0,0,0,.30);
	box-sizing: border-box;
}
.reminder-register-box h4 {
	margin: 0 0 15px;
	font-size: 18px;
	color: var(--navy);
	border-bottom: 2px solid var(--red);
	padding-bottom: 8px;
}
.reminder-register-event {
	margin-bottom: 18px;
	padding: 12px;
	background: #f5f7fa;
	border-left: 4px solid var(--red);
	border-radius: 5px;
	font-size: 13px;
	line-height: 1.6;
}
.reminder-register-field {
	margin-bottom: 15px;
}
.reminder-register-field > label {
	display: block;
	margin-bottom: 5px;
	font-size: 12px;
	font-weight: bold;
	color: var(--navy);
}
.reminder-pref-row {
	display: flex;
	gap: 7px;
}
.reminder-pref-row select {
	flex: 1;
	min-width: 0;
	padding: 9px;
	border: 1px solid #cbd5e1;
	border-radius: 5px;
	font-size: 14px;
	background: #fff;
}
.reminder-register-name,
.reminder-register-email {
	width: 100%;
	padding: 10px;
	border: 1px solid #cbd5e1;
	border-radius: 5px;
	font-size: 15px;
	box-sizing: border-box;
}
.reminder-register-help {
	margin: 6px 0 0;
	font-size: 11px;
	line-height: 1.6;
	color: #64748b;
}
.reminder-line-open {
	margin-bottom: 15px;
}
.reminder-register-actions {
	display: flex;
	gap: 10px;
	margin-top: 20px;
}
.reminder-register-actions button {
	flex: 1;
	padding: 9px 14px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-weight: bold;
	font-size: 13px;
}
.reminder-register-cancel {
	background: #e2e8f0;
	color: var(--text);
}
.reminder-register-submit {
	background: var(--red);
	color: #fff;
}
.reminder-register-status {
	margin-top: 12px;
	font-size: 12px;
	line-height: 1.6;
	color: #475569;
	white-space: pre-wrap;
}
.reminder-line-code {
	margin: 15px 0;
	padding: 15px;
	background: #f0fdf4;
	border: 1px solid #86efac;
	border-radius: 6px;
	text-align: center;
}
.reminder-line-code strong {
	display: block;
	font-size: 24px;
	letter-spacing: .15em;
	color: #15803d;
	margin-top: 5px;
}
@media (max-width: 480px) {
	.reminder-register-overlay {
		padding: 10px;
	}
	.reminder-register-box {
		padding: 18px;
	}
	.reminder-pref-row {
		gap: 5px;
	}
	.reminder-pref-row select {
		font-size: 13px;
		padding: 8px 5px;
	}
}
.ym-selects { display: flex; gap: 10px; margin-bottom: 20px; justify-content: center; }
.ym-selects select { padding: 10px; font-size: 16px; border: 1px solid #cbd5e1; border-radius: 5px; }
.modal-actions { display: flex; justify-content: space-between; margin-top: 20px; }
.modal-actions-right { display: flex; gap: 10px; margin-left: auto; }
.btn-modal { padding: 8px 16px; border: none; border-radius: 5px; cursor: pointer; font-weight: bold; font-size: 13px; transition: .2s; }
.btn-save { background: var(--red); color: #fff; }
.btn-save:hover { background: var(--red-dark); }
.btn-cancel { background: #e2e8f0; color: var(--text); }
.btn-cancel:hover { background: #cbd5e1; }
.btn-delete { background: #475569; color: #fff; }
.btn-delete:hover { background: #334155; }
.btn-edit { background: var(--blue); color: #fff; }
.btn-edit:hover { background: #0f3654; }
.d7-social-section {
	background: #fff;
	color: var(--text);
	text-align: center;
}
.d7-social-section .section-number { background: var(--red); color: #fff; }
.d7-link-stack {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
	margin-top: 25px;
	width: 100%;
	box-sizing: border-box;
	padding: 0 10px;
}
.d7-link-a, .d7-link-b, .d7-link-c {
	display: block;
	width: 100%;
	max-width: 450px;
	margin: 0 auto;
	padding: 14px 20px;
	border-radius: 5px;
	color: #fff !important;
	font-weight: 850;
	letter-spacing: .04em;
	text-decoration: none;
	box-sizing: border-box;
	text-align: center;
	word-break: break-all;
}
.d7-link-a {
	background: #0d65d5;
	box-shadow: 0 7px 20px rgba(24,119,242,.25);
}
.d7-link-a:hover {
	background: #1877f2;
}
.d7-link-b {
	background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
	box-shadow: 0 7px 20px rgba(220,39,67,.25);
}
.d7-link-b:hover {
	filter: brightness(1.1);
}
.d7-link-c {
	background: #0f1419;
	box-shadow: 0 7px 20px rgba(15,20,25,.25);
}
.d7-link-c:hover { background: #272c30; }
	#officialSocialSection .d7-link-stack {
	display: block !important;
	width: 100% !important;
	margin-top: 25px !important;
	padding: 0 10px !important;
	visibility: visible !important;
	opacity: 1 !important;
}
#officialSocialSection #d7link1,
#officialSocialSection #d7link2,
#officialSocialSection #d7link3,
#officialSocialSection #d7link4 {
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
	position: relative !important;
	width: 100% !important;
	max-width: 450px !important;
	margin: 0 auto 15px !important;
	padding: 14px 20px !important;
	min-height: 48px !important;
	-webkit-appearance: none !important;
	appearance: none !important;
	text-decoration: none !important;
	box-sizing: border-box !important;
}
#officialSocialSection #d7link1 {
	background: #0d65d5 !important;
	color: #fff !important;
}
#officialSocialSection #d7link1:hover {
	background: #1877f2 !important;
}
#officialSocialSection #d7link2 {
	background: #0d65d5 !important;
	color: #fff !important;
}
#officialSocialSection #d7link2:hover {
	background: #1877f2 !important;
}
#officialSocialSection #d7link3 {
	background: #d62976 !important;
	color: #fff !important;
}
#officialSocialSection #d7link3:hover {
	filter: brightness(1.1);
}
#officialSocialSection #d7link4 {
	background: #198754 !important;
	color: #fff !important;
}
#officialSocialSection #d7link4:hover {
	background: #16a34a !important;
}
footer {
	padding: 25px 20px;
	background: #030912;
	color: #64748b;
	text-align: center;
	font-size: 12px;
	border-top: 3px solid var(--red);
	position: relative;
}
.copyright { margin: 0; }
	#adminLoginBtn {
	cursor: pointer;
	opacity: 0.3;
	margin-left: 10px;
	transition: .2s;
	display: inline-block;
}
#adminLoginBtn:not(.is-admin)::before { content: "\1F512"; }
#adminLoginBtn:not(.is-admin):hover::before { content: "\1F513"; }
#adminLoginBtn.is-admin::before { content: "\1F513"; opacity: 1; }
#adminLoginBtn.is-admin:hover::before { content: "\1F512"; }
#adminLoginBtn:hover { opacity: 1; }
@media (max-width: 900px) {
	.header-inner { 
		min-height: auto; 
		padding: 6px 10px; 
		flex-direction: column; 
		gap: 6px; 
	}
	.logo { width: 100%; justify-content: center; font-size: 16px; }
		nav { 
			width: 100%; 
			display: flex !important; 
			flex-direction: column; 
			gap: 6px; 
	}
	.nav-links { 
		display: flex !important; 
		visibility: visible !important; 
		opacity: 1 !important; 
		gap: 12px; 
		justify-content: center; 
		width: 100%; 
	}
	.nav-links a { 
		font-size: 11px; 
		min-width: 82px;
		padding: 8px 10px 9px;
		display: inline-flex !important; 
	}
	.nav-actions { 
		display: flex !important; 
		visibility: visible !important; 
		opacity: 1 !important; 
		width: 100%; 
		justify-content: center; 
		gap: 8px; 
	}
	#videoChatButton { 
		padding: 4px 10px; 
		font-size: 11px; 
		display: inline-block !important; 
	}
	.hero { 
		min-height: auto; 
		padding: 130px 15px 35px !important; 
	}
	.hero-label { margin-bottom: 8px; font-size: 11px; letter-spacing: .11em; }
	.hero h1 { font-size: 28px; }
	.hero-description { margin-top: 12px; font-size: 13px; }
	.hero-button { margin-top: 18px; padding: 10px 24px; }
	section { padding: 50px 15px; }
	.section-title { margin-bottom: 25px; }
	.about-text, .content-box { padding: 15px 12px; }
	.calendar-day { min-height: 65px; padding: 2px; }
	.day-num { font-size: 11px; }
	.event-item { font-size: 9px; padding: 2px; }
	.calendar-nav-btn { padding: 5px 8px; font-size: 10px; }
	.calendar-header h3 { font-size: 16px; }
}
@media (max-width: 900px) and (orientation: portrait) {
	.notice-simple {
		margin-bottom: 333px;
	}
}
@media (max-width: 480px) {
	.nav-links { gap: 6px; }
	.nav-links a { font-size: 9px; min-width: 72px; padding: 7px 8px 8px; letter-spacing: .11em; }
	.nav-links a::before { left: 6px; font-size: 6px; }
	.nav-links a::after { left: 7px; right: 7px; bottom: 4px; }
	.hero { padding: 120px 15px 80px !important; }
	.notice-simple { margin-bottom: 222px; }
	.hero::before { width: 420px; height: 420px; right: -210px; }
	.hero h1 { font-size: 26px; }
	.hero-label { padding: 4px 8px; font-size: 9px; }
	.hero-description { font-size: 12px; }
}
#adContainer { width: 100%; background: #111; display: flex; justify-content: center; align-items: center; flex-shrink: 0; min-height: 50px; text-align: center; }
.notice-simple {
	display: inline-block;
	margin-top: 15px;
	padding: 8px 15px;
	background: rgba(215, 25, 32, 0.12);
	border: 1px solid rgba(215, 25, 32, 0.35);
	border-radius: 6px;
	color: #fecaca;
	font-size: 12px;
	line-height: 1.5;
	letter-spacing: 0.05em;
	backdrop-filter: blur(4px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.notice-simple strong {
	color: #ffffff;
	font-weight: 800;
	letter-spacing: 0.08em;
}
.chrome-icon {
	display: inline-block;
	width: 14px;
	height: 14px;
	vertical-align: -2px;
	margin: 0 4px 0 2px;
}
body.cinematic-lock{overflow:hidden}
#cinematicOpening{position:fixed;inset:0;z-index:99999;background:#010309;color:#fff;display:flex;align-items:center;justify-content:center;overflow:hidden;opacity:1;visibility:visible;transition:opacity 5.00s cubic-bezier(.77,0,.18,1),visibility 5.00s}
#cinematicOpening.is-hidden{opacity:0;visibility:hidden;pointer-events:none}
#cinematicOpening::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 50% 48%,rgba(28,55,80,.24),transparent 42%),linear-gradient(180deg,#000 0%,transparent 28%,transparent 72%,#000 100%);pointer-events:none}
.cinema-stars{position:absolute;inset:0;opacity:.5;background-image:radial-gradient(circle,#fff 0 1px,transparent 1.5px),radial-gradient(circle,#fff 0 1px,transparent 1.5px);background-size:97px 113px,157px 149px;background-position:11px 23px,67px 41px;animation:cinemaDrift 18s linear infinite}
.cinema-noise{position:absolute;inset:-50%;opacity:.055;pointer-events:none;background-image:repeating-radial-gradient(circle at 20% 30%,#fff 0 1px,transparent 1px 3px);background-size:7px 7px;animation:cinemaNoise .18s steps(2) infinite}
.cinema-vignette{position:absolute;inset:0;pointer-events:none;background:radial-gradient(ellipse at center,transparent 28%,rgba(0,0,0,.72) 100%)}
.cinema-scan{position:absolute;left:0;right:0;top:50%;height:2px;background:rgba(215,25,32,.75);box-shadow:0 0 25px rgba(215,25,32,.95);transform:scaleX(0);animation:cinemaScan 1.4s cubic-bezier(.77,0,.18,1) .2s forwards}
.cinema-light{position:absolute;top:-30%;left:-20%;width:30%;height:160%;background:linear-gradient(90deg,transparent,rgba(255,255,255,.08),transparent);transform:rotate(18deg) translateX(-180%);filter:blur(10px);animation:cinemaLight 2.8s ease 1.15s forwards}
.cinema-bars{position:absolute;left:0;right:0;height:9vh;background:#000;z-index:5}
.cinema-bars.top{top:0}.cinema-bars.bottom{bottom:0}
.cinema-content{position:relative;width:min(1150px,90%);text-align:center;z-index:2}
.cinema-kicker{font-size:clamp(10px,1.35vw,16px);letter-spacing:.58em;color:#b9c5d1;font-weight:700;opacity:0;transform:translateY(12px);animation:cinemaFadeUp .9s ease .55s forwards}
.cinema-year{margin:24px 0 0;font-size:clamp(82px,18vw,235px);line-height:.78;font-weight:950;letter-spacing:-.075em;color:#fff;opacity:0;transform:scale(1.16);text-shadow:0 0 55px rgba(255,255,255,.08);animation:cinemaYear 1.7s cubic-bezier(.16,1,.3,1) .8s forwards}
.cinema-era{margin:18px 0 0;font-size:clamp(10px,1.2vw,14px);letter-spacing:.42em;color:#7f92a5;opacity:0;animation:cinemaFadeIn 1s ease 1.65s forwards}
.cinema-line{width:min(520px,65vw);height:2px;margin:25px auto 24px;background:var(--red);box-shadow:0 0 25px rgba(215,25,32,.8);transform:scaleX(0);animation:cinemaLine 1s cubic-bezier(.77,0,.18,1) 1.55s forwards}
.cinema-title{font-size:clamp(27px,5.3vw,70px);font-weight:950;letter-spacing:.13em;margin:0;opacity:0;transform:translateY(24px);animation:cinemaTitle 1.15s cubic-bezier(.16,1,.3,1) 1.85s forwards}
.cinema-title span{color:var(--red);text-shadow:0 0 28px rgba(215,25,32,.38)}
.cinema-sub{margin:24px 0 0;color:#c1ccd6;font-size:clamp(12px,1.7vw,19px);letter-spacing:.17em;opacity:0;transform:translateY(12px);animation:cinemaFadeUp 1s ease 2.45s forwards}
.cinema-quote{margin:15px 0 0;color:#77899b;font-size:clamp(10px,1.2vw,13px);letter-spacing:.18em;opacity:0;animation:cinemaFadeIn 1s ease 3s forwards}
.cinema-reveal{position:absolute;left:0;right:0;bottom:13%;text-align:center;font-size:9px;letter-spacing:.42em;color:#748496;opacity:0;animation:cinemaFadeIn 1s ease 3.35s forwards}
.cinema-reveal::before,.cinema-reveal::after{content:"";display:inline-block;width:38px;height:1px;background:#526274;vertical-align:middle}
.cinema-reveal::before{margin-right:14px}.cinema-reveal::after{margin-left:14px}
@keyframes cinemaScan{to{transform:scaleX(1)}}
@keyframes cinemaLine{to{transform:scaleX(1)}}
@keyframes cinemaFadeUp{to{opacity:1;transform:translateY(0)}}
@keyframes cinemaFadeIn{to{opacity:1}}
@keyframes cinemaYear{to{opacity:1;transform:scale(1)}}
@keyframes cinemaTitle{to{opacity:1;transform:translateY(0);letter-spacing:.07em}}
@keyframes cinemaNoise{0%{transform:translate(0,0)}25%{transform:translate(3%,-2%)}50%{transform:translate(-2%,3%)}75%{transform:translate(2%,2%)}100%{transform:translate(-3%,-1%)}}
@keyframes cinemaDrift{from{transform:translate3d(0,0,0)}to{transform:translate3d(-30px,20px,0)}}
@keyframes cinemaLight{to{transform:rotate(18deg) translateX(650%)}}
@media (max-width:600px){.cinema-bars{height:6vh}.cinema-title{letter-spacing:.08em}.cinema-sub{letter-spacing:.08em}.cinema-reveal{bottom:10%}}
@media (prefers-reduced-motion:reduce){#cinematicOpening *{animation:none!important;opacity:1!important;transform:none!important}.cinema-scan,.cinema-line{transform:scaleX(1)}}
.position {
	font-weight: bold;
	font-size: 1.15em;
}
.cinema-hero-text {
	letter-spacing: .03em;
	color: #cbd5e1;
}
@keyframes heroTextFadeUp {
	0% {
		opacity: 0;
		transform: translateY(15px);
		filter: blur(4px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
		filter: blur(0);
	}
}
.cinema-fade-line {
	display: inline-block;
	opacity: 0;
	white-space: nowrap;
	animation: heroTextFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.cinema-fade-line.line-1,
.cinema-fade-line.line-2 {
	font-size: clamp(11px, 2.6vw, 16px);
}
.cinema-fade-line.delay-1 {
	animation-delay: 7.4s;
}
.cinema-fade-line.delay-2 {
	animation-delay: 7.8s;
}
body.skip-cinema .cinema-fade-line.delay-1 {
	animation-delay: 1.2s !important;
}
body.skip-cinema .cinema-fade-line.delay-2 {
	animation-delay: 1.4s !important;
}
.cinema-fade-line.delay-2.hero-grand-finale {
	display: inline-block;
	margin-top: 10px;
	font-size: clamp(15px, 3.8vw, 28px);
	font-weight: 950;
	letter-spacing: .05em;
	line-height: 1.3;
	white-space: nowrap;
	background: linear-gradient(135deg, #ffffff 30%, #fecaca 70%, var(--red) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow: none;
}
.profile-photo {
	display: block;
	width: 333px;
	height: 333px;
	object-fit: cover;
	border-radius: 50%;
	margin: 25px auto 0;
}
.nav-links.reset-anim a,
.nav-links.reset-anim a::after {
	animation: none !important;
}
.event-media-section{margin-top:16px;padding-top:14px;border-top:1px dashed #cbd5e1}
.event-media-title{font-size:13px;font-weight:900;color:var(--navy);margin:0 0 8px}
.media-strip{display:flex;gap:9px;overflow-x:auto;overflow-y:hidden;padding:2px 2px 8px;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;scrollbar-width:thin}
.media-thumb{position:relative;flex:0 0 92px;width:92px;height:74px;padding:0;border:1px solid #dbe2ea;border-radius:6px;background:#f1f5f9;overflow:hidden;cursor:pointer;scroll-snap-align:start}
.media-thumb img,.media-thumb video{width:100%;height:100%;object-fit:cover;display:block}.media-thumb video{background:#111}.media-video-placeholder{width:100%;height:100%;display:flex;align-items:center;justify-content:center;background:#111;color:#cbd5e1;font-size:10px;font-weight:800;letter-spacing:.12em}.url-adblock-note{font-size:10px;color:#64748b;line-height:1.35;margin-top:5px}
.media-thumb.video-thumb:after{content:"";position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:0;height:0;border-top:8px solid transparent;border-bottom:8px solid transparent;border-left:12px solid #fff;filter:drop-shadow(0 1px 2px rgba(0,0,0,.45));pointer-events:none}
.media-empty{font-size:12px;color:#94a3b8;padding:5px 0}.media-loading{display:flex;align-items:center;justify-content:center;gap:8px;width:100%;min-height:50px;color:#64748b;font-size:12px;font-weight:800}.media-loading-spinner{display:inline-block;width:18px;height:18px;border:3px solid #cbd5e1;border-top-color:#475569;border-radius:50%;animation:mediaSpin .7s linear infinite}@keyframes mediaSpin{to{transform:rotate(360deg)}}
.media-upload-box{margin-top:10px;padding:10px;border:1px solid #dbe2ea;border-radius:6px;background:#f8fafc}
.media-upload-box label{display:block;font-size:12px;font-weight:800;color:var(--navy);margin-bottom:5px}
.media-upload-box input[type=file]{width:100%;font-size:12px}
.media-upload-status{margin-top:6px;font-size:11px;color:#64748b;min-height:1.2em}
.media-manage-list{display:flex;gap:8px;overflow-x:auto;padding:4px 1px 8px;margin-top:8px}
.media-manage-item{position:relative;flex:0 0 112px;border:1px solid #dbe2ea;border-radius:7px;background:#fff;padding:5px}
.media-manage-item img,.media-manage-item video{width:100%;height:78px;object-fit:cover;display:block;border-radius:4px;background:#000}
.media-manage-name{font-size:10px;word-break:break-all;color:#475569;margin:4px 0;line-height:1.2}
.media-manage-comment{font-size:11px;color:#334155;white-space:pre-wrap;word-break:break-word;margin:4px 0;line-height:1.35;min-height:1.35em}
.media-viewer-comment{font-size:13px;color:#e2e8f0;white-space:pre-wrap;word-break:break-word;line-height:1.5;margin-top:5px;text-align:left}.media-viewer-comment a,.media-strip a{color:#60a5fa;text-decoration:underline;font-weight:700;text-underline-offset:2px}.media-viewer-comment a:visited,.media-strip a:visited{color:#c084fc}.media-viewer-comment a:hover,.media-strip a:hover{color:#93c5fd}
.media-viewer-meta{width:min(94vw,900px);max-height:16dvh;overflow:auto;flex:0 1 auto;box-sizing:border-box;padding:8px 14px;border:1px solid rgba(255,255,255,.18);border-radius:12px;background:rgba(12,16,24,.88);color:#fff;box-shadow:0 8px 30px rgba(0,0,0,.30);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px)}
.media-viewer-type{font-size:10px;font-weight:700;letter-spacing:.08em;opacity:.72}
.media-manage-actions{display:flex;gap:4px}.media-manage-actions button{flex:1;border:1px solid #cbd5e1;background:#f8fafc;border-radius:4px;font-size:10px;padding:4px;cursor:pointer}.media-manage-actions .danger{color:#b91c1c}
#mediaViewerModal{background:rgba(4,7,12,.96);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);padding:10px;animation:mediaViewerFade .22s ease-out}
@keyframes mediaViewerFade{from{opacity:0}to{opacity:1}} @keyframes mediaViewerZoom{from{opacity:0;transform:scale(.965)}to{opacity:1;transform:scale(1)}}
.media-viewer-content{position:relative;width:100%;height:100%;display:grid;grid-template-columns:minmax(0,1fr);grid-template-rows:auto minmax(0,1fr) auto auto;gap:8px;align-items:center;justify-items:center;overflow:hidden;touch-action:pan-y;padding:62px 12px 14px;box-sizing:border-box}
.media-viewer-stage{grid-column:1;grid-row:2;width:100%;height:100%;min-height:0;display:flex;align-items:center;justify-content:center;position:relative}
.media-viewer-stage::before{content:"";position:absolute;inset:5%;border-radius:28px;background:radial-gradient(circle at center,rgba(255,255,255,.07),transparent 62%);pointer-events:none}
.media-viewer-stage img,.media-viewer-stage video{display:block;width:100%;height:100%;max-width:100%;max-height:100%;object-fit:contain;border-radius:14px;background:#000;box-shadow:none;animation:none}.media-viewer-stage video{transform:translateZ(0);will-change:auto}.media-viewer-loading{position:absolute;z-index:10;left:50%;top:50%;transform:translate(-50%,-50%);width:54px;height:54px;border-radius:50%;background:rgba(0,0,0,.72);display:flex;align-items:center;justify-content:center;pointer-events:none}.media-viewer-loading .media-loading-spinner{width:28px;height:28px;border-width:4px;border-top-color:#fff}.media-viewer-loading.is-hidden{display:none}
.media-viewer-close{position:absolute;right:14px;top:12px;z-index:5;width:48px;height:48px;border:1px solid rgba(255,255,255,.28);border-radius:50%;background:rgba(20,25,34,.72);box-shadow:0 8px 30px rgba(0,0,0,.35);cursor:pointer;color:#fff;font-size:28px;line-height:1;display:flex;align-items:center;justify-content:center}
.media-viewer-arrow{position:static;transform:none;z-index:5;width:58px;height:56px;border:1px solid rgba(255,255,255,.30);border-radius:22px;background:rgba(18,23,32,.70);box-shadow:0 10px 32px rgba(0,0,0,.38);cursor:pointer;display:flex;align-items:center;justify-content:center}
.media-viewer-arrow::before{content:"";width:15px;height:15px;border-top:3px solid #fff;border-right:3px solid #fff}.media-viewer-prev{grid-column:1;grid-row:4;justify-self:center;margin-right:76px}.media-viewer-next{grid-column:1;grid-row:4;justify-self:center;margin-left:76px}.media-viewer-prev::before{transform:rotate(-135deg);margin-left:6px}.media-viewer-next::before{transform:rotate(45deg);margin-right:6px}
.media-viewer-meta{grid-column:1;grid-row:3;justify-self:center;align-self:start;position:relative;z-index:6}.media-viewer-counter{grid-column:1;grid-row:1;justify-self:center;min-width:72px;text-align:center;padding:7px 14px;border:1px solid rgba(255,255,255,.22);border-radius:999px;background:rgba(10,14,21,.76);color:#fff;font-size:12px;font-weight:700;letter-spacing:.08em}
@media(max-width:600px){.media-thumb{flex-basis:82px;width:82px;height:68px}.media-viewer-content{grid-template-columns:minmax(0,1fr);grid-template-rows:auto minmax(0,1fr) auto auto;gap:5px;padding:56px 8px 10px}.media-viewer-arrow{width:44px;height:48px;border-radius:16px}.media-viewer-prev{margin-right:54px}.media-viewer-next{margin-left:54px}.media-viewer-close{right:8px;top:8px;width:42px;height:42px}.media-viewer-meta{width:96vw;max-height:14dvh;padding:7px 10px}.media-viewer-counter{padding:5px 11px}.media-viewer-stage img,.media-viewer-stage video{border-radius:9px}}
.media-viewer-content{display:grid;grid-template-columns:minmax(0,1fr);grid-template-rows:auto minmax(0,1fr) auto auto;}
.media-viewer-stage{width:100%;height:100%;min-height:0;overflow:hidden;}
.media-viewer-stage img,.media-viewer-stage video{width:100%;height:100%;max-width:100%;max-height:100%;object-fit:contain;}
.media-viewer-stage video{cursor:pointer;}
#mediaViewerModal:has(video){backdrop-filter:none;-webkit-backdrop-filter:none;}
.media-viewer-stage video{
	animation:none !important;
	transform:translateZ(0);
	will-change:auto;
	contain:layout paint;
	box-shadow:none;
	border-radius:0;
}
.media-viewer-stage:has(video)::before{display:none;}
.media-viewer-content:has(video){backdrop-filter:none;-webkit-backdrop-filter:none;}
#mediaViewerModal.video-active{backdrop-filter:none;-webkit-backdrop-filter:none;}
#mediaViewerModal.video-active .media-viewer-stage::before{display:none;}
#mediaViewerModal.video-active .media-viewer-stage video{animation:none!important;transform:translateZ(0);box-shadow:none;border-radius:0;}
@media (orientation: landscape) and (max-height: 700px) {
	.media-viewer-content{grid-template-rows:auto minmax(0,1fr) auto auto;gap:4px;padding:48px 8px 6px;}
	.media-viewer-meta{width:min(96vw,1100px);max-height:18vh;padding:5px 10px;}
	.media-viewer-stage{min-height:0;}
	.media-viewer-stage img,.media-viewer-stage video{width:100%;height:100%;max-width:100%;max-height:100%;object-fit:contain;}
	.media-viewer-arrow{width:44px;height:40px;}
}
@media (orientation: landscape) and (max-height: 900px) {
	#mediaViewerModal { padding: 4px; }
	.media-viewer-content {
		height: 100dvh;
		padding: 4px 56px 4px;
		gap: 3px;
		grid-template-rows: minmax(0, 1fr) auto !important;
	}
	.media-viewer-stage {
		grid-row: 1 !important;
		width: 100%;
		height: 100%;
		min-height: 0;
	}
	.media-viewer-stage img,
	.media-viewer-stage video {
		width: 100%;
		height: 100%;
		max-width: 100%;
		max-height: 100%;
		object-fit: contain;
	}
	.media-viewer-meta {
		grid-row: 2 !important;
		width: min(96vw, 1100px);
		max-height: 13dvh !important;
		padding: 4px 9px;
		margin: 0;
	}
	.media-viewer-comment {
		font-size: 12px;
		line-height: 1.25;
		margin-top: 2px;
	}
	.media-viewer-counter {
		position: absolute;
		top: 35px;
		left: 8px;
		z-index: 8;
		padding: 3px 8px;
		font-size: 10px;
	}
	.media-viewer-arrow {
		position: absolute !important;
		top: 50%;
		transform: translateY(-50%);
		z-index: 8;
		width: 42px;
		height: 52px;
		margin: 0 !important;
	}
	.media-viewer-prev {
		left: auto !important;
		right: auto !important;
	}
	.media-viewer-next {
		left: auto !important;
		right: auto !important;
	}
	.media-viewer-close {
		top: 5px;
		right: 6px;
		width: 38px;
		height: 38px;
	}
}
@media (orientation: landscape) {
	.media-viewer-arrow{position:absolute !important;top:50%;transform:translateY(-50%);z-index:20;margin:0 !important;}
}
.media-viewer-loading.is-hidden{display:none !important;}
.handballer {
	text-align: center;
}
.handballer-inner {
	display: inline-block;
}
.handballer-inner p {
	margin: 0;
}
.handballer-name {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	font-size: 12px;
	margin-top: 0;
	padding: 0;
	transform: translateX(-50px);
}
.handballer-name span:nth-child(2) {
	transform: translateX(-40px);
}
.handballer-name span:nth-child(3) {
	transform: translateX(-80px);
}
.handballer-name span:first-child {
	text-align: center;
}
.handballer-name span:nth-child(2) {
	text-align: center;
	margin: 0 15px;
}
.handballer-name span:last-child {
	text-align: center;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
	.handballer-name span:first-child {
		text-align: center;
		transform: translateX(30px);
	}
	.handballer-name span:nth-child(2) {
		transform: translateX(5px);
	}
	.handballer-name span:nth-child(3) {
		transform: translateX(-15px);
	}
}
#mediaViewerModal .media-viewer-content{
	overflow:hidden;
}
#mediaViewerModal .media-viewer-stage{
	overflow:hidden;
	perspective:1800px;
	isolation:isolate;
}
#mediaViewerModal .media-viewer-stage > img,
#mediaViewerModal .media-viewer-stage > video{
	cursor:zoom-in;
	will-change:transform,opacity,filter,clip-path;
	transform-origin:center center;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
}
#mediaViewerModal .media-viewer-stage > img.viewer-media-enter,
#mediaViewerModal .media-viewer-stage > video.viewer-media-enter{
	animation:viewerMediaCinematicIn .64s cubic-bezier(.16,1,.3,1) both !important;
}
#mediaViewerModal .media-viewer-stage > img.viewer-media-enter-next,
#mediaViewerModal .media-viewer-stage > video.viewer-media-enter-next{
	animation:viewerMediaCinematicNext .72s cubic-bezier(.16,1,.3,1) both !important;
}
#mediaViewerModal .media-viewer-stage > img.viewer-media-enter-prev,
#mediaViewerModal .media-viewer-stage > video.viewer-media-enter-prev{
	animation:viewerMediaCinematicPrev .72s cubic-bezier(.16,1,.3,1) both !important;
}
#mediaViewerModal .media-viewer-stage > img[style*="scale(2"],
#mediaViewerModal .media-viewer-stage > img[style*="scale(3"],
#mediaViewerModal .media-viewer-stage > img[style*="scale(4"],
#mediaViewerModal .media-viewer-stage > video[style*="scale(2"],
#mediaViewerModal .media-viewer-stage > video[style*="scale(3"],
#mediaViewerModal .media-viewer-stage > video[style*="scale(4"]{
	cursor:grab;
}
@keyframes viewerMediaCinematicIn{
	0%{
		opacity:0;
		filter:blur(18px) brightness(1.5) saturate(1.25);
		transform:translate3d(0,34px,-180px) scale(.84) rotateX(7deg);
	}
	42%{
		opacity:1;
		filter:blur(1px) brightness(1.12) saturate(1.06);
		transform:translate3d(0,-8px,20px) scale(1.035) rotateX(-1deg);
	}
	72%{
		filter:blur(0) brightness(1.03);
		transform:translate3d(0,2px,0) scale(.995);
	}
	100%{
		opacity:1;
		filter:none;
		transform:translate3d(0,0,0) scale(1);
	}
}
@keyframes viewerMediaCinematicNext{
	0%{
		opacity:0;
		filter:blur(16px) brightness(1.55) saturate(1.2);
		clip-path:inset(0 0 0 100%);
		transform:translate3d(150px,0,-220px) rotateY(-13deg) scale(.82);
	}
	36%{
		opacity:1;
		filter:blur(3px) brightness(1.16);
		clip-path:inset(0 0 0 22%);
		transform:translate3d(20px,0,-30px) rotateY(-3deg) scale(1.03);
	}
	68%{
		filter:blur(0) brightness(1.04);
		clip-path:inset(0);
		transform:translate3d(-8px,0,0) rotateY(0) scale(1.012);
	}
	100%{
		opacity:1;
		filter:none;
		clip-path:inset(0);
		transform:translate3d(0,0,0) rotateY(0) scale(1);
	}
}
@keyframes viewerMediaCinematicPrev{
	0%{
		opacity:0;
		filter:blur(16px) brightness(1.55) saturate(1.2);
		clip-path:inset(0 100% 0 0);
		transform:translate3d(-150px,0,-220px) rotateY(13deg) scale(.82);
	}
	36%{
		opacity:1;
		filter:blur(3px) brightness(1.16);
		clip-path:inset(0 22% 0 0);
		transform:translate3d(-20px,0,-30px) rotateY(3deg) scale(1.03);
	}
	68%{
		filter:blur(0) brightness(1.04);
		clip-path:inset(0);
		transform:translate3d(8px,0,0) rotateY(0) scale(1.012);
	}
	100%{
		opacity:1;
		filter:none;
		clip-path:inset(0);
		transform:translate3d(0,0,0) rotateY(0) scale(1);
	}
}
@media (prefers-reduced-motion:reduce){
	#mediaViewerModal .media-viewer-stage > img,
	#mediaViewerModal .media-viewer-stage > video{
		animation:none !important;
		filter:none !important;
		clip-path:none !important;
	}
}
#mediaViewerModal #mediaViewerClose {
	position: absolute !important;
	top: 14px !important;
	right: 14px !important;
	left: auto !important;
	bottom: auto !important;
	z-index: 100 !important;
}
@media (orientation: landscape),
	(min-width: 769px) {
	#mediaViewerModal #mediaViewerPrev,
	#mediaViewerModal #mediaViewerNext {
		position: absolute !important;
		top: 50% !important;
		bottom: auto !important;
		left: auto !important;
		right: auto !important;
		z-index: 100 !important;
		transform: translateY(-50%) !important;
	}
}
#mediaViewerModal .media-viewer-close {
	position: absolute !important;
	top: 12px !important;
	right: 14px !important;
	left: auto !important;
	bottom: auto !important;
	z-index: 100 !important;
}
@media (min-width: 768px), (orientation: landscape) {
	#mediaViewerModal .media-viewer-arrow {
		position: absolute !important;
		top: 50% !important;
		bottom: auto !important;
		left: auto !important;
		right: auto !important;
		width: 52px;
		height: 52px;
		margin: 0 !important;
		z-index: 100 !important;
	}
	#mediaViewerModal .media-viewer-prev,
	#mediaViewerModal .media-viewer-next {
		transform: translateY(-50%) !important;
	}
}
@media (orientation: portrait) and (max-width: 767px) {
	#mediaViewerModal .media-viewer-content {
		grid-template-rows:
			auto
			minmax(0, 1fr)
			auto
			auto
			auto !important;
	}
	#mediaViewerModal .media-viewer-stage {
		grid-row: 2 !important;
	}
	#mediaViewerModal .media-viewer-meta {
		grid-row: 3 !important;
	}
	#mediaViewerModal .media-viewer-arrow {
		position: static !important;
		top: auto !important;
		right: auto !important;
		bottom: auto !important;
		left: auto !important;
		width: 48px;
		height: 48px;
		margin: 0 !important;
		transform: none !important;
		align-self: center;
		z-index: 100 !important;
	}
	#mediaViewerModal .media-viewer-prev {
		grid-column: 1 !important;
		grid-row: 4 !important;
		justify-self: center !important;
		margin-right: 80px !important;
	}
	#mediaViewerModal .media-viewer-next {
		grid-column: 1 !important;
		grid-row: 4 !important;
		justify-self: center !important;
		margin-left: 80px !important;
	}
}
