@font-face {
	font-family: 'Gotham';
	src: url('../assets/gotham/Gotham-ExtraLight.otf') format('opentype');
	font-weight: 200;
}

@font-face {
	font-family: 'Gotham';
	src: url('../assets/gotham/Gotham-Light.otf') format('opentype');
	font-weight: 300;
}

@font-face {
	font-family: 'Gotham';
	src: url('../assets/gotham/Gotham-Book.otf') format('opentype');
	font-weight: 400;
}

@font-face {
	font-family: 'Gotham';
	src: url('../assets/gotham/Gotham-Medium.otf') format('opentype');
	font-weight: 500;
}

@font-face {
	font-family: 'Gotham';
	src: url('../assets/gotham/GothamNarrow-Medium.otf') format('opentype');
	font-weight: 600;
}


* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Gotham', 'Montserrat', Arial, sans-serif;
	/* font-family: 'Inter', sans-serif; */
	padding-top: 60px;
	padding-bottom: 60px;
	background: #1a1a1a;
	color: #e0e0e0;
	line-height: 1.6;
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 60px;
	background: linear-gradient(135deg, #fa163f, #2e6db5);
	color: white;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 16px;
	z-index: 1001;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-wilson {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 60px;
	background: transparent url(../img/BG.jpg) 0 0 no-repeat;
	background-size: cover;
	color: white;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px;
	z-index: 1001;
}

@media (min-width: 768px) {
	.header-wilson {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 60px;
		background: transparent url(../img/BG.jpg) 0 -640px no-repeat;
		background-size: cover;
		color: white;
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 0 20px;
		z-index: 1001;
	}
}

.blink_me {
	animation: blinker 2s linear infinite;
}

@keyframes blinker {
	50% {
		opacity: 0;
	}
}

.header-title {
	font-family: 'Gotham', 'Montserrat', Arial, sans-serif;
	/* font-family: 'Poppins', sans-serif; */
	font-size: 20px;
	font-weight: 600;
	letter-spacing: -0.5px;

	display: flex;
	align-items: center;
}

.header-title-wilson {
	font-family: 'Gotham', 'Montserrat', Arial, sans-serif;
	/* font-family: 'Poppins', sans-serif; */
	font-size: 22px;
	font-weight: 500;
	letter-spacing: -0.5px;

	display: flex;
	/* align-items: center; */
}

.hamburger,
.back-btn {
	font-size: 20px;
	background: none;
	border: none;
	color: white;
	cursor: pointer;
	padding: 8px;
}

.dropdown {
	position: fixed;
	top: 60px;
	left: 0;
	width: 100%;
	background: #2a2a2a;
	border-bottom: 1px solid #444;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	display: none;
	flex-direction: column;
	z-index: 1002;
}

.dropdown a {
	padding: 15px 16px;
	text-decoration: none;
	color: #e0e0e0;
	border-top: 1px solid #444;
	font-weight: 400;
}

.dropdown a:hover {
	background-color: #3a3a3a;
}

.dropdown.show {
	display: flex;
}

.page-content {
	padding: 20px;

	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}

.footer-copyright-text {
	font-size: 12px;
	font-weight: 400;
	text-align: center;
	color: white;
	margin-top: 28px;
}

.tab-content {
	display: none;
	padding: 20px;
}

.tab-content.active {
	display: block;
}

.tabbar {
	position: fixed;
	bottom: 0;
	width: 100%;
	height: 60px;
	background-color: #2a2a2a;
	border-top: 1px solid #444;
	display: flex;
	justify-content: space-around;
	align-items: center;
	z-index: 1000;
}

.tab {
	text-align: center;
	flex: 1;
	font-size: 11px;
	color: #888;
	padding: 5px 0;
	cursor: pointer;
	transition: color 0.3s ease;
	font-weight: 500;
}

.tab span {
	display: block;
	font-size: 13px;
	margin-bottom: 2px;
}

.tab.active {
	color: #fa163f;
	font-weight: 600;
}

/* .tab:hover {
	color: #2e6db5;
} */

/* Posts */
.post {
	background: #2a2a2a;
	padding: 16px;
	border-radius: 12px;
	margin-bottom: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	border: 1px solid #3a3a3a;

}



.post img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 10px;
	/* margin-bottom: 10px; */
}

.post .title {
	font-weight: 400;
	font-size: 16px;
}

.post .text {
	font-weight: 400;
	font-size: 13px;
}

/* Content Components */
.chat,
.song,
.profile-link,
.feature-card {
	background: #2a2a2a;
	padding: 16px;
	border-radius: 12px;
	margin-bottom: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	border: 1px solid #3a3a3a;
}


.profile-link {
	display: flex !important;
	align-items: center;
	line-height: 1;
}

.profile-link>svg {
	margin-right: 8px;
}

.chat {
	display: flex;
	align-items: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.chat:hover {
	background: #3a3a3a;
	transform: translateY(-1px);
}

.chat img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	margin-right: 12px;
	border: 2px solid #444;
}

.chat-info {
	flex: 1;
}

.chat-name {
	font-weight: 600;
	font-size: 16px;
	margin-bottom: 2px;
}

.chat-preview {
	color: #aaa;
	font-size: 14px;
}

.chat-time {
	color: #888;
	font-size: 12px;
	font-weight: 500;
}

.song {
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background 0.3s ease;
}

.song:hover {
	background: #3a3a3a;
}

.song .info {
	flex: 1;
}

.song .info strong {
	color: #e0e0e0;
	font-weight: 600;
}

.song .info small {
	color: #aaa;
	font-weight: 400;
}

.song .votes {
	display: flex;
	gap: 8px;
}

.song .votes svg {
	height: 18px;
	width: auto;
}

.song.playing {
	border-left: 4px solid #fa163f;
	background: #3a2a2a;
}

.search-bar {
	margin-bottom: 16px;
}

.search-bar input {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #444;
	border-radius: 8px;
	background: #2a2a2a;
	color: #e0e0e0;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
}

.search-bar input::placeholder {
	color: #888;
}

.search-bar input:focus {
	outline: none;
	border-color: #2e6db5;
	box-shadow: 0 0 0 3px rgba(46, 109, 181, 0.1);
}

.profile-link {
	text-decoration: none;
	color: #e0e0e0;
	display: block;
	transition: background 0.3s ease;
	font-weight: 500;
}

.profile-link:hover {
	background: #3a3a3a;
}

/* button {
	padding: 8px 16px;
	background: linear-gradient(135deg, #fa163f, #2e6db5);
	border: none;
	color: white;
	border-radius: 6px;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	font-size: 14px;
}


button:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(250, 22, 63, 0.3);
} */

h1,
h2,
h3 {
	font-family: 'Gotham', 'Montserrat', Arial, sans-serif;
	/* font-family: 'Poppins', sans-serif; */
	color: #e0e0e0;
	margin-bottom: 16px;
	font-weight: 600;
}

h1 {
	font-size: 28px;
}

h2 {
	font-size: 24px;
}

h3 {
	font-size: 20px;
}

/* Chat Detail Styles */
.chat-messages {
	height: calc(100vh - 140px);
	overflow-y: auto;
	padding: 16px 20px;
}

.message {
	margin-bottom: 16px;
	display: flex;
	align-items: flex-start;
}

.message.sent {
	flex-direction: row-reverse;
}

.message img {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	margin: 0 8px;
}

.message-content {
	max-width: 70%;
	padding: 12px 16px;
	border-radius: 18px;
	font-size: 14px;
	line-height: 1.4;
}

.message.received .message-content {
	background: #3a3a3a;
	color: #e0e0e0;
}

.message.sent .message-content {
	background: linear-gradient(135deg, #fa163f, #2e6db5);
	color: white;
}

.message-time {
	font-size: 11px;
	color: #888;
	margin-top: 4px;
	text-align: center;
}

.chat-input-container {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #2a2a2a;
	padding: 16px;
	border-top: 1px solid #444;
	display: flex;
	gap: 12px;
	align-items: center;
}

.chat-input {
	flex: 1;
	padding: 12px 16px;
	border: 1px solid #444;
	border-radius: 20px;
	background: #1a1a1a;
	color: #e0e0e0;
	font-family: 'Inter', sans-serif;
	resize: none;
	max-height: 100px;
}

.send-btn {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	padding: 0;
}

/* About Page Styles */
.hero-section {
	background: linear-gradient(135deg, #fa163f, #2e6db5);
	padding: 40px 20px;
	text-align: center;
	border-radius: 16px;
	margin-bottom: 24px;
}

.hero-title {
	font-family: 'Gotham', 'Montserrat', Arial, sans-serif;
	/* font-family: 'Poppins', sans-serif; */
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 12px;
	color: white;
}

.hero-subtitle {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 24px;
}

.feature-grid {
	display: grid;
	/* grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */
	gap: 16px;
	margin-bottom: 24px;


}

.feature-card {
	text-align: center;
	padding: 24px;
}

.feature-icon {
	font-size: 48px;
	margin-bottom: 16px;
	display: block;
}

.feature-title {
	font-family: 'Gotham', 'Montserrat', Arial, sans-serif;
	/* font-family: 'Poppins', sans-serif; */
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 8px;
	color: #fa163f;
}

.feature-desc {
	color: #aaa;
	font-size: 14px;
	line-height: 1.5;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 16px;
	margin-bottom: 24px;
}

.stat-card {
	background: #2a2a2a;
	padding: 20px;
	border-radius: 12px;
	text-align: center;
	border: 1px solid #3a3a3a;
}

.stat-number {
	font-family: 'Gotham', 'Montserrat', Arial, sans-serif;
	/* font-family: 'Poppins', sans-serif; */
	font-size: 24px;
	font-weight: 700;
	color: #2e6db5;
	margin-bottom: 4px;
}

.stat-label {
	color: #aaa;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.cta-section {
	background: #2a2a2a;
	padding: 32px 24px;
	border-radius: 16px;
	text-align: center;
	border: 1px solid #3a3a3a;
}

.cta-button {
	background: linear-gradient(135deg, #fa163f, #2e6db5);
	color: white;
	padding: 16px 32px;
	border: none;
	border-radius: 8px;
	font-family: 'Gotham', 'Montserrat', Arial, sans-serif;
	/* font-family: 'Poppins', sans-serif; */
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
	transition: transform 0.2s ease;
	text-decoration: none;
}

.cta-button:hover {
	transform: translateY(-2px);
}

.cta-floating-button {
	position: fixed;
	bottom: 20px;
	background: linear-gradient(135deg, #fa163f, #2e6db5);
	color: white;
	padding: 20px 16px;
	border: none;
	border-radius: 8px;
	font-family: 'Gotham', 'Montserrat', Arial, sans-serif;
	/* font-family: 'Poppins', sans-serif; */
	font-weight: 600;
	font-size: 9px;
	cursor: pointer;
	transition: transform 0.2s ease;
	text-decoration: none;

	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	z-index: 200;
	right: 52px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	border-radius: 200px;

}

/* Request Modal Styles */
.request-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2000;
	opacity: 0;
	transform: scale(0.8);
	transition: all 0.3s ease;
}

.request-modal.show {
	opacity: 1;
	transform: scale(1);
}

.request-modal.fade-out {
	opacity: 0;
	transform: scale(0.8);
}

.modal-content {
	background: #2a2a2a;
	padding: 32px 24px;
	border-radius: 16px;
	text-align: center;
	border: 1px solid #3a3a3a;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	max-width: 320px;
	margin: 0 20px;
}

.modal-icon {
	font-size: 48px;
	margin-bottom: 16px;
	animation: bounce 0.6s ease;
}

.modal-title {
	font-family: 'Gotham', 'Montserrat', Arial, sans-serif;
	/* font-family: 'Poppins', sans-serif; */
	font-size: 20px;
	font-weight: 600;
	color: #fa163f;
	margin-bottom: 8px;
}

.modal-message {
	color: #e0e0e0;
	font-size: 14px;
	line-height: 1.4;
}

@keyframes bounce {

	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}

	40% {
		transform: translateY(-10px);
	}

	60% {
		transform: translateY(-5px);
	}
}

/* About Page Specific Styles */
.tagline {
	font-family: 'Gotham', 'Montserrat', Arial, sans-serif;
	/* font-family: 'Poppins', sans-serif; */
	font-size: 16px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.95);
	margin-bottom: 16px;
	padding: 12px 20px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 25px;
	backdrop-filter: blur(10px);
	display: inline-block;
}

.problem-solution {
	margin-bottom: 32px;
}

.section-card {
	background: #2a2a2a;
	padding: 24px;
	border-radius: 12px;
	margin-bottom: 16px;
	border: 1px solid #3a3a3a;
}

.section-card h2 {
	font-family: 'Gotham', 'Montserrat', Arial, sans-serif;
	/* font-family: 'Poppins', sans-serif; */
	color: #fa163f;
	margin-bottom: 12px;
	font-size: 20px;
}

.section-card p {
	color: #e0e0e0;
	line-height: 1.6;
	font-size: 15px;
}

.benefits-section {
	margin-bottom: 32px;
}

.benefits-section h2 {
	text-align: center;
	margin-bottom: 24px;
	font-size: 24px;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin-bottom: 24px;
}

.benefit-card {
	background: #2a2a2a;
	padding: 20px;
	border-radius: 12px;
	border: 1px solid #3a3a3a;
}

.benefit-card h3 {
	color: #2e6db5;
	margin-bottom: 12px;
	font-size: 16px;

	display: flex;
	align-items: center;
	line-height: 1;
}

.benefit-card ul {
	list-style: none;
	padding: 0;
}

.benefit-card li {
	color: #e0e0e0;
	font-size: 14px;
	margin-bottom: 8px;
	padding-left: 20px;
	position: relative;
}

.benefit-card li::before {
	content: "✓";
	position: absolute;
	left: 0;
	/* color: #fa163f; */
	color: white;
	font-weight: bold;
}

.social-contact-section {
	margin-bottom: 32px;
}

.social-contact-section h2 {
	text-align: center;
	margin-bottom: 24px;
}

.social-buttons {
	display: flex;
	flex-wrap: nowrap;
	gap: 12px;
	justify-content: center;
	margin-bottom: 32px;
}

.social-btn {
	padding: 12px 20px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
	transition: transform 0.2s ease;
	border: 1px solid #3a3a3a;
}

.social-btn:hover {
	transform: translateY(-2px);
}

.social-btn.facebook {
	background: #1877f2;
	color: white;
}

.social-btn.twitter {
	background: #1da1f2;
	color: white;
}

.social-btn.instagram {
	background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
	color: white;
}

.social-btn.linkedin {
	background: #0077b5;
	color: white;
}

.social-btn.youtube {
	background: #ff0000;
	color: white;
}

.contact-section {
	text-align: center;
	background: #2a2a2a;
	padding: 24px;
	border-radius: 12px;
	border: 1px solid #3a3a3a;
}

.contact-section h3 {
	margin-bottom: 20px;
	color: #e0e0e0;
}

.contact-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}

.contact-btn {
	padding: 12px 20px;
	background: linear-gradient(135deg, #fa163f, #2e6db5);
	border: none;
	color: white;
	border-radius: 8px;
	font-weight: 500;
	cursor: pointer;
	transition: transform 0.2s ease;
}

.contact-btn:hover {
	transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.social-buttons {
		/* flex-direction: column; */
		align-items: center;
	}

	.social-btn {
		width: 80px;
		text-align: center;
	}

	.contact-buttons {
		flex-direction: column;
		align-items: center;
	}

	.contact-btn {
		width: 200px;
	}

	.benefits-grid {
		grid-template-columns: 1fr;
	}
}


/* Add these styles to your existing styles.css file */

/* Logo Styles */
.logo {
	height: 32px;
	width: auto;
	border-radius: 8px;
	object-fit: cover;
}

/* Reusable Alert Modal */
.alert-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 3000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.alert-modal.show {
	opacity: 1;
	visibility: visible;
}

.alert-modal-content {
	background: #2a2a2a;
	padding: 32px 24px;
	border-radius: 16px;
	text-align: center;
	border: 1px solid #3a3a3a;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	max-width: 400px;
	margin: 0 20px;
	transform: scale(0.8);
	transition: transform 0.3s ease;
}

.alert-modal.show .alert-modal-content {
	transform: scale(1);
}

.alert-modal-icon {
	font-size: 48px;
	margin-bottom: 16px;
	display: block;
}

.alert-modal-title {
	font-family: 'Gotham', 'Montserrat', Arial, sans-serif;
	/* font-family: 'Poppins', sans-serif; */
	font-size: 20px;
	font-weight: 600;
	color: #fa163f;
	margin-bottom: 12px;
}

.alert-modal-message {
	color: #e0e0e0;
	font-size: 15px;
	line-height: 1.5;
	margin-bottom: 24px;
}

.alert-modal-buttons {
	display: flex;
	gap: 12px;
	justify-content: center;
}

.alert-btn {
	padding: 10px 20px;
	border: none;
	border-radius: 6px;
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	cursor: pointer;
	transition: transform 0.2s ease;
}

.alert-btn-primary {
	background: linear-gradient(135deg, #fa163f, #2e6db5);
	color: white;
}

.alert-btn-secondary {
	background: #3a3a3a;
	color: #e0e0e0;
	border: 1px solid #555;
}

.alert-btn:hover {
	transform: translateY(-1px);
}


.alert-modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.alert-modal-content {
	position: absolute;
	left: 50%;
	top: 50%;
	background: #1a1a1c;
	border-radius: 10px;
	padding: 2rem;
	max-width: 90%;
	width: 500px;
	border: 1px solid rgba(199, 169, 114, 0.2);
	/* transform: translateY(-20px); */
	transform: translate(-50%, -50%);
	transition: transform 0.3s ease;
	margin: 0;
}

/* When modal is active */
.alert-modal.active {
	opacity: 1;
	visibility: visible;
}

.alert-modal.active .alert-modal-content {
	/* transform: translateY(0); */
}

/* Channel list styling */
.channel-list {
	margin-top: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.channel-item {
	display: block;
	padding: 1rem;
	background: rgba(199, 169, 114, 0.1);
	border: 1px solid rgba(199, 169, 114, 0.2);
	border-radius: 6px;
	color: #fff;
	text-decoration: none;
	transition: all 0.2s ease;
}

.channel-item:hover {
	background: rgba(199, 169, 114, 0.2);
	border-color: rgba(199, 169, 114, 0.4);
}

.channel-item, .channel-link {
	display: flex;
	align-items: center;
	padding: 1rem;
}

.channel-item img, .channel-link img {
	width: 60px;
	height: 60px;
	border-radius: .5rem;
	object-fit: cover;
	margin-right: 1rem;
	border: 2px solid #fa163f;
}

/* Enhanced Now Playing Styles */
.song.playing {
	border-left: 4px solid #fa163f;
	background: linear-gradient(135deg, rgba(250, 22, 63, 0.1), rgba(46, 109, 181, 0.1));
	position: relative;
	overflow: hidden;
}

.song.playing::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(90deg, transparent, rgba(250, 22, 63, 0.1), transparent);
	animation: shimmer 2s infinite;
}

.song.opening {
	justify-content: center;
	border-left: 4px solid #fa163f;
	background: linear-gradient(135deg, rgba(250, 22, 63, 0.1), rgba(7, 47, 92, 0.5));
	position: relative;
	overflow: hidden;
}

.song.opening::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(90deg, transparent, rgba(250, 22, 63, 0.5), transparent);
	animation: shimmer 2s infinite;
}

@keyframes shimmer {
	0% {
		transform: translateX(-100%);
	}

	100% {
		transform: translateX(100%);
	}
}

.play-indicator {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #fa163f;
	font-weight: 600;
}

.play-icon {
	width: 24px;
	height: 24px;
	background: linear-gradient(135deg, #fa163f, #2e6db5);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 12px;
	animation: pulse 1.5s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.1);
	}

	100% {
		transform: scale(1);
	}
}

.now-playing-badge {
	background: linear-gradient(135deg, #fa163f, #2e6db5);
	color: white;
	padding: 4px 8px;
	border-radius: 12px;
	font-size: 10px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-left: 8px;
}

/* Screenshots Section - Horizontal Scroll */
.screenshots-section {
	margin-bottom: 32px;
}

.screenshots-header {
	text-align: center;
	margin-bottom: 20px;
	position: relative;
	z-index: 10;
}

.screenshots-header h2 {
	margin-bottom: 8px;
}

.screenshots-instruction {
	color: #aaa;
	font-size: 14px;
	margin-bottom: 0;
}

.screenshots-container {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	padding-bottom: 8px;
}

.screenshots-grid {
	display: flex;
	gap: 16px;
	width: max-content;
	padding: 0 20px;
	/* Add padding to prevent edge cutoff */
}

.screenshot-item {
	flex: 0 0 auto;
	width: 180px;
	/* width of mobile screen ratio */
	height: 366px;
	/* height of mobile screen ratio (9:16) */
	background: #2a2a2a;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid #3a3a3a;
	transition: transform 0.3s ease;
	position: relative;
}

.screenshot-item:hover {
	transform: translateY(-4px);
}

.screenshot-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.screenshot-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
	padding: 16px 12px 12px;
	text-align: center;
}

.screenshot-title {
	font-family: 'Gotham', 'Montserrat', Arial, sans-serif;
	/* font-family: 'Poppins', sans-serif; */
	font-size: 14px;
	font-weight: 600;
	color: #e0e0e0;
	margin-bottom: 4px;
}

.screenshot-desc {
	font-size: 12px;
	color: #aaa;
}

/* Custom scrollbar styling */
.screenshots-container::-webkit-scrollbar {
	height: 8px;
}

.screenshots-container::-webkit-scrollbar-track {
	background: #1a1a1a;
	border-radius: 4px;
	margin: 0 20px;
	/* Match grid padding */
}

.screenshots-container::-webkit-scrollbar-thumb {
	background: linear-gradient(135deg, #fa163f, #2e6db5);
	border-radius: 4px;
}

.screenshots-container::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(135deg, #e0143a, #265a9e);
}

/* Add scroll fade effect on edges */
.screenshots-container {
	position: relative;
}

.screenshots-container::before,
.screenshots-container::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 8px;
	/* Account for scrollbar */
	width: 20px;
	z-index: 5;
	pointer-events: none;
}

.screenshots-container::before {
	left: 0;
	/* background: linear-gradient(to right, #1a1a1a, transparent); */
}

.screenshots-container::after {
	right: 0;
	/* background: linear-gradient(to left, #1a1a1a, transparent); */
}


/* DJ Pages Styles */
.auth-container {
	max-width: 400px;
	margin: 0 auto;
	padding: 20px;
}

.auth-form {
	background: #2a2a2a;
	padding: 32px 24px;
	border-radius: 16px;
	border: 1px solid #3a3a3a;
}

.auth-title {
	font-family: 'Gotham', 'Montserrat', Arial, sans-serif;
	/* font-family: 'Poppins', sans-serif; */
	font-size: 24px;
	font-weight: 600;
	text-align: center;
	margin-bottom: 24px;
	color: #e0e0e0;
}

.form-group {
	margin-bottom: 20px;
}

.form-label {
	display: block;
	margin-bottom: 6px;
	color: #e0e0e0;
	font-weight: 500;
	font-size: 14px;
}

.form-input {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #444;
	border-radius: 8px;
	background: #1a1a1a;
	color: #e0e0e0;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
}

.form-input:focus {
	outline: none;
	border-color: #2e6db5;
	box-shadow: 0 0 0 3px rgba(46, 109, 181, 0.1);
}

.form-button {
	width: 100%;
	padding: 14px;
	background: linear-gradient(135deg, #fa163f, #2e6db5);
	border: none;
	border-radius: 8px;
	color: white;
	font-family: 'Gotham', 'Montserrat', Arial, sans-serif;
	/* font-family: 'Poppins', sans-serif; */
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
	transition: transform 0.2s ease;
}

.form-button:hover {
	transform: translateY(-2px);
}

.auth-links {
	text-align: center;
	margin-top: 20px;
}

.auth-link {
	color: #2e6db5;
	text-decoration: none;
	font-weight: 500;
}

.auth-link:hover {
	color: #fa163f;
}

.back-to-app {
	display: inline-block;
	margin-bottom: 20px;
	padding: 8px 16px;
	background: #3a3a3a;
	color: #e0e0e0;
	text-decoration: none;
	border-radius: 6px;
	font-size: 14px;
	transition: background 0.3s ease;
}

.back-to-app:hover {
	background: #4a4a4a;
}




/* Promo Video Section */
.promo-video-section {
	/* display: none; */
	margin-bottom: 32px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.video-container {
	position: relative;
	width: 100%;
	min-height: 400px;
	/* Changed from fixed height */
	background: #000;
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.video-container video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	min-height: 400px;
}

.video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(250, 22, 63, 0.8), rgba(46, 109, 181, 0.8));
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 40px 20px;
	/* Increased padding */
}

.video-overlay2 {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(199, 169, 114, 0.8), rgba(0, 0, 0, 0.9));
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 40px 20px;
	/* Increased padding */
}

.video-content {
	max-width: 600px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	/* Add consistent spacing */
}

.video-title {
	font-family: 'Gotham', 'Montserrat', Arial, sans-serif;
	/* font-family: 'Poppins', sans-serif; */
	font-size: 32px;
	font-weight: 700;
	color: white;
	margin: 0;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	line-height: 1.2;
}

.video-subtitle {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
	line-height: 1.5;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.play-button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	background: rgba(255, 255, 255, 0.2);
	border: 2px solid white;
	color: white;
	padding: 18px 36px;
	border-radius: 50px;
	font-family: 'Gotham', 'Montserrat', Arial, sans-serif;
	/* font-family: 'Poppins', sans-serif; */
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	margin-top: 8px;
}

.play-button:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.play-icon {
	width: 28px;
	height: 28px;
	background: white;
	color: #fa163f;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.1);
	}

	100% {
		transform: scale(1);
	}
}

/* Video Controls */
.video-controls {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
	padding: 20px 16px 16px;
	display: flex;
	align-items: center;
	gap: 12px;
}


.control-btn {
	background: rgba(255, 255, 255, 0.2);
	border: none;
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.3s ease;
	backdrop-filter: blur(10px);
	font-size: 14px;
	padding: 0
}

.control-btn:hover {
	background: rgba(255, 255, 255, 0.3);
}

.fullscreen-btn {
	background: rgba(255, 255, 255, 0.2);
	border: none;
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.3s ease;
	backdrop-filter: blur(10px);
	font-size: 16px;
}

.fullscreen-btn:hover {
	background: rgba(255, 255, 255, 0.3);
}

.progress-container {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 12px;
}

.progress-bar {
	flex: 1;
	height: 6px;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 3px;
	cursor: pointer;
	overflow: hidden;
}

.progress-fill {
	height: 100%;
	background: linear-gradient(135deg, #fa163f, #2e6db5);
	width: 0%;
	transition: width 0.1s ease;
}

.time-display {
	color: white;
	font-size: 12px;
	font-weight: 500;
	min-width: 80px;
	text-align: right;
}

/* Fullscreen styles */
.video-container:fullscreen {
	border-radius: 0;
}

.video-container:-webkit-full-screen {
	border-radius: 0;
}

.video-container:-moz-full-screen {
	border-radius: 0;
}

.video-container:-ms-fullscreen {
	border-radius: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.video-container {
		min-height: 300px;
	}

	.video-container video {
		min-height: 300px;
	}

	.video-overlay {
		padding: 30px 20px;
	}

	.video-title {
		font-size: 26px;
	}

	.video-subtitle {
		font-size: 16px;
	}

	.play-button {
		padding: 14px 28px;
		font-size: 14px;
	}

	.video-controls {
		padding: 16px 12px 12px;
	}

	.time-display {
		font-size: 10px;
		min-width: 70px;
	}
}

@media (max-width: 480px) {
	.video-container {
		min-height: 250px;
	}

	.video-container video {
		min-height: 250px;
	}

	.video-overlay {
		padding: 20px 16px;
	}

	.video-title {
		font-size: 22px;
	}

	.video-subtitle {
		font-size: 14px;
	}

	.play-button span {
		display: none;
	}

	.play-button {
		width: 70px;
		height: 70px;
		padding: 0;
		border-radius: 50%;
	}

	.play-icon {
		width: 32px;
		height: 32px;
		font-size: 16px;
	}
}

/* Promo Video Section 2 */
.promo-video-section-wilson {
	/* display: none; */
	margin-bottom: 0;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	padding: 0;
	margin-top: 10px;
}

.video-container-wilson {
	position: relative;
	width: 100%;
	min-height: 400px;
	/* Changed from fixed height */
	background: #000;
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.video-container-wilson video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	min-height: 400px;
}

.video-overlay-wilson {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(250, 22, 63, 0.8), rgba(46, 109, 181, 0.8));
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 40px 20px;
	/* Increased padding */
}

.video-content-wilson {
	max-width: 600px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	/* Add consistent spacing */
}

.video-title-wilson {
	font-family: 'Gotham', 'Montserrat', Arial, sans-serif;
	/* font-family: 'Poppins', sans-serif; */
	font-size: 32px;
	font-weight: 700;
	color: white;
	margin: 0;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	line-height: 1.2;
}

.video-subtitle-wilson {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
	line-height: 1.5;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.play-button-wilson {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	background: rgba(255, 255, 255, 0.2);
	border: 2px solid white;
	color: white;
	padding: 18px 36px;
	border-radius: 50px;
	font-family: 'Gotham', 'Montserrat', Arial, sans-serif;
	/* font-family: 'Poppins', sans-serif; */
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	margin-top: 8px;
}

.play-button-wilson:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.play-icon-wilson {
	width: 28px;
	height: 28px;
	background: white;
	color: #fa163f;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	animation: pulse-wilson 2s infinite;
}

@keyframes pulse-wilson {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.1);
	}

	100% {
		transform: scale(1);
	}
}

/* Video Controls 2*/
.video-controls-wilson {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
	padding: 20px 16px 16px;
	display: flex;
	align-items: center;
	gap: 12px;
}


.control-btn-wilson {
	background: rgba(255, 255, 255, 0.2);
	border: none;
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.3s ease;
	backdrop-filter: blur(10px);
	font-size: 14px;
	padding: 0
}

.control-btn-wilson:hover {
	background: rgba(255, 255, 255, 0.3);
}

.fullscreen-btn-wilson {
	background: rgba(255, 255, 255, 0.2);
	border: none;
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.3s ease;
	backdrop-filter: blur(10px);
	font-size: 16px;
}

.fullscreen-btn-wilson:hover {
	background: rgba(255, 255, 255, 0.3);
}

.progress-container-wilson {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 12px;
}

.progress-bar-wilson {
	flex: 1;
	height: 6px;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 3px;
	cursor: pointer;
	overflow: hidden;
}

.progress-fill-wilson {
	height: 100%;
	background: linear-gradient(135deg, #fa163f, #2e6db5);
	width: 0%;
	transition: width 0.1s ease;
}

.time-display-wilson {
	color: white;
	font-size: 12px;
	font-weight: 500;
	min-width: 80px;
	text-align: right;
}

/* Fullscreen styles */
.video-container-wilson:fullscreen {
	border-radius: 0;
}

.video-container-wilson:-webkit-full-screen {
	border-radius: 0;
}

.video-container-wilson:-moz-full-screen {
	border-radius: 0;
}

.video-container-wilson:-ms-fullscreen {
	border-radius: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.video-container-wilson {
		min-height: 300px;
	}

	.video-container-wilson video {
		min-height: 300px;
	}

	.video-overlay-wilson {
		padding: 30px 20px;
	}

	.video-title-wilson {
		font-size: 26px;
	}

	.video-subtitle-wilson {
		font-size: 16px;
	}

	.play-button-wilson {
		padding: 14px 28px;
		font-size: 14px;
	}

	.video-controls-wilson {
		padding: 16px 12px 12px;
	}

	.time-display-wilson {
		font-size: 10px;
		min-width: 70px;
	}
}

@media (max-width: 480px) {
	.video-container-wilson {
		min-height: 250px;
	}

	.video-container-wilson video {
		min-height: 250px;
	}

	.video-overlay-wilson {
		padding: 20px 16px;
	}

	.video-title-wilson {
		font-size: 22px;
	}

	.video-subtitle-wilson {
		font-size: 14px;
	}

	.play-button-wilson span {
		display: none;
	}

	.play-button-wilson {
		width: 70px;
		height: 70px;
		padding: 0;
		border-radius: 50%;
	}

	.play-icon-wilson {
		width: 32px;
		height: 32px;
		font-size: 16px;
	}
}

/* wilson design */



.header-content-wilson {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1400px;
	margin: 0 auto;
}

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
}

.logo img {
	height: 40px;
	width: auto;
}

.logo span {
	font-size: 24px;
	font-weight: 600;
	letter-spacing: -0.5px;
}

.menu-btn {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: white;
	padding: 10px 20px;
	border-radius: 25px;
	cursor: pointer;
	font-size: 16px;
	transition: all 0.3s ease;
}

.menu-btn:hover {
	background: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero-section-wilson {
	position: relative;
	min-height: 100vh;
	display: flex;
	/* flex-direction: column; */
	justify-content: start;
	align-items: center;
	margin: 0 42px;
	overflow-y: scroll;
}

.hero-background-wilson {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
}

.hero-background-wilson img {
	width: 100%;
}

.hero-background-wilson2 {
	display: none;
}

.hero-background-wilson2 img {
	display: none;
}


@media (min-width: 768px) {
	.hero-background-wilson {
		display: none;
	}

	.hero-background-wilson2 {
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: #000;
	}

	.hero-background-wilson2 img {
		display: block;
		width: 100%;
		position: relative;
		top: -632px;
	}
}

.hero-overlay-wilson {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg,
			rgba(0, 0, 0, 0.3) 0%,
			rgba(0, 0, 0, 0.5) 50%,
			rgba(0, 0, 0, 0.8) 100%);
}

.hero-content-wilson {
	position: absolute;
	top: 0;
	text-align: left;
	z-index: 1;
	margin-bottom: 80px;
	width: 100%;
}

.hero-title-wilson-h1 {
	font-family: 'Gotham', 'Montserrat', Arial, sans-serif;
	font-size: clamp(35px, 8vw, 76px);
	font-weight: 300;
	line-height: 1.1;
	/* margin-bottom: 20px; */
	letter-spacing: 0px;
	text-align: left;
	margin-bottom: 0;
}

.hero-title-wilson-h2 {
	font-family: 'Gotham', 'Montserrat', Arial, sans-serif;
	font-size: clamp(21px, 5vw, 50px);
	font-weight: normal;
	line-height: 1.1;
	letter-spacing: 2px;
	letter-spacing: 2px;
	text-align: left;
	margin-top: 15px;
	margin-bottom: 0;
}

.hero-subtitle-wilson {
	font-family: 'Gotham', 'Montserrat', Arial, sans-serif;
	font-size: 13px;
	font-weight: 300;
	margin-bottom: 26px;
	opacity: 0.9;
	text-align: left;
}

.hero-playnow-wilson {
	font-family: 'Gotham', 'Montserrat', Arial, sans-serif;
	font-size: 18px;
	font-weight: 300;
	margin-bottom: 40px;
	opacity: 0.9;
	text-align: center;
}

.cta-button-wilson {
	background: #af1952;
	color: white;
	border: none;
	padding: 7px 18px;
	font-size: 12px;
	font-weight: 500;
	border-radius: 30px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.cta-button-wilson:hover {
	background: #C62828;
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(229, 57, 53, 0.3);
}

.venue-info-wilson {
	position: relative;
	/* bottom: 40px; */
	text-align: center;
	width: 100%;
	margin-top: 322px
}

@media (min-width: 768px) {
	.venue-info-wilson {
		left: 50%;
		transform: translate(-50%, 0%);
		position: relative;
		width: 760px;
	}
}

.venue-info-wilson h2 {
	font-size: 19px;
	font-weight: 100;
	margin-bottom: 8px;
}

.venue-name-wilson {
	font-weight: 500;
	font-size: 20px;
}

.powered-by-wilson {
	margin-top: -9px;
	margin-bottom: 19px;
	font-size: 11px;
	opacity: 0.7;
	color: white;
}

/* How it Works Section */
.how-it-works-wilson {
	/* position: absolute; */
	position: relative;

	z-index: 1;
	/* background: rgba(25, 25, 25, 0.95); */
	/* background: rgba(255, 255, 255, .2); */
	/* backdrop-filter: blur(20px); */
	/* backdrop-filter: blur(0); */
	background: transparent;
	/* margin: 20px; */
	border-radius: 7px;
	overflow: hidden;
	max-width: 800px;
	margin-left: 0;
	margin-right: 0;
	margin-bottom: 20px;
	padding: 0;
}

.how-it-works-header-wilson {
	padding: 1rem;
	cursor: pointer;
	display: flex;
	/* flex-direction: column; */
	position: relative;
	background: rgba(255, 255, 255, .1);
	backdrop-filter: blur(0);
	border-radius: 7px;
	padding-bottom: 5px;
	/* align-items: center; */
}

.how-it-works-header-wilson h3 {
	font-size: 17px;
	font-weight: 100;
	letter-spacing: 1px;
	margin-bottom: -22px;
	color: white;
	text-align: left;
	padding: 10px 10px;
}

.how-it-works-header-wilson p,
.about-muuzbox-header-wilson p {
	font-size: 16px;
	opacity: 0.7;
	color: white;
	text-align: left;
	padding: 0 10px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-weight: 100;
}

.how-it-works-header-wilson p.active,
.about-muuzbox-header-wilson p.active {
	white-space: normal;
	overflow: visible;
	text-overflow: unset;
}

.about-muuzbox-icon,
.chat-with-guests-icon,
.what-happening-icon,
.about-muuzbox-icon {
	display: inline-flex;
	align-self: center;
}

.toggle-icon-wilson,
.toggle-about-muuzbox-icon-wilson,
.toggle-chat-with-guests-icon-wilson,
.toggle-what-happening-icon-wilson {
	position: absolute;
	right: 10px;
	top: 20px;
	transform: translateY(-50%);
	transition: transform 0.3s ease;
	color: white;
}

.toggle-icon-wilson.rotated,
.toggle-about-muuzbox-icon-wilson.rotated,
.toggle-chat-with-guests-icon-wilson.rotated,
.toggle-what-happening-icon-wilson.rotated {
	transform: translateY(-50%) rotate(180deg);
}

.how-it-works-content-wilson {

	padding: 0 30px;
	margin: 0 5px;
	max-height: 0;
	background: rgba(255, 255, 255, .1);
	backdrop-filter: blur(0);
	overflow: hidden;
	transition: max-height 0.5s ease, padding 0.3s ease;
}

.how-it-works-content-wilson.active {
	max-height: 500px;
	padding: 0 10px 30px;
	background: rgba(255, 255, 255, .1);
	backdrop-filter: blur(0);
	overflow-y: scroll;
}

.steps-list-wilson {
	/* margin-bottom: 30px; */
	padding-top: 10px;
}

.step-wilson {
	display: flex;
	gap: 0;
	margin-bottom: 0;
	align-items: flex-start;
}

.step-number-wilson {
	font-size: 13px;
	font-weight: 100;
	/* color: #E53935; */
	min-width: 25px;
}

.step-content-wilson {
	text-align: left;
	font-size: 12px;
	line-height: 1.5;
	color: white;
}

.step-content-wilson strong {
	font-weight: 400;
}

.cta-text-wilson {
	font-size: 16px;
	text-align: center;
	/* margin-top: 20px; */
	color: white;
}

.try-now-wilson {
	color: #E53935;
	text-decoration: none;
	font-weight: 600;
}

.try-now-wilson:hover {
	text-decoration: underline;
}

/* Temp Section - How it Works Dropdown */
.temp-section {
	position: relative;
	z-index: 1;
	margin: 0;
	padding: 0;
}

.how-it-works-temp {
	position: relative;
	z-index: 1;
	background: rgba(26, 26, 26, 0.75);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 12px;
	overflow: hidden;
	max-width: 800px;
	margin: 20px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.how-it-works-header-temp {
	padding: 20px;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	position: relative;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	transition: background 0.3s ease;
}

.how-it-works-header-temp:hover {
	background: rgba(255, 255, 255, 0.08);
}

.how-it-works-header-temp h3 {
	font-family: 'Gotham', 'Montserrat', Arial, sans-serif;
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 4px;
	color: white;
	text-align: left;
}

.how-it-works-header-temp p {
	font-size: 16px;
	opacity: 0.8;
	color: white;
	text-align: left;
	margin: 0;
}

.toggle-icon-temp {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	transition: transform 0.3s ease;
	color: white;
	opacity: 0.8;
}

.toggle-icon-temp.rotated {
	transform: translateY(-50%) rotate(180deg);
}

.how-it-works-content-temp {
	padding: 0;
	max-height: 0;
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	overflow: hidden;
	transition: max-height 0.5s ease, padding 0.3s ease;
}

.how-it-works-content-temp.active {
	max-height: 400px;
	padding: 20px 20px 30px;
	overflow-y: auto;
}

.steps-list-temp {
	margin-bottom: 20px;
}

.step-temp {
	display: flex;
	gap: 12px;
	margin-bottom: 16px;
	align-items: flex-start;
}

.step-number-temp {
	font-size: 14px;
	font-weight: 500;
	color: #fa163f;
	min-width: 25px;
}

.step-content-temp {
	text-align: left;
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
}

.step-content-temp strong {
	font-weight: 600;
	color: white;
}

.cta-text-temp {
	font-size: 16px;
	text-align: center;
	margin-top: 20px;
	color: rgba(255, 255, 255, 0.9);
}

.try-now-temp {
	color: #fa163f;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.try-now-temp:hover {
	color: #2e6db5;
	text-decoration: underline;
}

/* Custom scrollbar for temp dropdown */
.how-it-works-content-temp::-webkit-scrollbar {
	width: 6px;
}

.how-it-works-content-temp::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 3px;
}

.how-it-works-content-temp::-webkit-scrollbar-thumb {
	background: rgba(250, 22, 63, 0.5);
	border-radius: 3px;
}

.how-it-works-content-temp::-webkit-scrollbar-thumb:hover {
	background: rgba(250, 22, 63, 0.7);
}

/* Responsive adjustments for temp dropdown */
@media (max-width: 768px) {
	.how-it-works-temp {
		margin: 10px;
	}

	.how-it-works-header-temp {
		padding: 16px;
	}

	.how-it-works-header-temp h3 {
		font-size: 20px;
	}

	.how-it-works-header-temp p {
		font-size: 14px;
	}

	.step-temp {
		gap: 8px;
		margin-bottom: 12px;
	}

	.step-content-temp {
		font-size: 13px;
	}
}