<style>
/* streaming link */

/* below .streaming-box code is added to style.css file also because it is not working only on movie.css file */
.streaming-box {
	margin: 20px auto;
	padding: 20px 20px;
	max-width: 420px;
	border: 2px solid #0088cc;
	border-radius: 12px;
	background-color: #fff;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	text-align: center;
	font-family: sans-serif;
}
.streaming-box a {
	text-decoration: none;
	color: #000;
	font-weight: bold;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 24px;
}
.streaming-box a:hover {
	color: red;
}
.streaming-box img {
	height: 100px;
	vertical-align: middle;
	border-radius: 6px;
}
 @media only screen and (max-width: 768px) {
.streaming-box {
	margin: 0px 20px 0px 20px;
}
.streaming-box a {
	font-size: 18px;
}
}
/* review carousel */
.review-carousel {
	background: #e3f1fc;
	display: flex;
	align-items: center;
	padding: 20px 0;
	max-width: 800px;
	margin: 0px auto;
	overflow: hidden;
}
.carousel-slide {
	flex: 1;
	display: none;
	justify-content: center;
	align-items: center;
}
.carousel-slide.active {
	display: flex;
}
.review-card {
	background: #fff;
	border-radius: 6px;
	box-shadow: 0 1px 4px rgba(0,0,0,0.1);
	padding: 25px;
	width: 550px;
	min-height: 190px;
	transition: box-shadow .2s;
	font-size: 1.09em;
	box-sizing: border-box;
}
.review-header {
	display: flex;
	align-items: center;
	margin-bottom: 8px;
	font-size: 1.13em;
}
.avatar {
	background: #b4d2f1;
	color: #306289;
	border-radius: 50%;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 1.3em;
	margin-right: 12px;
	flex-shrink: 0;
}
.review-meta span {
	display: block;
	font-size: 0.97em;
	font-weight: bold;
}
.review-meta span.review-date {
  font-size: 0.75em;
  font-weight: normal; 
}
.review-rating {
	color: #fbc02d;
	margin-bottom: 8px;
	font-size: 1.21em;
	letter-spacing: 2px;
}
.carousel-arrow {
	width: 50px;
	height: 50px;
	border: none;
	border-radius: 50%;
	background: linear-gradient(135deg, #b4d2f1 40%, #42a5f5 100%);
	box-shadow: 0 2px 8px rgba(66, 165, 245, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2em;
	color: #fff;
	transition: background 0.3s, transform 0.15s, box-shadow 0.3s, color 0.25s;
	cursor: pointer;
	position: relative;
	margin: 100px 15px;
	flex-shrink: 0;
}
.carousel-arrow.left::before {
	content: "←";
}
.carousel-arrow.right::before {
	content: "→";
}
.carousel-arrow:hover,  .carousel-arrow:focus {
	background: linear-gradient(135deg, #42a5f5 0%, #377bce 100%);
	box-shadow: 0 4px 14px rgba(66, 165, 245, 0.25);
	color: #e3f1fc;
	outline: none;
}
.carousel-arrow:active {
	transform: scale(0.96);
}

    /* Mobile Responsiveness */
    @media only screen and (max-width: 768px) {
.review-carousel {
	flex-direction: column;
	align-items: stretch;
	padding: 0 10px;
}
.carousel-arrow {
	width: 44px;
	height: 44px;
	font-size: 2.2em;
	margin: 120px auto;
	position: static;
	box-shadow: 0 2px 10px rgba(66,165,245,0.13);
}
.carousel-slide,  .review-card {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	margin: 0;
	padding-left: 20px;
	padding-right: 20px;
}
.review-card {
	font-size: 0.87em;
	padding-top: 28px;
	padding-bottom: 28px;
	min-height: 0;
}
.review-header {
	font-size: 1.11em;
}
.avatar {
	width: 48px;
	height: 48px;
	font-size: 1.44em;
	margin-right: 12px;
}
.review-rating {
	font-size: 1.21em;
	margin-bottom: 8px;
}
.review-text {
	font-size: 1em;
	line-height: 1.55;
}
.review-meta span {
	display: block;
	font-size: 0.87em;
	font-weight: bold;
}
.review-meta span.review-date {
    font-size: 0.7em;
  }
}
/* character images */
.tab-header {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	/* border-bottom: 2px solid #0066cc; */
	margin-bottom: 10px;
}
.tab-button {
	padding: 10px 16px;
	font-size: 16px;
	background: transparent;
	border: none;
	border-bottom: 3px solid transparent;
	color: #000;
	cursor: pointer;
	transition: all 0.3s;
	flex-shrink: 0;
}
.tab-button.active {
	color: red;
	border-color: #00aaff;
	font-weight: bold;
}
.tab-content {
	display: none;
	max-width: 500px;
	margin: 0 auto;
	background: #ffffff11;
	padding: 20px;
	border-radius: 10px;
}
.tab-content.active {
	display: block;
}
.tab-content img {
	width: 100%;
	max-height: 380px;
	object-fit: cover;
	border-radius: 10px;
	margin-bottom: 15px;
}
.tab-content p {
	color: #000;
	font-size: 15px;
}
 @media (max-width: 500px) {
.tab-button {
	font-size: 14px;
	padding: 8px 12px;
}
.tab-content p {
	font-size: 14px;
}
}
/* voice artists */
.characters-container {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
	margin: 0 20px;
}
.character-card {
	background: white;
	border-radius: 18px;
	width: 120px;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 10px 8px;
	box-shadow: 0 1px 6px rgba(0,0,0,0.05);
}
.character-card img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 16px;
	margin-bottom: 10px;
}
.character-name {
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	margin: 0;
	line-height: 1.1;
}
.character-title {
	font-size: 14px;
	color: #444;
	text-align: center;
	margin: 2px 0 0 0;
	line-height: 1.1;
}
 @media only screen and (max-width: 768px) {
.characters-container {
	justify-content: flex-start;
	gap: 10px;
}
.character-card {
	width: calc(50% - 5px);
	min-width: 100px;
	box-sizing: border-box;
	margin-bottom: 10px;
}
.character-card:only-child,  .character-card:last-child:nth-child(odd) {
	margin-left: auto;
	margin-right: auto;
}
}
/* wallpaper */
.gallery {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
	padding: 0 8px 40px 8px;
}
.gallery a {
	display: block;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 2px 10px #bbb;
	transition: transform 0.18s;
}
.gallery img {
	width: 140px;
	height: 220px;
	object-fit: cover;
	display: block;
	background: #eee;
}
.gallery a:active,  .gallery a:focus {
	outline: 2px solid #90caf9;
	transform: scale(1.03);
}
 @media (max-width: 600px) {
.gallery {
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}
.gallery a {
	max-width: 47vw;
}
.gallery img {
	aspect-ratio: 2/3;
}
}
 @media (max-width: 400px) {
.header {
	font-size: 1.05rem;
}
.gallery a {
	max-width: 98vw;
}
}
</style>