/*
    ░█████╗░░█████╗░██████╗░██╗░░██╗██╗░░░██╗
    ██╔══██╗██╔══██╗██╔══██╗██║░░██║██║░░░██║
    ███████║███████║██║░░██║███████║██║░░░██║
    ██╔══██║██╔══██║██║░░██║██╔══██║██║░░░██║
    ██║ ░██║██║░░██║██████╔╝██║░░██║╚██████╔╝
    ╚═╝░░╚═╝╚═╝░░╚═╝╚═════╝░╚═╝░░╚═╝░╚═════╝░
*/

/* @import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Tektur:wght@400..900&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Turret+Road:wght@200;300;400;500;700;800&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Jura:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

body {
	width: 100%;
	/* font-family: "Tektur", serif; */
	font-family: "Quicksand", sans-serif;

}

* {
	box-sizing: border-box;
}

a {
	text-decoration: none;
}

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: #000000;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	transition: opacity 0.5s ease-out;
}

/* Logo zooms in and fades smoothly */
.preloader img {
	width: 250px;
	animation: zoomFade 5s ease-in-out forwards;
	/* animation-iteration-count: infinite; */
}

@keyframes zoomFade {
	0% {
		transform: scale(1);
		opacity: 1;
	}

	50% {
		transform: scale(1.2);
		opacity: 0.2;
	}

	75% {
		transform: scale(0.9);
		opacity: 0.7;
	}

	100% {
		transform: scale(1.5);
		opacity: 1;
	}
}

.loading-line {
	width: 0;
	height: 1.5px;
	border-radius: 100px;
	background: linear-gradient(to right, #ff0000, #681919, #ff0000);
	/* Smooth glowing effect */
	margin-top: 20px;
	/* Space between logo and line */
	animation: loadLine 4s ease-in-out forwards;
}

@keyframes loadLine {
	from {
		width: 0;
	}

	to {
		width: 260px;
		/* Match the width of the logo */
	}
}

/* Initially hide the site content */
.site-content {
	display: none;
	padding: 20px;
	color: white;
	text-align: center;
}


.zc-hero-tabs,
.zc-slide {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 100vh;
	position: relative;
	background: #0f1729;
	color: #ffffff;
	text-align: center;
	padding: 0 2em;
	pointer-events: auto;
}

.zc-hero-tabs h1,
.zc-slide h1 {
	font-size: 2rem;
	margin: 0;
	letter-spacing: 1rem;
}

.zc-hero-tabs h3,
.zc-slide h3 {
	font-size: 1rem;
	letter-spacing: 0.3rem;
	opacity: 0.6;
}

.zc-hero-tabs-container {
	font-family: "Jura", sans-serif;
	/* font-family: "Turret Road", serif; */
	display: flex;
	flex-direction: row;
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 70px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
	background: #0e1c3d;
	z-index: 10;
}

.zc-hero-tabs-container--top {
	font-family: "Jura", sans-serif;
	/* font-family: "Turret Road", serif; */
	position: fixed;
	top: 0;
}

.zc-hero-tab {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 1;
	color: #ffffff;
	letter-spacing: 0.1rem;
	transition: all 0.5s ease;
	font-size: 0.8rem;
}

.zc-hero-tab:hover {
	color: white;
	background: rgba(241, 102, 102, 0.8);
	transition: all 0.5s ease;
}

.zc-hero-tab-slider {
	position: relative;
	bottom: 0;
	width: 0;
	height: 6px;
	background: #fc142b;
	transition: left 0.3s ease;
}

.video-background {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100vh;
	opacity: 80%;
}

.video-background iframe {
	position: fixed;
	filter: opacity(60%);
	color: white;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100vh;
	transform: translate(-50%, -50%);
}

.video-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.2);
	z-index: 0;
}

.intro {
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}


button {
	font-family: "Jura", sans-serif;
	/* font-family: "Turret Road", serif; */
	color: #ffffff;
	padding: 0.7em 1.7em;
	font-size: 18px;
	border-radius: 0.5em;
	margin-right: 10px;
	align-items: center;
	background-color: transparent;
	cursor: pointer;
	border: 1px solid #e8e8e8;
	transition: all 0.3s;
	box-shadow: 3px 3px 6px #000000, -3px -3px 6px #000000;
}

button:active {
	color: #fc142b;
	box-shadow: inset 4px 4px 12px #fc142b, inset -4px -4px 12px #fc142b;
}

.intro button img {
	height: 15px;
	width: 15px;
	margin-right: 5px;
	border-top: 0;
}

.features {
	padding: 6rem 2rem;
	background-color: hsl(222, 46%, 11%);
}

.features .section-title {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 3rem;
	background: linear-gradient(45deg, #ff0000, #ff6b6b);
	background-clip: text;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
	max-width: 100%;
	margin: 0 auto;
	margin-top: 2rem;
}

.feature-card {
	background-color: #0f1729;
	padding: 2rem;
	border-radius: 0.5rem;
	text-align: center;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 0, 0, 0.1);
}

.feature-card:hover {
	transform: translateY(-5px);
	border-color: #ff0000;
	box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
}

.feature-card h2 {
	margin-bottom: 1rem;
	background: linear-gradient(45deg, #ff0000, #ff6b6b);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.feature-card p {
	color: #cccccc;
}

.announcement {
	background-color: #090E19;
}

.section-title {
	margin-bottom: 1rem;
	font-size: 2.5rem;
	background: linear-gradient(45deg, #ff0000, #ff6b6b);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}


.articles {
	display: grid;
	max-width: 1200px;
	margin-inline: auto;
	padding-inline: 24px;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	padding-bottom: 50px;
}

article,
.article-wrapper1 {
	--img-scale: 1.001;
	--title-color: rgb(255, 255, 255);
	--link-icon-translate: -20px;
	--link-icon-opacity: 0;
	position: relative;
	border-radius: 16px;
	box-shadow: none;
	background: #271525;
	transform-origin: center;
	transition: all 0.4s ease-in-out;
	overflow: hidden;
	color: #aaaaaa;
}

article a::after,
.article-wrapper1 a::after {
	position: absolute;
	inset-block: 0;
	inset-inline: 0;
	cursor: pointer;
	content: "";
}

article h2,
.article-wrapper1 h2 {
	margin: 0 0 18px 0;
	font-family: "Jura", sans-serif;
	/* font-family: "Turret Road", serif; */
	font-size: 1.9rem;
	letter-spacing: 0.06em;
	color: var(--title-color);
	transition: color 0.3s ease-out;
}

figure {
	margin: 0;
	padding: 0;
	aspect-ratio: 14 / 9;
	overflow: hidden;
}


article img,
.article-wrapper1 img {
	max-width: 100%;
	transform-origin: center;
	transform: scale(var(--img-scale));
	transition: transform 0.4s ease-in-out;
}

.article-body {
	padding: 24px;
}

article a,
.article-wrapper1 a {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	color: #28666e;
}

article a:focus,
.article-wrapper1 a:focus {
	outline: 1px dotted #28666e;
}

article a .icon,
.article-wrapper1 a .icon {
	min-width: 24px;
	width: 24px;
	height: 24px;
	margin-left: 5px;
	transform: translateX(var(--link-icon-translate));
	opacity: var(--link-icon-opacity);
	transition: all 0.3s;
}

article:has(:hover, :focus),
.article-wrapper1:has(:hover, :focus) {
	--img-scale: 1.1;
	--title-color: #ff6b6b;
	--link-icon-translate: 0;
	--link-icon-opacity: 1;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

/* Position the divs correctly */
.article-wrapper1:nth-child(4) {
	grid-column: 1 / 2;
	/* Position between 1st and 2nd columns */
}

.article-wrapper1:nth-child(5) {
	grid-column: 3 / 4;
	/* Position between 2nd and 3rd columns */
}


.zcpdfig {
	padding-top: 10px;
	width: 170px;
}

.newsfig {
	width: 315px;
}


.content {
	position: relative;
	top: 20%
}

.content h2 {
	color: #fff;
	font-size: 8em;
	position: absolute;
	transform: translate(-50%, -50%);
}

.content h2:nth-child(1) {
	color: transparent;
	-webkit-text-stroke: 2px #ff0000;
}

.content h2:nth-child(2) {
	color: #ff0000;
	animation: animate 4s ease-in-out infinite;
}

.social ul {
	position: absolute;
	top: 70%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin: 0;
	padding: 0;
	display: flex;
}

.zioninfo {
	position: absolute;
	top: 30%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin: 0;
	padding: 0;
	max-width: 100%;
	display: flex;
	font-size: 120%;
	font-family: "Jura", sans-serif;
	/* font-family: "Turret Road", serif; */
	font-weight: 700;
	color: #c2c2c2;
	padding-top: 100px;
}

.zionlogo3 {
	width: 500px;

}

.social ul li {
	list-style: none;
}

.social ul li a {
	display: block;
	position: relative;
	width: 100px;
	height: 100px;
	line-height: 100px;
	font-size: 40px;
	text-align: center;
	text-decoration: none;
	color: #c2c2c2;
	margin: 0 30px;
	transition: .5s;
}

.social ul li a span {
	position: absolute;
	transition: transform .5s;
}

.social ul li a span:nth-child(1),
.social ul li a span:nth-child(3) {
	width: 100%;
	height: 3px;
	background: #404040;
}

.social ul li a span:nth-child(1) {
	top: 0;
	left: 0;
	transform-origin: right;
}

.social ul li a:hover span:nth-child(1) {
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .5s;
}

.social ul li a span:nth-child(3) {
	bottom: 0;
	left: 0;
	transform-origin: left;
}

.social ul li a:hover span:nth-child(3) {
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .5s;
}

.social ul li a span:nth-child(2),
.social ul li a span:nth-child(4) {
	width: 3px;
	height: 100%;
	background: #404040;
}

.social ul li a span:nth-child(2) {
	top: 0;
	left: 0;
	transform: scale(0);
	transform-origin: bottom;
}

.social ul li a:hover span:nth-child(2) {
	transform: scale(1);
	transform-origin: top;
	transition: transform .5s;
}

.social ul li a span:nth-child(4) {
	top: 0;
	right: 0;
	transform: scale(0);
	transform-origin: top;
}

.social ul li a:hover span:nth-child(4) {
	transform: scale(1);
	transform-origin: bottom;
	transition: transform .5s;
}

.social .discord:hover {
	color: #3b5998;
}

.social .discord:hover span {
	background: #3b5998;
}

.social .youtube:hover {
	color: #ff0000;
}

.social .youtube:hover span {
	background: #ff0000;
}

.social .instagram:hover {
	color: #c32aa3;
}

.social .instagram:hover span {
	background: #c32aa3;
}

.social .gmail:hover {
	color: #3553ff;
}

.social .gmail:hover span {
	background: #3553ff;
}

.social ul li a .youtube {
	color: #ff0000;
}

.social ul li a:hover:nth-child(3) {
	color: #c32aa3;
}

.social ul li a:hover:nth-child(4) {
	color: #dd4b39;
}

@keyframes animate {

	0%,
	100% {
		clip-path: polygon(0% 45%,
				16% 44%,
				33% 50%,
				54% 60%,
				70% 61%,
				84% 59%,
				100% 52%,
				100% 100%,
				0% 100%);
	}

	50% {
		clip-path: polygon(0% 60%,
				15% 65%,
				34% 66%,
				51% 62%,
				67% 50%,
				84% 45%,
				100% 46%,
				100% 100%);
	}
}

@media (min-aspect-ratio: 16/9) {
	.video-background iframe {
		height: 56.25vw;
	}
}

@media (max-aspect-ratio: 16/9) {
	.video-background iframe {
		width: 177.78vh;
	}
}

@media (min-width: 800px) {

	.zc-hero-tabs h1,
	.zc-slide h1 {
		font-size: 3rem;
	}

	.zc-hero-tabs h3,
	.zc-slide h3 {
		font-size: 1rem;
	}

	.zc-hero-tab {
		font-size: 1rem;
	}
}


@container card (min-width: 380px) {
	.article-wrapper {
		display: grid;
		grid-template-columns: 100px 1fr;
		gap: 16px;
	}

	.article-body {
		padding-left: 0;
	}

	figure {
		width: 100%;
		height: 100%;
		overflow: hidden;
	}

	figure img {
		height: 100%;
		aspect-ratio: 1;
		object-fit: cover;
	}
}

@media (max-width: 768px) {
	.intro img {
		max-width: 100%;
	}

	.intro h3 {
		font-size: 1.2rem;
	}

	.intro button {
		font-size: 0.9rem;
		padding: 8px 16px;
	}

	.zc-hero-tab {
		font-size: 0.9rem;
		padding: 8px 16px;
	}

	.social ul {
		flex-direction: column;
		gap: 10px;
	}
}

@media (max-width: 480px) {
	.intro h3 {
		font-size: 1rem;
	}

	.feature-card {
		font-size: 0.9rem;
	}

	.article-wrapper {
		padding: 10px;
	}

	.article-body h2 {
		font-size: 1.2rem;
	}
}

.back-to-top {
	position: fixed;
	bottom: 100px;
	right: 30px;
	background: linear-gradient(45deg, #ff0000, #ff6b6b);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-decoration: none;
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 1000;
	cursor: pointer;
	font-size: 24px;
	box-shadow: 0 2px 10px rgba(255, 0, 0, 0.3);
}

.back-to-top.visible {
	opacity: 1;
}

.back-to-top:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

.footer {
	background-color: #0A101D;
	color: #ffffff;
	text-align: center;
	padding: 20px 0;
	position: relative;
	bottom: 0;
	width: 100%;
}

.footer-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.footer-logo {
	margin-top: 16px;
	width: 27px;
	height: 27px;
}

.footer p {
	margin: 0;
	font-size: 1.7rem;
	font-family: "Jura", sans-serif;
	/* font-family: "Turret Road", serif; */
	font-weight: 600;
	margin-bottom: 5px;
  color: #fff;
}
.footer p:hover{
  color: #fff;
}

/* Add these responsive styles at the end of the file */

/* General responsive adjustments */
@media screen and (max-width: 1200px) {
	.articles {
		grid-template-columns: repeat(2, 1fr);
		padding-inline: 20px;
	}

	.zioninfo {
		font-size: 100%;
		padding-top: 80px;
	}

	.zionlogo3 {
		width: 400px;
	}

	.content h2 {
		font-size: 6em;
	}

	.intro img {
		max-width: 80%;
	}
}

@media screen and (max-width: 992px) {
	.feature-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}

	.social ul {
		gap: 20px;
	}

	.social ul li a {
		width: 80px;
		height: 80px;
		line-height: 80px;
		font-size: 30px;
		margin: 0 20px;
	}

	.content h2 {
		font-size: 5em;
	}

	.intro {
		padding: 0 20px;
	}

	.intro button {
		margin-bottom: 10px;
	}

	.server-info {
		padding: 30px 20px;
		margin-bottom: 170px;
	}
}

@media screen and (max-width: 768px) {
	.articles {
		grid-template-columns: 1fr;
	}

	.zc-hero-tabs-container {
		height: auto;
		flex-direction: column;
		position: absolute;
	}

	.zc-hero-tab {
		padding: 15px 0;
	}

	.intro button {
		padding: 0.5em 1.2em;
		font-size: 16px;
		margin-bottom: 10px;
		width: 100%;
		max-width: 200px;
	}

	.content h2 {
		font-size: 4em;
	}

	.zioninfo {
		font-size: 90%;
		padding-top: 60px;
		text-align: center;
		padding: 20px;
	}

	.zionlogo3 {
		width: 300px;
	}

	.social ul {
		flex-wrap: wrap;
		justify-content: center;
		top: 80%;
	}

	.feature-card {
		padding: 1.5rem;
	}

	.feature-card h2 {
		font-size: 1.3rem;
	}

	.video-background iframe {
		width: 200%;
		height: 100vh;
	}
}

@media screen and (max-width: 576px) {
	.feature-grid {
		grid-template-columns: 1fr;
	}

	.content h2 {
		font-size: 3em;
	}

	.zionlogo3 {
		width: 250px;
	}

	.social ul li a {
		width: 60px;
		height: 60px;
		line-height: 60px;
		font-size: 24px;
		margin: 0 15px;
	}

	.intro h3 {
		font-size: 1rem;
	}

	.player-count {
		font-size: 1.5rem;
	}

	.status-text {
		font-size: 1rem;
	}

	.notification-center {
		font-size: 0.9rem;
		margin-left: 20px;
	}
}

/* Fix for very small screens */
@media screen and (max-width: 320px) {
	.content h2 {
		font-size: 2.5em;
	}

	.zionlogo3 {
		width: 200px;
	}

	.social ul li a {
		width: 50px;
		height: 50px;
		line-height: 50px;
		font-size: 20px;
		margin: 0 10px;
	}

	.intro button {
		font-size: 14px;
		padding: 0.4em 1em;
	}
}

/* Fix for landscape mode */
@media screen and (max-height: 500px) and (orientation: landscape) {
	.zc-hero-tabs {
		min-height: 120vh;
	}

	.content {
		top: 30%;
	}

	.social ul {
		top: 80%;
	}

	.intro {
		transform: scale(0.8);
	}
}

/* Base styles for whitelisted jobs section */
.articles {
	display: grid;
	max-width: 1200px;
	margin-inline: auto;
	padding-inline: 24px;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	padding-bottom: 50px;
}

article,
.article-wrapper1 {
	--img-scale: 1.001;
	--title-color: rgb(255, 255, 255);
	--link-icon-translate: -20px;
	--link-icon-opacity: 0;
	position: relative;
	border-radius: 16px;
	box-shadow: none;
	background: #271525;
	transform-origin: center;
	transition: all 0.4s ease-in-out;
	overflow: hidden;
	color: #aaaaaa;
}

.article-body {
	padding: 24px;
}

figure {
	margin: 0;
	padding: 0;
	aspect-ratio: 14 / 9;
	overflow: hidden;
}

article img,
.article-wrapper1 img {
	max-width: 100%;
	transform-origin: center;
	transform: scale(var(--img-scale));
	transition: transform 0.4s ease-in-out;
}

article h2,
.article-wrapper1 h2 {
	margin: 0 0 18px 0;
	font-family: "Jura", sans-serif;
	/* font-family: "Turret Road", serif; */
	font-size: 1.9rem;
	letter-spacing: 0.06em;
	color: var(--title-color);
	transition: color 0.3s ease-out;
}

.zcpdfig {
	width: 230px;
}

.shelbyfig {
	width: 250px;
}

.newsfig {
	width: 265px;
	padding-top: 50px;
}


/* Hover effects */
article:has(:hover, :focus),
.article-wrapper1:has(:hover, :focus) {
	--img-scale: 1.1;
	--title-color: #ff6b6b;
	--link-icon-translate: 0;
	--link-icon-opacity: 1;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

/* Responsive Breakpoints */

/* Large screens (1200px and below) */
@media screen and (max-width: 1200px) {
	.articles {
		grid-template-columns: repeat(2, 1fr);
		max-width: 900px;
		padding-inline: 20px;
	}

	.article-wrapper1:nth-child(4),
	.article-wrapper1:nth-child(5) {
		grid-column: auto;
	}
}

/* Medium screens (768px and below) */
@media screen and (max-width: 768px) {
	.articles {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
		padding-inline: 15px;
	}

	article h2,
	.article-wrapper1 h2 {
		font-size: 1.5rem;
	}

	.zcpdfig {
		width: 180px;
	}

	.newsfig {
		width: 215px;
	}

	.article-body {
		padding: 20px;
	}
}

/* Small screens (576px and below) */
@media screen and (max-width: 576px) {
	.articles {
		grid-template-columns: 1fr;
		gap: 25px;
		padding-inline: 10px;
	}

	article,
	.article-wrapper1 {
		max-width: 400px;
		margin: 0 auto;
	}

	figure {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.zcpdfig {
		width: 175px;
	}

	.newsfig {
		width: 230px;
	}
}

/* Extra small screens (320px and below) */
@media screen and (max-width: 320px) {
	.articles {
		padding-inline: 5px;
	}

	article h2,
	.article-wrapper1 h2 {
		font-size: 1.3rem;
	}

	.article-body {
		padding: 15px;
	}

	.zcpdfig {
		width: 150px;
	}

	.newsfig {
		width: 165px;
	}
}

.trail-dot {
	width: 1px;
	height: 1px;
	background: rgb(1, 203, 254, 255);
	border-radius: 50%;
	position: fixed;
	pointer-events: none;
	transform: translate(-50%, -50%);
	transition: width 0.2s, height 0.2s;
	z-index: 9999;
	mix-blend-mode: screen;
	filter: blur(0px);
}

.trail-dot:nth-child(2n) {
	background: rgb(1, 203, 254, 255);
	width: 6px;
	height: 6px;
}

.trail-dot:nth-child(3n) {
	background: rgb(1, 203, 254, 255);
	width: 4px;
	height: 4px;
}

.trail-dot:nth-child(4n) {
	background: rgb(1, 203, 254, 255);
	width: 3px;
	height: 3px;
}

.mute-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff0000, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(255, 0, 0, 0.3);
	transition: opacity 0.3s ease;
}

.mute-button:hover {
	transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

.mute-button i {
    color: #ffffff;
    font-size: 24px;
}