	.expand-button {
	margin: 20px auto;
	text-align: center;
	display: block;
	padding: 12px 28px;
	font-size: 1em;
	font-weight: 600;
	border-radius: 30px;
	background: transparent;
	color: #88d3ce;
	border: 2px solid #88d3ce;
	cursor: pointer;
	transition: all 0.3s ease;
	}

	.expand-button:hover {
	background: #88d3ce;
	color: #000;
	transform: scale(1.05);
	}

	.similar-section {
	max-width: 1200px;
	margin: 0 auto 20px;
	padding: 20px;
	text-align: center;
	border-radius: 10px;
	background: #1d1d1d;
	}

	.similar-section h2 {
	font-size: 2.4em;
	font-weight: 600;
	margin: 10px;
	background: linear-gradient(to right, #88d3ce, #6e45e2);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	}

	.similar-grid-wrapper {
	max-height: 440px;
	overflow: hidden;
	display: flex;
	justify-content: center;
	}

	.similar-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	max-width: 1200px;
	min-width: 60%;
	}


	.similar-card {
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.06);
	border-radius: 16px;
	overflow: hidden;
	backdrop-filter: blur(12px);
	box-shadow: 0 6px 20px rgba(0,0,0,0.4);
	transition: transform 0.3s ease;
	width: 100%;
	max-width: 180px;
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	min-height: 420px;
	}

	.similar-card:hover {
	transform: scale(1.04);
	}

	.similar-card img {
	width: 100%;
	height: 240px;
	object-fit: cover;
	display: block;
	}

	.card-info {
	padding: 12px 14px 16px;
	text-align: left;
	}

	.card-title {
	font-size: 1em;
	font-weight: 600;
	margin-bottom: 5px;
	color: #eaeaea;
	}

	.card-meta {
	font-size: 0.85em;
	color: #aaa;
	margin-bottom: 4px;
	}

	.card-genres {
	font-size: 0.85em;
	color: #88d3ce;
	margin-bottom: 6px;
	}

	.card-rating {
	font-size: 0.9em;
	color: #ffd700;
	font-weight: bold;
	}

	/* Адаптация под мобильные */
	@media (max-width: 1080px) {
	.similar-grid-wrapper {
	max-height: none;
	overflow: visible;
	padding: 0 10px;
	}

	.similar-grid {
	justify-content: center;
	gap: 15px;
	}

	.similar-card {
	width: 45%;
	max-width: 160px;
	}
	}

	@media (max-width: 480px) {
	.similar-card {
	width: 100%;
	max-width: 100%;
	}
	}

	@media (max-width: 768px) {
	.similar-grid-wrapper {
	max-height: none;
	overflow: visible;
	}

	.similar-grid {
	grid-template-columns: repeat(2, 1fr);
	}

	.similar-card img {
	height: 200px;
	}

	.card-title {
	font-size: 0.95em;
	}
	}

	@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');

	body {
	margin: 0;
	padding: 0;
	font-family: 'Montserrat', sans-serif;
	background: radial-gradient(circle at top left, #0f0f1a 0%, #050509 100%);
	color: #eaeaea;
	cursor:default;
	}

	header {
	text-align: center;
	padding: 80px 20px 20px;
	background: linear-gradient(to right, #6e45e2, #88d3ce);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	}

	header h1 {
	font-size: 3.5em;
	margin: 0;
	font-weight: 600;
	}

	header p {
	font-size: 1.2em;
	margin-top: 10px;
	color: #aaa;
	}

	main {
	max-width: 1200px;
	margin: auto;
	padding: 40px 20px;
	display: flex;
	flex-direction: column;
	gap: 40px;
	}

	.movie-details {
	display: flex;
	gap: 40px;
	flex-wrap: wrap;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(15px);
	border-radius: 20px;
	padding: 30px;
	box-shadow: 0 8px 32px rgba(0,0,0,0.4);
	}

	.movie-details img {
	border-radius: 16px;
	box-shadow: 0 8px 20px rgba(0,0,0,0.5);
	max-width: 360px;
	height: 30%;
	}

	.movie-info {
	flex: 1;
	}

	.movie-info h2 {
	font-size: 2.2em;
	margin-bottom: 20px;
	color: #ffffff;
	}

	.movie-info p {
	margin: 10px 0;
	line-height: 1.6;
	font-size: 1.05em;
	color: #d1d1d1;
	}

	.movie-info strong {
	color: #88d3ce;
	}

	.slider {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 6px 24px rgba(0,0,0,0.3);
	border-radius: 10px;
	background: #1d1d1d;
	padding: 10px;
	}

	.slider img {
	height: 450px;
	object-fit: cover;
	display: none;
	margin: auto;
	}

	.slider img.active {
	display: block;
	animation: fade 1s ease-in-out;
	}

	@keyframes fade {
	from { opacity: 0; }
	to { opacity: 1; }
	}

	.slider-nav {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
	padding: 0 20px;
	}

	.slider-nav button {
	background: rgba(0,0,0,0.6);
	color: #fff;
	border: none;
	border-radius: 50%;
	width: 48px;
	height: 48px;
	font-size: 1.5em;
	cursor: pointer;
	transition: background 0.3s ease;
	}

	.slider-nav button:hover {
	background: rgba(255,255,255,0.2);
	}

	.watch-now {
	text-align: center;
	}

	.install-button {
	display: inline-block;
	padding: 16px 36px;
	font-size: 1.1em;
	font-weight: 600;
	color: #fff;
	background: transparent;
	border: 2px solid #88d3ce;
	border-radius: 30px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 0 15px rgba(136, 211, 206, 0.3);
	}

	.install-button:hover {
	background: #88d3ce;
	color: #000;
	box-shadow: 0 0 20px rgba(136, 211, 206, 0.6);
	transform: scale(1.05);
	}

	footer {
	padding: 30px 20px;
	background: #0b0b13;
	text-align: center;
	color: #666;
	font-size: 0.9em;
	}

	@media (max-width: 768px) {
	.movie-details {
	flex-direction: column;
	padding: 20px;
	}

	.movie-details img {
	margin: auto;
	}

	.slider img {
	height: 280px;
	}
	}
	a {
	text-decoration: none;
	color: unset;
	}
.age-warning {
  background-color: #ffeded;
  color: #a30000;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: bold;
  border: 2px solid #a30000;
  border-radius: 6px;
  margin: 20px auto;
  max-width: 600px;
  text-align: center;
  box-shadow: 0 0 8px rgba(163, 0, 0, 0.2);
}
