:root {
	--bg: #0f0f0d;
	--gold: #a6864c;
	--text: #e0d9c2;
	--dark: #1a1a17;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', sans-serif;
	background: var(--bg);
	color: var(--text);
	line-height: 1.5;
	padding-top: 100px;
}

.concerts-hero {
	text-align: center;
	padding: 6rem 5% 4rem;
	background: linear-gradient(to bottom, rgba(40,40,38,0.4) 0%, var(--bg) 100%);
	position: relative;
	height: 85vh;
	min-height: 500px;
	max-height: 1100px;
	overflow: hidden;
}

.concerts-hero h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(5rem, 12vw, 10rem);
    color: var(--gold);
    margin-bottom: 1rem;
    text-shadow: 0 0 80px rgba(166,134,76,0.6);

    letter-spacing: 0.15em;
    text-indent: 0.15em;
    text-align: center;
    margin-right: 0;
}

.concerts-hero p {
	font-size: clamp(1.4rem, 4vw, 2rem);
	max-width: 800px;
	margin: 0 auto;
	margin-top: 10px;
	opacity: 0.9;
}

.concerts-hero::after {
	content: "";
	position: absolute;
	left: 0; right: 0; bottom: 0;
	height: 150px;
	background: linear-gradient(to bottom, transparent, var(--bg));
	z-index: 1;
	pointer-events: none;
}

.concerts-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	filter: brightness(0.45) contrast(1);
	z-index: 1;
	transition: filter 0.5s ease;
}

.concerts-bg::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(
		ellipse at center,
		transparent 30%,
		rgba(17,17,16,0.7) 60%,
		var(--bg) 100%
	);
	z-index: 3;
	transition: background 0.5s ease;
}

.concerts-hero-content {
	position: relative;
	z-index: 4;
	padding: 8rem 5% 6rem;
}

.events-table-container {
	max-width: 1100px;
	margin: 3rem auto;
	padding: 0 5%;
}

.concerts-section {
    padding-top: 90px;
}


.tour-name {
    text-align: center;
    font-family: 'Cinzel', serif;
    padding-bottom: 15pt;
    font-size: clamp(2rem, 12vw, 5.4rem);
    text-shadow: 0 0 80px rgba(187, 152, 88, 0.918);
    color: var(--gold);
}

.events-table {
	background: rgba(30, 30, 28, 0.78);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(166, 134, 76, 0.24);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 5px 55px rgba(166,134,76,0.28);
}

.event-row {
	display: flex;
	border-bottom: 1px solid rgba(166, 134, 76, 0.18);
	transition: background 0.22s ease;
}

.event-row:last-child {
	border-bottom: none;
}

.event-row:hover {
	background: rgba(166, 134, 76, 0.06);
}

.date-column {
	width: 145px;
	flex: 0 0 145px;
	background: rgba(166, 134, 76, 0.09);
	padding: 1.3rem 0.9rem;
	text-align: left;
	border-right: 1px solid rgba(166, 134, 76, 0.28);
}

.date-main {
	position: relative;
	margin-bottom: 0.5rem;
}

.month-sup {
	position: absolute;
	top: -1px;
	right: 5px;
	font-size: 1.05rem;
	font-weight: 500;
	color: var(--gold);
	opacity: 0.9;
	letter-spacing: 0.04em;
}

.day-big {
	font-family: 'Cinzel', serif;
	font-size: 4.4rem;
	font-weight: 700;
	color: var(--gold);
	line-height: 0.9;
	text-shadow: 0 3px 12px rgba(166,134,76,0.38);
	display: block;
}

.weekday {
	font-size: 0.95rem;
    margin-top: 0.2rem;
	color: #d0c8b0;
	opacity: 0.84;
}

.info-panel {
	flex: 1;
	padding: 1.4rem 2.2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}

.city-block {
	flex: 1;
}

.city-name {
	font-family: 'Cinzel', serif;
	font-size: 2.6rem;
	font-weight: 600;
	color: #f3eedc;
	margin-bottom: 0.25rem;
}

.venue-name {
	font-size: 1.05rem;
	color: #b5aa8f;
	opacity: 0.93;
}

.btn-details {
	padding: 0.8rem 2rem;
	background: #292927;
	color: #d8cea6;
	border: 1px solid rgba(166, 134, 76, 0.48);
	border-radius: 10px;
	font-size: 1.02rem;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.24s ease;
	min-width: 142px;
	text-align: center;
	box-shadow: 0 2px 8px rgba(0,0,0,0.35);
	cursor: pointer;
}

.btn-details:hover {
	background: rgba(166, 134, 76, 0.20);
	color: var(--gold);
	border-color: var(--gold);
	transform: translateY(-1px);
	box-shadow: 0 5px 15px rgba(166,134,76,0.28);
}

/* Модальное окно (из исходников) */
.concert-modal {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.88);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 10004;
	padding: 1.5rem 1rem;
	overflow-y: auto;
}

.concert-modal.active {
	display: flex;
}

.modal-backdrop-layer {
	position: relative;
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
	padding: 30px 60px;
	box-sizing: border-box;
}

.concert-modal-content {
	position: relative;
	background: rgba(30,30,28,0.97);
	border: 1px solid rgba(166,134,76,0.28);
	border-radius: 16px;
	padding: 2.2rem 2.4rem 2.6rem;
	width: 100%;
	max-width: 960px;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 25px 70px rgba(0,0,0,0.65);
	animation: fadeIn 0.35s ease;
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(30px); }
	to { opacity: 1; transform: translateY(0); }
}

.modal-close {
	position: absolute;
	top: 10px;
	right: 0px;
	width: 50px;
	height: 50px;
	background: rgba(40,40,38,0.92);
	border: 1px solid rgba(166,134,76,0.55);
	border-radius: 50%;
	color: var(--gold);
	font-size: 2.2rem;
	line-height: 46px;
	text-align: center;
	cursor: pointer;
	transition: all 0.22s ease;
	z-index: 10;
}

.modal-close:hover {
	background: rgba(166,134,76,0.22);
	transform: rotate(90deg) scale(1.1);
	box-shadow: 0 6px 22px rgba(166,134,76,0.38);
}

.modal-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.modal-title {
	font-family: 'Cinzel', serif;
	font-size: 2.6rem;
	color: var(--gold);
	margin-bottom: 0.5rem;
}

.modal-date {
	font-size: 1.45rem;
	color: #ddd;
	margin-bottom: 0.3rem;
}

.modal-location {
	font-size: 1.4rem;
	opacity: 0.9;
	margin-bottom: 1.8rem;
}

.modal-description {
	font-size: 1.16rem;
	line-height: 1.65;
}

.modal-description p {
	margin-bottom: 1.4rem;
	text-align: justify;
}

.modal-tickets {
	display: block;
	width: fit-content;
	margin: 2.2rem auto 0;
	min-width: 240px;
	padding: 1.2rem 3.4rem;
	background: var(--gold);
	color: var(--bg);
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1.16rem;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 5px 18px rgba(166,134,76,0.3);
}

.modal-tickets:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 32px rgba(166,134,76,0.45);
}

.concert-modal-content::-webkit-scrollbar {
	width: 8px;
}

.concert-modal-content::-webkit-scrollbar-track {
	background: rgba(20,20,18,0.7);
	border-radius: 4px;
}

.concert-modal-content::-webkit-scrollbar-thumb {
	background: rgba(166,134,76,0.35);
	border-radius: 4px;
	border: 2px solid rgba(20,20,18,0.7);
}

.concert-modal-content::-webkit-scrollbar-thumb:hover {
	background: rgba(166,134,76,0.55);
}

@media (max-width: 820px) {
	.event-row {
		flex-direction: column;
	}

	.date-column {
		width: 100%;
		flex: none;
		border-right: none;
		border-bottom: 1px solid rgba(166, 134, 76, 0.28);
		padding: 1.6rem 1.2rem;
	}

	.info-panel {
		flex-direction: column;
		align-items: stretch;
		padding: 1.8rem 2rem;
		gap: 1.4rem;
	}

	.btn-details {
		align-self: stretch;
		text-align: center;
	}

	.city-name {
		font-size: 2rem;
	}

	.day-big {
		font-size: 3.6rem;
	}
}

@media (max-width: 768px) {
    .concerts-hero {
        padding: 4rem 5% 3rem;
        height: 60vh;
        min-height: 400px;
    }
    .concerts-hero h1 {
        font-size: clamp(3rem, 10vw, 5rem); 
        letter-spacing: 0.05em;
        text-indent: 0;
        margin-right: -0.05em;
        text-align: center;
        width: 100%;
        display: block;
        word-wrap: break-word;
    }

    .concerts-hero-content {
        padding: 5rem 15px 4rem; 
        width: 100%;
        margin: 0;
    }
}

@media (max-width: 480px) {
	.events-table-container {
		padding: 0 3%;
	}
	.date-column {
		padding: 1.4rem 0.8rem;
	}
	.month-sup {
		font-size: 0.95rem;
		top: -2px;
		right: 0;
	}
	.day-big {
		font-size: 3.2rem;
	}
	.city-name {
		font-size: 1.8rem;
	}
	.venue-name {
		font-size: 1.05rem;
	}
	.btn-details {
		padding: 0.9rem 1.8rem;
		font-size: 1rem;
		min-width: auto;
	}
	.modal-backdrop-layer {
		padding: 20px 15px;
	}
	.concert-modal-content {
		padding: 1.6rem 1.4rem 2rem;
	}
	.modal-title {
		font-size: 2.1rem;
	}
	.modal-image {
		width: 100%;
	}
}

@media (max-width: 768px) {
	.modal-backdrop-layer {
		padding: 30px 10px;
	}
	.concert-modal-content {
		padding: 0.8rem 1.0rem 1.3rem 0.6rem;
	}
	.modal-close {
		width: 55px;
		height: 55px;
		font-size: 1.8rem;
		line-height: 44px;
		top: 10px;
		right: 0px;
	}
	.modal-title {
		font-size: 1.8rem;
	}
	.modal-date {
		font-size: 1.45rem;
		text-align: left;
	}
	.modal-description {
		font-size: 1.1rem;
	}
	.modal-description p {
		text-align: left;
		hyphens: auto;
	}
	.concert-modal-content {
		max-height: 80vh;
	}
}

@media (max-width: 479px) {
	.modal-tickets {
		margin: 2rem auto 0;
		width: 60%;
		padding: 1rem 1.5rem;
		font-size: 1rem;
	}
}

#radario-container {
    width: 100%;
    /* Ограничиваем высоту, чтобы появился скролл, если контент длинный */
    height: 70vh; 
    min-height: 500px;
    margin-top: 20px;
    background: #1a1a17;
    border-radius: 8px;
    
    /* ВКЛЮЧАЕМ СКРОЛЛ */
    overflow-y: auto !important; 
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch; /* Плавный скролл на iPhone */
    
    filter: saturate(0.65) brightness(0.9) contrast(1.1) !important;
}

/* Настраиваем сам виджет внутри */
#radario-container [id^="radarioWidget"],
#radario-container iframe {
    position: relative !important;
    width: 100% !important;
    /* Высота должна быть либо фиксированной большой, либо auto */
    min-height: 800px !important; 
    border: none !important;
    display: block !important;
}

/* Стилизация скроллбара, чтобы он был в стиле сайта */
#radario-container::-webkit-scrollbar {
    width: 6px;
}
#radario-container::-webkit-scrollbar-track {
    background: var(--dark);
}
#radario-container::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}