.btn,
.btn-more,
.showcase-link {
	outline: none;
	border: 2px solid rgba(255, 142, 83, 0.4);
	border-radius: 0.3rem 0.5rem;
	padding: 0.5rem 0.6rem;
	background: linear-gradient(
		135deg,
		rgba(255, 142, 83, 0.15),
		rgba(255, 107, 107, 0.15)
	);
	color: rgb(255, 142, 83);
	font-weight: 900;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 12px rgba(255, 142, 83, 0.15);
}
.btn::before,
.btn-more::before,
.showcase-link::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.1),
		transparent
	);
	transition: left 0.5s;
}
.btn:hover,
.btn-more:hover,
.showcase-link:hover,
.btn:focus,
.btn-more:focus,
.showcase-link:focus {
	background: linear-gradient(
		135deg,
		rgba(255, 142, 83, 0.25),
		rgba(255, 107, 107, 0.25)
	);
	border-color: rgba(255, 142, 83, 0.7);
	color: rgb(255, 255, 255);
	box-shadow: 0 6px 20px rgba(255, 142, 83, 0.3),
		0 0 20px rgba(255, 142, 83, 0.2);
}
.btn:hover::before,
.btn-more:hover::before,
.showcase-link:hover::before,
.btn:focus::before,
.btn-more:focus::before,
.showcase-link:focus::before {
	left: 100%;
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: scale(0);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: scale(0);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}
@keyframes hologramGlow {
	0%,
	100% {
		box-shadow: 0 0 10px rgba(0, 183, 255, 0.2), 0 0 20px rgba(0, 183, 255, 0.1),
			0 0 40px rgba(0, 255, 255, 0.05);
	}
	50% {
		box-shadow: 0 0 20px rgba(0, 183, 255, 0.4), 0 0 40px rgba(0, 183, 255, 0.2),
			0 0 80px rgba(0, 255, 255, 0.1);
	}
}
@keyframes scanline {
	0% {
		background-position: 0 -100vh;
	}
	100% {
		background-position: 0 100vh;
	}
}
@keyframes float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}
* {
	outline: none;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
}

html {
	background-color: rgb(2, 26, 26);
	color: rgb(240, 240, 240);
}
@media only screen and (min-width: 768px) {
	html {
		font-size: 120%;
	}
}
@media only screen and (min-width: 2200px) and (min-height: 1200px) {
	html {
		font-size: 150%;
	}
}
@media only screen and (min-height: 2000px) {
	html {
		font-size: 250%;
	}
}

#home {
	background-color: rgb(2, 26, 26);
	position: relative;
	min-height: 100vh;
}
#home::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	pointer-events: none;
	background: repeating-linear-gradient(
		45deg,
		transparent,
		transparent 40px,
		rgba(255, 142, 83, 0.1) 40px,
		rgba(255, 142, 83, 0.1) 42px
	);
	opacity: 0.3;
}
@media only screen and (min-width: 600px) {
	#home::before {
		background: repeating-linear-gradient(
			45deg,
			transparent,
			transparent 60px,
			rgba(255, 142, 83, 0.1) 60px,
			rgba(255, 142, 83, 0.1) 62px
		);
	}
}
#home::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	pointer-events: none;
	background: linear-gradient(
		135deg,
		transparent 0%,
		rgba(0, 183, 255, 0.1) 45%,
		rgba(255, 142, 83, 0.1) 50%,
		rgba(0, 183, 255, 0.1) 55%,
		transparent 100%
	);
	animation: scanMove 8s ease-in-out infinite;
	opacity: 0.5;
}
@media only screen and (min-width: 600px) {
	#home::after {
		background: linear-gradient(
			135deg,
			transparent 0%,
			rgba(0, 183, 255, 0.03) 45%,
			rgba(255, 142, 83, 0.1) 50%,
			rgba(0, 183, 255, 0.03) 55%,
			transparent 100%
		);
		animation: scanMove 14s ease-in-out infinite;
		opacity: 0.4;
	}
}

@keyframes scanMove {
	0%,
	100% {
		transform: translateY(-100%);
		opacity: 0;
	}
	10% {
		opacity: 0.5;
	}
	50% {
		transform: translateY(0%);
		opacity: 0.7;
	}
	90% {
		opacity: 0.5;
	}
}
ul,
li {
	list-style-type: none;
}

a {
	font-weight: 900;
	text-decoration: none;
}

input,
select,
textarea,
button {
	color: inherit;
	font-size: inherit;
}

label,
input {
	display: block;
}

label {
	margin: 1rem 0;
	font-size: 1.15rem;
	font-weight: 600;
}

input {
	outline: none;
	border: none;
	border-bottom: 1px solid rgb(255, 123, 52);
	width: 17rem;
	margin: 1.5rem auto 0;
	background: transparent;
	text-align: center;
	transition: all 0.3s ease;
}
input:focus {
	border: 1px solid rgb(255, 123, 52);
	border-radius: 0.3rem 0.5rem;
	min-width: fit-content;
	padding: 0.5rem 0;
	color: rgb(255, 255, 255);
	box-shadow: 0 4px 12px rgba(255, 142, 83, 0.15);
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

.hidden-visually {
	position: absolute;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	overflow: hidden;
	width: 1px;
	height: 1px;
	white-space: nowrap;
}

@font-face {
	font-family: 'Dodger';
	src: url('../fonts/Dodger.woff');
}
@font-face {
	font-family: 'Chakra Petch';
	src: url('../fonts/ChakraPetch-Regular.woff');
	font-weight: normal;
}
@font-face {
	font-family: 'Chakra Petch';
	src: url('../fonts/ChakraPetch-Medium.woff');
	font-weight: 500;
}
@font-face {
	font-family: 'Chakra Petch';
	src: url('../fonts/ChakraPetch-SemiBold.woff');
	font-weight: 600;
}
@font-face {
	font-family: 'Chakra Petch';
	src: url('../fonts/ChakraPetch-Bold.woff');
	font-weight: 700;
}
html {
	font-family: 'Chakra Petch', sans-serif;
	font-weight: 400;
}

input,
select,
textarea,
button {
	font-family: inherit;
}

h1 {
	font-family: 'Dodger';
	font-size: 1.88rem;
	letter-spacing: 3px;
	background: rgb(240, 240, 240);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 0 20px rgba(0, 183, 255, 0.3);
	position: relative;
	display: inline-block;
	font-weight: normal;
}
@media only screen and (min-width: 1055px) {
	h1 {
		font-size: 2.4rem;
	}
}

h2 {
	margin: 0.5rem 0;
	font-size: 1.15rem;
	color: rgb(240, 240, 240);
	font-weight: 700;
}

p {
	font-size: 1.1rem;
	margin: 0 0 1rem;
	line-height: 1.6;
	color: rgb(240, 240, 240);
}

html,
body {
	scrollbar-color: rgb(255, 123, 52) rgb(2, 26, 26);
}

body::-webkit-scrollbar {
	width: 17px;
}

body::-webkit-scrollbar-track {
	background: rgb(2, 26, 26);
	border-left: 1px solid rgba(0, 183, 255, 0.2);
}

body::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, rgb(255, 142, 83), rgb(255, 89, 0));
	border-radius: 10px;
	border: 2px solid rgb(2, 26, 26);
	transition: background 0.3s ease;
}
body::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(180deg, rgb(255, 123, 52), rgb(255, 142, 83));
	box-shadow: 0 0 10px rgba(255, 142, 83, 0.3);
}

#showcase {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	height: 100vh;
	background: url('../img/POA-bg - mobile.jpg') center center/cover;
	padding-bottom: 1rem;
	opacity: 0;
	animation: fadeIn 2s ease-in forwards;
	position: relative;
}
#showcase::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		to bottom,
		rgba(2, 26, 26, 0.8),
		transparent 30%,
		transparent 70%,
		rgba(2, 26, 26, 0.8)
	);
	pointer-events: none;
}

@media only screen and (min-width: 1024px) {
	#showcase {
		background: url('../img/POA-bg.jpg') center center/cover;
	}
}

#navbar {
	z-index: 10;
	position: sticky;
	top: 0;
	background: rgba(2, 26, 26, 0.8);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(0, 183, 255, 0.2);
	box-shadow: 0 0 10px rgba(0, 183, 255, 0.3);
	transition: all 0.3s ease;
}

#menu {
	display: flex;
	justify-content: space-evenly;
}
@media only screen and (min-width: 1366px) {
	#menu {
		justify-content: center;
	}
}
@media only screen and (min-width: 1024px) {
	#menu:hover .menu-item:not(:hover),
	#menu:focus-within .menu-item:not(:focus-within) {
		opacity: 0.5;
		filter: blur(0.1rem);
	}
}

.menu-item {
	outline: none;
	border: none;
	color: rgb(255, 142, 83);
	font-weight: 900;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	flex: 1;
	text-align: center;
}
.menu-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.1),
		transparent
	);
	transition: left 0.5s;
}
.menu-item:hover {
	background: linear-gradient(
		135deg,
		rgba(255, 142, 83, 0.25),
		rgba(255, 107, 107, 0.25)
	);
	border-color: rgba(255, 142, 83, 0.7);
	color: rgb(255, 255, 255);
}
.menu-item:hover::before {
	left: 100%;
}
.menu-item:focus-within {
	color: rgb(255, 255, 255);
}
.menu-item:focus-within::before {
	left: 100%;
}

.menu-link {
	display: block;
	padding: 1.3rem 0.9rem;
	color: rgb(240, 240, 240);
	font-weight: 700;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (min-width: 768px) {
	.menu-link {
		padding: 1.3rem 3rem;
	}
}
@media only screen and (min-width: 1024px) {
	.menu-link {
		font-size: 1.2rem;
	}
	.menu-link:focus {
		background: linear-gradient(
			135deg,
			rgba(255, 142, 83, 0.25),
			rgba(255, 107, 107, 0.25)
		);
		box-shadow: 0 6px 20px rgba(255, 142, 83, 0.3),
			0 0 20px rgba(255, 142, 83, 0.2);
		outline: none;
	}
}
@media only screen and (min-width: 1366px) {
	.menu-link {
		padding: 1.5rem 2.9rem;
	}
}

#about {
	padding: 0 1rem;
}
@media only screen and (min-width: 1024px) {
	#about {
		max-width: 62.6rem;
		margin: 0 auto 1.3rem;
		display: flex;
		flex-flow: row wrap;
		justify-content: space-between;
	}
	#about .article {
		width: 49%;
		margin-bottom: 0.2rem;
	}
	#about .article:nth-child(2) {
		order: 3;
		width: 100%;
		text-align: center;
	}
	#about .article:nth-child(3) {
		order: 2;
	}
	#about .article:nth-child(4) {
		order: 4;
	}
	#about .article:nth-child(5) {
		order: 5;
	}
}

.patterns {
	color: rgb(255, 142, 83);
	font-weight: 700;
	text-shadow: 0 4px 12px rgba(255, 142, 83, 0.15);
}

.bio-link {
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bio-link:hover,
.bio-link:focus {
	text-decoration: underline;
	text-decoration-color: rgb(255, 142, 83);
	text-underline-offset: 4px;
}

.tree {
	text-align: center;
}

@media only screen and (min-width: 1024px) {
	#music {
		max-width: 62.6rem;
		margin: 0 auto 1.3rem;
	}
}
#music .article {
	margin: 0.5rem 1rem;
	text-align: center;
}

@media only screen and (min-width: 1024px) {
	#video {
		max-width: 62.6rem;
		margin: 0 auto 1.3rem;
	}
}
#video .article {
	margin: 0.5rem 1rem;
	text-align: center;
}

@media only screen and (min-width: 1024px) {
	#connect {
		max-width: 62.6rem;
		margin: 0 auto 1.3rem;
	}
}
#connect .article {
	margin: 0.5rem 1rem;
	text-align: center;
}

.icons {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: row wrap;
	gap: 0.6rem;
}
.icons a {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 1 0 30%;
}
@media only screen and (min-width: 1024px) {
	.icons {
		display: flex;
		justify-content: space-evenly;
		gap: initial;
	}
	.icons a {
		flex: content;
	}
	.icons a:focus {
		outline: none;
		border-radius: 0.3rem 0.5rem;
		color: rgb(255, 255, 255);
	}
	.icons a:focus .fab {
		color: rgb(255, 142, 83);
		filter: drop-shadow(0 0 15px currentColor);
	}
}

.fab {
	font-size: 2.2rem;
	padding: 0.7rem;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	filter: drop-shadow(0 0 5px currentColor);
}
.fab:hover {
	color: rgb(255, 142, 83);
	filter: drop-shadow(0 0 15px currentColor);
}

.fa-bandcamp {
	color: rgb(29, 160, 195);
}

.fa-facebook {
	color: rgb(59, 89, 152);
}

.fa-youtube {
	color: rgb(255, 0, 0);
}

.fa-soundcloud {
	color: rgb(254, 80, 0);
}

.fa-spotify {
	color: rgb(30, 215, 96);
}

.fa-deezer,
.fa-apple,
.fa-itunes {
	color: rgb(255, 255, 255);
}

.fa-amazon {
	color: rgb(0, 97, 174);
}

@media only screen and (min-width: 1024px) {
	#subscribe {
		max-width: 62.6rem;
		margin: 0 auto 1.3rem;
	}
}
#subscribe .article {
	margin: 0.5rem 1rem;
	text-align: center;
	margin-bottom: 1rem;
}

#footer {
	padding: 1rem 0;
	background: rgba(2, 26, 26, 0.8);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-top: 1px solid rgba(0, 183, 255, 0.2);
	box-shadow: 0 -2px 10px rgba(0, 183, 255, 0.1);
	font-size: 0.9rem;
	font-weight: 900;
	text-align: center;
}
@media only screen and (min-width: 1024px) {
	#footer {
		padding: 1.5rem 0;
		font-size: 1.1rem;
	}
}
#footer span {
	color: rgb(240, 240, 240);
}

#home-thanks,
#home-error {
	display: flex;
	flex-flow: column nowrap;
	min-height: 100vh;
}

#home-thanks h1,
#home-error h1 {
	background: linear-gradient(90deg, #00b7ff, #00ffff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 0 20px rgba(0, 183, 255, 0.3);
}

#home-thanks .divider,
#home-error .divider {
	margin: 3rem 0;
}

.wrapper {
	flex: 1;
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
}

#thank-you,
#error {
	margin: 0 auto;
	padding: 0 1rem;
}

#thank-you .article,
#error .article {
	padding: 0.5rem;
}

#thank-you p,
#error p {
	margin: 0;
	text-align: center;
}

.article {
	display: flex;
	flex-flow: column nowrap;
	border-radius: 0.5rem;
	margin: 1rem 0;
	padding: 0.1rem 0.5rem 0.7rem;
	background: rgba(2, 26, 26, 0.8);
	border: 1px solid rgba(0, 183, 255, 0.2);
	box-shadow: 0 0 10px rgba(0, 183, 255, 0.2), 0 0 20px rgba(0, 183, 255, 0.1),
		0 0 40px rgba(0, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}
.article::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		to bottom,
		transparent 0%,
		rgba(0, 183, 255, 0.05) 50%,
		transparent 100%
	);
	pointer-events: none;
	opacity: 0.5;
}
@media only screen and (min-width: 1024px) {
	.article {
		padding: 0.4rem 1.2rem 0.7rem;
	}
	.article:hover {
		box-shadow: 0 0 20px rgba(0, 183, 255, 0.4), 0 0 40px rgba(0, 183, 255, 0.2),
			0 0 80px rgba(0, 255, 255, 0.1);
		border-color: rgba(0, 183, 255, 0.4);
		transform: translateY(-2px);
	}
}

.showcase-link {
	position: relative;
	z-index: 10;
}
@media only screen and (min-width: 1024px) {
	.showcase-link:hover {
		transition: transform 0.1s ease-in;
	}
	.showcase-link:focus {
		outline: none;
		border-radius: 0.3rem 0.5rem;
		color: rgb(255, 255, 255);
	}
}

.btn-more {
	align-self: center;
	margin-bottom: 0.7rem;
	font-size: 1rem;
	animation: none;
}
@media only screen and (min-width: 1024px) {
	.btn-more:hover {
		transition: transform 0.1s ease-in;
	}
	.btn-more:focus {
		outline: none;
		border-radius: 0.3rem 0.5rem;
		color: rgb(255, 255, 255);
	}
}

@media only screen and (min-width: 1024px) {
	.btn:hover {
		transition: transform 0.1s ease-in;
	}
	.btn:focus {
		outline: none;
		border-radius: 0.3rem 0.5rem;
		color: rgb(255, 255, 255);
	}
}

#subscribe .btn {
	margin: 1.7rem 0 1rem;
}

.divider {
	text-align: center;
	margin: 2rem 0;
}
.divider img {
	height: 5vh;
	filter: drop-shadow(0 0 10px rgba(0, 183, 255, 0.3));
	opacity: 0.7;
	transition: all 0.3s ease;
}
.divider img:hover {
	filter: drop-shadow(0 0 20px rgba(0, 183, 255, 0.5));
	opacity: 1;
}

.modal {
	display: none;
	position: relative;
	z-index: -100;
}
@media only screen and (min-width: 1024px) {
	.modal {
		z-index: 100;
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.7);
	}
}

.open {
	display: block;
}

@media only screen and (min-width: 1024px) {
	.content {
		border-radius: 0.5rem;
		position: absolute;
		top: 50%;
		left: 50%;
		width: 50rem;
		padding: 1rem 1.5rem;
		background: rgba(2, 26, 26, 0.8);
		backdrop-filter: blur(15px);
		-webkit-backdrop-filter: blur(15px);
		border: 1px solid rgba(0, 183, 255, 0.3);
		box-shadow: 0 0 20px rgba(0, 183, 255, 0.4), 0 0 40px rgba(0, 183, 255, 0.2),
			0 0 80px rgba(0, 255, 255, 0.1);
		transform: translate(-50%, -50%);
		z-index: 100;
	}
	.content h2 {
		color: rgb(240, 240, 240);
	}
	.content p {
		color: rgb(240, 240, 240);
	}
	.content .patterns {
		color: rgb(255, 142, 83);
		text-shadow: 0 4px 12px rgba(255, 142, 83, 0.15);
	}
	.content *:focus {
		outline: 3px solid rgb(255, 123, 52);
		outline-offset: 2px;
	}
	.content h2[tabindex]:not([tabindex='-1']):focus,
	.content h3[tabindex]:not([tabindex='-1']):focus,
	.content p[tabindex]:not([tabindex='-1']):focus {
		outline: 3px solid rgb(255, 123, 52);
		outline-offset: 2px;
	}
}

@media only screen and (min-width: 1024px) {
	.close-button {
		float: right;
		border: 2px solid rgba(255, 142, 83, 0.4);
		border-radius: 0.3rem 0.5rem;
		width: 1.5rem;
		background: linear-gradient(
			135deg,
			rgba(255, 142, 83, 0.15),
			rgba(255, 107, 107, 0.15)
		);
		color: rgb(255, 142, 83);
		line-height: 1.2rem;
		text-align: center;
		cursor: pointer;
		transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
		box-shadow: 0 4px 12px rgba(255, 142, 83, 0.15);
	}
	.close-button:hover,
	.close-button:focus {
		background: linear-gradient(
			135deg,
			rgba(255, 142, 83, 0.25),
			rgba(255, 107, 107, 0.25)
		);
		border-color: rgba(255, 142, 83, 0.7);
		color: rgb(255, 255, 255);
		box-shadow: 0 6px 20px rgba(255, 142, 83, 0.3),
			0 0 20px rgba(255, 142, 83, 0.2);
	}
}

#soundcloud {
	border: 1px solid rgba(0, 183, 255, 0.3);
	border-radius: 0.3rem 0.5rem;
	width: 100%;
	height: 30rem;
	object-fit: cover;
	box-shadow: 0 0 10px rgba(0, 183, 255, 0.2), 0 0 20px rgba(0, 183, 255, 0.1),
		0 0 40px rgba(0, 255, 255, 0.05);
	transition: all 0.3s ease;
}
#soundcloud:hover {
	box-shadow: 0 0 20px rgba(0, 183, 255, 0.4), 0 0 40px rgba(0, 183, 255, 0.2),
		0 0 80px rgba(0, 255, 255, 0.1);
	border-color: rgba(0, 183, 255, 0.5);
}
@media only screen and (min-width: 1024px) {
	#soundcloud {
		height: 35rem;
	}
}

.youtube,
.youtube img,
.play-button {
	cursor: pointer;
}

.youtube {
	position: relative;
	overflow: hidden;
	border-radius: 0.3rem 0.5rem;
	margin-bottom: 1.5rem;
	padding-top: 56.25%;
	border: 1px solid rgba(0, 183, 255, 0.3);
	box-shadow: 0 0 10px rgba(0, 183, 255, 0.2), 0 0 20px rgba(0, 183, 255, 0.1),
		0 0 40px rgba(0, 255, 255, 0.05);
	transition: all 0.3s ease;
}
.youtube:hover {
	box-shadow: 0 0 20px rgba(0, 183, 255, 0.4), 0 0 40px rgba(0, 183, 255, 0.2),
		0 0 80px rgba(0, 255, 255, 0.1);
	border-color: rgba(0, 183, 255, 0.5);
}
.youtube:focus {
	outline: 3px solid rgb(255, 123, 52);
	outline-offset: 2px;
}
.youtube img {
	opacity: 0.7;
	top: -16.82%;
	left: 0;
	width: 100%;
	transition: opacity 0.3s ease;
}
.youtube:hover img {
	opacity: 0.9;
}
.youtube iframe {
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	border-radius: 0.3rem 0.5rem;
}

.play-button {
	z-index: 1;
	opacity: 0.9;
	border-radius: 0.3rem 0.5rem;
	width: 6rem;
	height: 3.5rem;
	background: linear-gradient(
		135deg,
		rgba(255, 142, 83, 0.15),
		rgba(255, 107, 107, 0.15)
	);
	border: 2px solid rgba(255, 142, 83, 0.4);
	box-shadow: 0 6px 20px rgba(255, 142, 83, 0.3),
		0 0 20px rgba(255, 142, 83, 0.2);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.play-button:hover {
	background: linear-gradient(
		135deg,
		rgba(255, 142, 83, 0.25),
		rgba(255, 107, 107, 0.25)
	);
	border-color: rgba(255, 142, 83, 0.7);
	box-shadow: 0 6px 20px rgba(255, 142, 83, 0.3),
		0 0 20px rgba(255, 142, 83, 0.2), 0 0 30px rgba(255, 142, 83, 0.4);
	transform: translate3d(-50%, -41%, 0);
}
.play-button:before {
	content: '';
	border-style: solid;
	border-width: 1rem 0 1rem 1.6rem;
	border-color: transparent transparent transparent rgb(255, 255, 255);
	transition: border-color 0.3s ease;
}

.youtube img,
.youtube iframe,
.play-button,
.play-button:before {
	position: absolute;
}

.play-button,
.play-button:before {
	top: 45%;
	left: 50%;
	transform: translate3d(-50%, -41%, 0);
}

/*# sourceMappingURL=main.css.map */
