* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary-color: #6366f1;
	--secondary-color: #8b5cf6;
	--accent-color: #0ea5e9;
	--dark-bg: #0f0f1e;
	--light-bg: #1a1a2e;
	--text-primary: #ffffff;
	--text-secondary: #a0a0b0;
	--border-color: rgba(99, 102, 241, 0.15);
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', sans-serif;
	background-color: var(--dark-bg);
	color: var(--text-primary);
	line-height: 1.6;
	overflow-x: hidden;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(15, 15, 30, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	border-bottom: 1px solid var(--border-color);
	padding: 1.5rem 0;
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 3rem;
}

.logo h1 {
	font-size: 1.5rem;
	font-weight: 800;
	letter-spacing: -1px;
	background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
	margin: 0;
	flex: 1;
}

.nav-link {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 500;
	position: relative;
	transition: var(--transition);
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary-color);
	transition: var(--transition);
}

.nav-link:hover {
	color: var(--text-primary);
}

.nav-link:hover::after {
	width: 100%;
}

/* Hamburger Menu */
.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 1001;
}

.hamburger span {
	width: 25px;
	height: 3px;
	background: var(--text-primary);
	border-radius: 2px;
	transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
	display: none;
	position: fixed;
	top: 70px;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(15, 15, 30, 0.98), rgba(26, 26, 46, 0.95));
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--border-color);
	z-index: 999;
	flex-direction: column;
	gap: 0;
	max-height: calc(100vh - 70px);
	overflow-y: auto;
	padding: 1rem 0;
}

.mobile-menu.active {
	display: flex;
}

.mobile-menu a {
	display: block;
	color: var(--text-secondary);
	text-decoration: none;
	padding: 1rem 2rem;
	transition: all 0.3s ease;
	border-left: 3px solid transparent;
}

.mobile-menu a:hover {
	color: var(--text-primary);
	background: rgba(255, 20, 147, 0.1);
	border-left-color: var(--primary-color);
}

.mobile-menu .nav-cta {
	margin: 1rem 2rem;
	width: auto;
	display: inline-block;
}

.nav-cta {
	padding: 0.75rem 1.5rem;
	background: var(--primary-color);
	color: #000;
	text-decoration: none;
	font-weight: 600;
	border-radius: 6px;
	transition: var(--transition);
	white-space: nowrap;
}

.nav-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(255, 20, 147, 0.3);
}

/* Hero Section */
.hero {
	margin-top: 80px;
	min-height: 90vh;
	display: flex;
	align-items: center;
	padding: 4rem 2rem;
}

.hero-grid {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.hero-title {
	font-family: 'Playfair Display', serif;
	font-size: 4rem;
	font-weight: 700;
	margin-bottom: 1rem;
	line-height: 1.1;
	background: linear-gradient(135deg, var(--text-primary), var(--accent-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Live Badge */
.live-badge-container {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: flex-start;
}

.live-badge {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 1.5rem;
	background: linear-gradient(135deg, rgba(255, 20, 147, 0.2), rgba(255, 20, 147, 0.1));
	border: 2px solid var(--primary-color);
	border-radius: 50px;
	font-weight: 700;
	font-size: 0.9rem;
	letter-spacing: 1px;
	color: var(--primary-color);
	transition: all 0.3s ease;
	text-decoration: none;
	cursor: pointer;
}

.live-badge:hover {
	background: linear-gradient(135deg, rgba(255, 20, 147, 0.3), rgba(255, 20, 147, 0.15));
	box-shadow: 0 10px 25px rgba(255, 20, 147, 0.3);
	transform: translateY(-2px);
}

.live-badge.offline {
	opacity: 0;
	visibility: hidden;
	display: none;
}

.live-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--primary-color);
	animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.6;
		transform: scale(1.2);
	}
}

.hero-subtitle {
	font-size: 1.3rem;
	color: var(--text-secondary);
	margin-bottom: 1rem;
	font-weight: 500;
	letter-spacing: 1px;
}

.hero-description {
	font-size: 1.1rem;
	color: var(--text-secondary);
	line-height: 1.8;
	margin-bottom: 2.5rem;
	max-width: 450px;
}

.hero-ctas {
	display: flex;
	gap: 1rem;
	margin-bottom: 3rem;
}

.hero-stats {
	display: flex;
	gap: 2rem;
	padding-top: 2rem;
	border-top: 1px solid var(--border-color);
}

.hero-stat {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.stat-value {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--primary-color);
}

.stat-label {
	font-size: 0.85rem;
	color: var(--text-secondary);
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Hero Image */
.hero-image-container {
	position: relative;
	aspect-ratio: 3/4;
	overflow: hidden;
	border-radius: 12px;
	border: 1px solid var(--border-color);
	max-width: 350px;
}

.hero-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.image-accent {
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(240, 147, 251, 0.3), transparent);
	pointer-events: none;
	animation: rotate 20s linear infinite;
}

@keyframes rotate {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

/* Scroll Animation */
@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInScale {
	from {
		opacity: 0;
		transform: scale(0.95) translateY(20px);
	}
	to {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

.animate-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
	opacity: 1;
	transform: translateY(0);
	animation: slideInUp 0.6s ease-out;
}

.fade-in-scroll {
	opacity: 0;
	transform: scale(0.95);
	transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fade-in-scroll.fade-in-visible {
	opacity: 1;
	transform: scale(1);
}

/* Buttons */
.btn {
	padding: 1rem 2rem;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
	display: inline-block;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
	width: 300px;
	height: 300px;
}

.btn-primary {
	background: var(--primary-color);
	color: #000;
	border: 2px solid var(--primary-color);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(255, 20, 147, 0.4);
}

.btn-secondary {
	background: transparent;
	color: var(--text-primary);
	border: 2px solid var(--text-secondary);
}

.btn-secondary:hover {
	border-color: var(--primary-color);
	color: var(--primary-color);
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(255, 20, 147, 0.2);
}

.btn-vip {
	background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
	color: #000;
	border: 2px solid var(--primary-color);
	width: 100%;
	margin-top: 1.5rem;
}

.btn-vip:hover {
	transform: translateY(-2px);
	box-shadow: 0 15px 40px rgba(255, 20, 147, 0.4);
}

/* Social Section */
.social-section {
	padding: 2.5rem 2rem;
	text-align: center;
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
	background: linear-gradient(180deg, transparent, rgba(255, 20, 147, 0.08));
}

.social-section h2 {
	font-family: 'Playfair Display', serif;
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.social-category {
	margin-bottom: 1.2rem;
	text-align: center;
}

.category-title {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 0.3rem;
	color: var(--primary-color);
}

.category-subtitle {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 1rem;
	letter-spacing: 0.5px;
}

.social-links {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 1.2rem;
	max-width: 950px;
	margin: 0 auto;
}

.social-link {
	padding: 1.2rem 1rem;
	background: linear-gradient(135deg, var(--light-bg), rgba(99, 102, 241, 0.08));
	color: var(--text-primary);
	text-decoration: none;
	border-radius: 10px;
	border: 1px solid var(--border-color);
	transition: var(--transition);
	font-weight: 600;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 105px;
}

.social-link::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.6s ease;
	z-index: 0;
}

.social-link:hover::before {
	left: 100%;
}

.social-link span {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
	align-items: center;
}

.social-link:hover {
	border-color: var(--primary-color);
	background: linear-gradient(135deg, rgba(255, 20, 147, 0.15), rgba(255, 20, 147, 0.08));
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(255, 20, 147, 0.2);
}

.social-link::after {
	content: '→';
	position: absolute;
	right: 1rem;
	opacity: 0;
	transition: all 0.3s ease;
	font-weight: bold;
	color: var(--primary-color);
}

.social-link:hover::after {
	opacity: 1;
	right: 0.5rem;
}

/* About Section */
.about-section {
	padding: 3rem 2rem;
}

.about-section h2 {
	font-family: 'Playfair Display', serif;
	font-size: 2.5rem;
	margin-bottom: 2rem;
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: flex-start;
}

.about-content p {
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
	line-height: 1.8;
	font-size: 1.05rem;
}

.about-features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 2rem;
}

.feature {
	text-align: center;
}

.feature-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.feature h3 {
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
}

.feature p {
	color: var(--text-secondary);
	font-size: 0.9rem;
}

/* VIP Card */
.vip-card {
	background: linear-gradient(135deg, rgba(255, 20, 147, 0.1), rgba(240, 147, 251, 0.05));
	padding: 2.5rem;
	border-radius: 12px;
	border: 1px solid var(--border-color);
	backdrop-filter: blur(10px);
}

.vip-card h3 {
	font-size: 1.8rem;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.vip-card p {
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.vip-features {
	list-style: none;
	margin-bottom: 2rem;
}

.vip-features li {
	color: var(--text-secondary);
	margin-bottom: 0.75rem;
	padding-left: 0.5rem;
}

/* Schedule Section */
.schedule-section {
	padding: 3rem 2rem;
	background: linear-gradient(180deg, rgba(255, 20, 147, 0.05), transparent);
}

.schedule-section h2 {
	font-family: 'Playfair Display', serif;
	font-size: 2.5rem;
	margin-bottom: 0.5rem;
	text-align: center;
}

.section-subtitle {
	text-align: center;
	color: var(--text-secondary);
	margin-bottom: 3rem;
	font-size: 1.05rem;
}

.schedule-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.schedule-item {
	padding: 1.5rem;
	background: var(--light-bg);
	border: 1px solid var(--border-color);
	border-radius: 10px;
	transition: var(--transition);
}

.schedule-item:hover {
	border-color: var(--primary-color);
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(255, 20, 147, 0.1);
}

.schedule-item.past {
	opacity: 0.5;
	filter: grayscale(100%);
}

.schedule-date {
	display: block;
	font-size: 0.85rem;
	color: var(--primary-color);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 0.5rem;
}

.schedule-time {
	display: block;
	font-size: 1.2rem;
	color: var(--text-primary);
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.schedule-content {
	color: var(--text-secondary);
	font-size: 1rem;
	line-height: 1.5;
}

.schedule-action {
	text-align: center;
}

/* Merch Section */
.merch-section {
	padding: 3rem 2rem;
	background: linear-gradient(135deg, var(--light-bg), rgba(240, 147, 251, 0.05));
	border-top: 1px solid var(--border-color);
}

.merch-section h2 {
	font-family: 'Playfair Display', serif;
	font-size: 2.5rem;
	margin-bottom: 0.5rem;
	text-align: center;
}

.merch-embed {
	width: 100%;
	height: 800px;
	border: 1px solid var(--border-color);
	border-radius: 12px;
	overflow: hidden;
	margin-top: 2rem;
	background: var(--light-bg);
}

.merch-embed iframe {
	width: 100%;
	height: 100%;
	border: none;
}

/* VIP Page Styles */
.vip-hero {
	margin-top: 80px;
	padding: 4rem 2rem;
	background: linear-gradient(135deg, rgba(255, 20, 147, 0.1), rgba(240, 147, 251, 0.05));
	text-align: center;
	border-bottom: 1px solid var(--border-color);
}

.vip-hero-content h1 {
	font-family: 'Playfair Display', serif;
	font-size: 3.5rem;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.vip-hero-subtitle {
	font-size: 1.5rem;
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
}

.vip-hero-description {
	font-size: 1.1rem;
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.8;
}

/* VIP Benefits */
.vip-benefits {
	padding: 2.5rem 2rem;
}

.vip-benefits h2 {
	font-family: 'Playfair Display', serif;
	font-size: 2rem;
	margin-bottom: 1.5rem;
	text-align: center;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.25rem;
}

.benefit-card {
	padding: 1.25rem;
	background: var(--light-bg);
	border: 1px solid var(--border-color);
	border-radius: 10px;
	text-align: center;
	transition: var(--transition);
}

.benefit-card:hover {
	border-color: var(--primary-color);
	background: linear-gradient(135deg, var(--light-bg), rgba(255, 20, 147, 0.05));
}

.benefit-icon {
	font-size: 2rem;
	margin-bottom: 0.5rem;
	display: block;
}

.benefit-card h3 {
	font-size: 0.95rem;
	margin-bottom: 0.5rem;
	color: var(--primary-color);
}

.benefit-card p {
	color: var(--text-secondary);
	line-height: 1.5;
	font-size: 0.9rem;
}

/* VIP Platforms */
.vip-platforms {
	padding: 4rem 2rem;
	background: linear-gradient(180deg, transparent, rgba(255, 20, 147, 0.05));
}

.vip-platforms h2 {
	font-family: 'Playfair Display', serif;
	font-size: 2.5rem;
	margin-bottom: 0.5rem;
	text-align: center;
}

.management-disclaimer {
	background: rgba(255, 20, 147, 0.1);
	border: 2px solid var(--primary-color);
	border-radius: 12px;
	padding: 1.5rem;
	margin: 1.5rem 0;
	text-align: center;
	font-size: 1rem;
	line-height: 1.6;
	color: #fff;
}

.management-disclaimer p {
	margin: 0;
}

.management-disclaimer strong {
	color: var(--primary-color);
}

.platforms-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.platform-option {
	padding: 2.5rem;
	background: var(--light-bg);
	border: 2px solid var(--border-color);
	border-radius: 12px;
	position: relative;
	transition: var(--transition);
}

.platform-option:hover {
	border-color: var(--primary-color);
	transform: translateY(-5px);
}

.platform-option.featured {
	border-color: var(--primary-color);
	background: linear-gradient(135deg, rgba(255, 20, 147, 0.1), var(--light-bg));
}

.featured-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--primary-color);
	color: #000;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 1px;
}

.platform-option h3 {
	font-size: 1.8rem;
	margin-bottom: 0.5rem;
	color: var(--primary-color);
}

.platform-tagline {
	font-size: 0.9rem;
	color: var(--accent-color);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 1rem;
	font-weight: 600;
}

.platform-description {
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.platform-features {
	list-style: none;
	margin-bottom: 2rem;
}

.platform-features li {
	color: var(--text-secondary);
	margin-bottom: 0.75rem;
	padding-left: 0;
}

.platform-option .btn {
	width: 100%;
	text-align: center;
}

/* VIP FAQ */
.vip-faq {
	padding: 4rem 2rem;
	background: linear-gradient(180deg, rgba(255, 20, 147, 0.05), transparent);
}

.vip-faq h2 {
	font-family: 'Playfair Display', serif;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	text-align: center;
}

.faq-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	max-width: 1000px;
	margin: 0 auto;
}

.faq-item {
	padding: 2rem;
	background: var(--light-bg);
	border: 1px solid var(--border-color);
	border-radius: 10px;
	transition: var(--transition);
}

.faq-item:hover {
	border-color: var(--primary-color);
	background: linear-gradient(135deg, var(--light-bg), rgba(255, 20, 147, 0.05));
}

.faq-item h3 {
	font-size: 1.1rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.faq-item p {
	color: var(--text-secondary);
	line-height: 1.6;
}

/* VIP CTA */
.vip-cta {
	padding: 4rem 2rem;
	text-align: center;
	background: linear-gradient(135deg, rgba(255, 20, 147, 0.15), rgba(240, 147, 251, 0.1));
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
}

.vip-cta h2 {
	font-family: 'Playfair Display', serif;
	font-size: 2.5rem;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.vip-cta p {
	font-size: 1.2rem;
	color: var(--text-secondary);
	margin-bottom: 2rem;
}

.cta-buttons {
	display: flex;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.btn-large {
	padding: 1.25rem 2.5rem;
	font-size: 1.1rem;
}

/* Back to Home */
.back-to-home {
	padding: 2rem;
	text-align: center;
}

.btn-outline {
	background: transparent;
	color: var(--primary-color);
	border: 2px solid var(--primary-color);
	padding: 0.75rem 1.5rem;
}

.btn-outline:hover {
	background: rgba(255, 20, 147, 0.1);
}

/* Contact Section */
.contact-section {
	padding: 3rem 2rem;
}

.contact-section h2 {
	font-family: 'Playfair Display', serif;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	text-align: center;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
}

.contact-info {
	padding: 2rem;
	background: var(--light-bg);
	border: 1px solid var(--border-color);
	border-radius: 10px;
}

.contact-info h3 {
	font-size: 1.1rem;
	margin-bottom: 1rem;
	color: var(--primary-color);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.contact-info p {
	color: var(--text-secondary);
}

.contact-info a {
	color: var(--primary-color);
	text-decoration: none;
	transition: var(--transition);
}

.contact-info a:hover {
	text-decoration: underline;
}

.contact-socials {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.contact-socials a {
	display: inline-block;
	transition: color 0.3s ease;
	color: var(--text-secondary);
}

.contact-socials a:hover {
	color: var(--primary-color);
}

/* Contact Form */
.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-group label {
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--text-primary);
}

.form-group input,
.form-group textarea {
	padding: 1rem;
	background: var(--light-bg);
	border: 1px solid var(--border-color);
	border-radius: 8px;
	color: var(--text-primary);
	font-family: inherit;
	font-size: 1rem;
	transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(255, 20, 147, 0.1);
}

/* Footer */
.footer {
	padding: 2rem;
	text-align: center;
	border-top: 1px solid var(--border-color);
	color: var(--text-secondary);
	font-size: 0.9rem;
}

/* Featured Content Section */
.featured-section {
	padding: 3rem 2rem;
	background: linear-gradient(180deg, transparent, rgba(255, 20, 147, 0.05));
}

.featured-section h2 {
	font-family: 'Playfair Display', serif;
	font-size: 2.5rem;
	margin-bottom: 0.5rem;
	text-align: center;
}

.carousel-container {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-top: 2rem;
}

.carousel-btn {
	background: var(--primary-color);
	color: #000;
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	font-size: 1.5rem;
	cursor: pointer;
	transition: var(--transition);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-weight: bold;
}

.carousel-btn:hover {
	transform: scale(1.1);
	box-shadow: 0 10px 25px rgba(255, 20, 147, 0.4);
}

.carousel {
	display: flex;
	gap: 1.2rem;
	overflow-x: auto;
	scroll-behavior: smooth;
	flex: 1;
	padding: 1rem 0;
	scroll-snap-type: x mandatory;
}

.carousel::-webkit-scrollbar {
	height: 6px;
}

.carousel::-webkit-scrollbar-track {
	background: var(--light-bg);
	border-radius: 10px;
}

.carousel::-webkit-scrollbar-thumb {
	background: var(--primary-color);
	border-radius: 10px;
}

.carousel-item {
	scroll-snap-align: start;
	flex-shrink: 0;
	min-width: 320px;
}

.content-card {
	background: var(--light-bg);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	overflow: hidden;
	transition: var(--transition);
	height: 100%;
}

.content-card:hover {
	border-color: var(--primary-color);
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(255, 20, 147, 0.15);
}

.content-image {
	width: 100%;
	height: 200px;
	background: linear-gradient(135deg, rgba(255, 20, 147, 0.2), rgba(240, 147, 251, 0.2));
	position: relative;
	overflow: hidden;
}

.content-video {
	width: 100%;
	height: 200px;
	position: relative;
	overflow: hidden;
	background: #000;
}

.content-video iframe {
	width: 100%;
	height: 100%;
	border: none;
	display: block;
}

.content-image::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
	animation: shimmer 2s infinite;
}

@keyframes shimmer {
	0% { transform: translateX(-100%); }
	100% { transform: translateX(100%); }
}

.content-image.gaming {
	background: linear-gradient(135deg, rgba(255, 20, 147, 0.3), rgba(102, 126, 234, 0.3));
}

.content-image.asmr {
	background: linear-gradient(135deg, rgba(240, 147, 251, 0.3), rgba(102, 126, 234, 0.3));
}

.content-image.streams {
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(255, 20, 147, 0.3));
}

.content-image.collab {
	background: linear-gradient(135deg, rgba(240, 147, 251, 0.3), rgba(255, 20, 147, 0.3));
}

.content-card h3 {
	padding: 1.5rem 1.5rem 0.5rem;
	font-size: 1.2rem;
	color: var(--text-primary);
}

.content-card p {
	padding: 0 1.5rem 1.5rem;
	color: var(--text-secondary);
	font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials-section {
	padding: 3rem 2rem;
	background: var(--light-bg);
}

.testimonials-section h2 {
	font-family: 'Playfair Display', serif;
	font-size: 2.5rem;
	margin-bottom: 0.5rem;
	text-align: center;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1.5rem;
	margin-top: 2rem;
}

.testimonial-card {
	padding: 2rem;
	background: var(--dark-bg);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	transition: var(--transition);
}

.testimonial-card:hover {
	border-color: var(--primary-color);
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(255, 20, 147, 0.15);
}

.testimonial-stars {
	font-size: 1.2rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
	letter-spacing: 2px;
}

.testimonial-text {
	color: var(--text-secondary);
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 1rem;
	font-style: italic;
}

.testimonial-author {
	color: var(--text-primary);
	font-weight: 600;
	font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
	.nav-container {
		gap: 1rem;
	}

	.nav-menu {
		display: none;
	}

	.hamburger {
		display: flex;
	}

	.nav-cta {
		display: none;
	}

	.hero-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
		padding: 2rem 0;
		flex-direction: column-reverse;
	}

	.hero-title {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		font-size: 1rem;
	}

	.hero-ctas {
		flex-direction: column;
	}

	.about-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.about-features {
		grid-template-columns: 1fr;
	}

	.contact-grid {
		grid-template-columns: 1fr;
	}

	.merch-content {
		flex-direction: column;
		text-align: center;
		gap: 2rem;
	}

	.merch-section h2,
	.merch-section p {
		margin-bottom: 1rem;
	}

	.merch-embed {
		height: 600px;
	}

	.social-links {
		justify-content: center;
		grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	}

	.social-link {
		min-height: 120px;
		padding: 1.5rem 1rem;
	}

	.carousel-btn {
		width: 40px;
		height: 40px;
		font-size: 1.2rem;
	}

	.carousel-item {
		min-width: 280px;
	}

	.testimonials-grid {
		grid-template-columns: 1fr;
	}

	.featured-section h2,
	.testimonials-section h2 {
		font-size: 2rem;
	}

	.btn {
		padding: 0.9rem 1.8rem;
		font-size: 0.95rem;
	}

	.btn-primary:hover,
	.btn-secondary:hover {
		transform: translateY(-2px);
	}

	.contact-socials a:hover {
		transform: scale(1.1) translateY(-2px);
	}
}

/* Cameo Page Styling */
.cameo-hero {
	padding: 5rem 2rem;
	background: linear-gradient(135deg, rgba(157, 0, 255, 0.15), rgba(255, 20, 147, 0.15));
	text-align: center;
	border-bottom: 1px solid rgba(255, 20, 147, 0.2);
}

.cameo-hero-content h1 {
	font-family: 'Playfair Display', serif;
	font-size: 3.5rem;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -1px;
}

.cameo-hero-subtitle {
	font-size: 1.4rem;
	color: var(--primary-color);
	margin-bottom: 1.5rem;
	font-weight: 500;
}

.cameo-hero-description {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.85);
	max-width: 650px;
	margin: 0 auto;
	line-height: 1.7;
	letter-spacing: 0.3px;
}

.cameo-details {
	padding: 5rem 2rem;
	background: var(--dark-bg);
}

.cameo-details h2 {
	font-family: 'Playfair Display', serif;
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 3rem;
}

.cameo-pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2.5rem;
	margin-top: 3rem;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.pricing-card {
	padding: 3rem 2.5rem;
	background: linear-gradient(135deg, rgba(255, 20, 147, 0.05), rgba(157, 0, 255, 0.05));
	border: 1px solid rgba(255, 20, 147, 0.2);
	border-radius: 14px;
	text-align: center;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.pricing-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 20, 147, 0.1), transparent);
	transition: left 0.6s ease;
}

.pricing-card:hover {
	border-color: var(--primary-color);
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(255, 20, 147, 0.15);
}

.pricing-card:hover::before {
	left: 100%;
}

.pricing-icon {
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
	display: inline-block;
}

.pricing-card h3 {
	font-size: 1.4rem;
	margin-bottom: 1.5rem;
	color: #fff;
	font-weight: 600;
	letter-spacing: 0.5px;
}

.price {
	font-size: 2.8rem;
	color: var(--primary-color);
	font-weight: 700;
	margin-bottom: 0.5rem;
	letter-spacing: -0.5px;
}

.price span {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.6);
	font-weight: 500;
}

.price-description {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
	line-height: 1.6;
	letter-spacing: 0.2px;
}

.cameo-process {
	padding: 5rem 2rem;
	background: linear-gradient(180deg, rgba(255, 20, 147, 0.05), transparent);
}

.cameo-process h2 {
	font-family: 'Playfair Display', serif;
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 4rem;
}

.process-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.step {
	padding: 2.5rem;
	background: linear-gradient(135deg, rgba(255, 20, 147, 0.08), rgba(157, 0, 255, 0.08));
	border: 1px solid rgba(255, 20, 147, 0.15);
	border-radius: 12px;
	text-align: center;
	transition: all 0.4s ease;
	position: relative;
}

.step::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
	transition: width 0.4s ease;
	border-radius: 0 0 12px 0;
}

.step:hover {
	border-color: var(--primary-color);
	transform: translateY(-6px);
	box-shadow: 0 15px 35px rgba(255, 20, 147, 0.12);
}

.step:hover::after {
	width: 100%;
}

.step-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	border-radius: 50%;
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	box-shadow: 0 10px 25px rgba(255, 20, 147, 0.3);
}

.step h3 {
	font-size: 1.2rem;
	margin-bottom: 0.8rem;
	color: #fff;
	font-weight: 600;
	letter-spacing: 0.3px;
}

.step p {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.75);
	margin: 0;
	line-height: 1.6;
	letter-spacing: 0.2px;
}

.cameo-cta {
	padding: 5rem 2rem;
	background: linear-gradient(135deg, rgba(157, 0, 255, 0.12), rgba(255, 20, 147, 0.12));
	text-align: center;
	border-top: 1px solid rgba(255, 20, 147, 0.2);
}

.cameo-cta h2 {
	font-family: 'Playfair Display', serif;
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	letter-spacing: -0.5px;
}

.cameo-cta p {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 3rem;
	line-height: 1.7;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	letter-spacing: 0.3px;
}

@media (max-width: 768px) {
	.cameo-hero {
		padding: 5rem 2rem;
	}

	.cameo-hero-content h1 {
		font-size: 2.5rem;
	}

	.cameo-hero-subtitle {
		font-size: 1.1rem;
	}

	.cameo-details,
	.cameo-process,
	.cameo-cta {
		padding: 4rem 2rem;
	}

	.cameo-pricing-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.pricing-card {
		padding: 2.5rem 2rem;
	}

	.process-steps {
		grid-template-columns: repeat(2, 1fr);
	}

	.step-number {
		width: 50px;
		height: 50px;
		font-size: 1.3rem;
	}
}

@media (max-width: 480px) {
	.cameo-hero {
		padding: 4rem 1.5rem;
	}

	.cameo-hero-content h1 {
		font-size: 1.8rem;
	}

	.cameo-hero-subtitle {
		font-size: 1rem;
	}

	.cameo-hero-description {
		font-size: 0.95rem;
	}

	.price {
		font-size: 2rem;
	}

	.process-steps {
		grid-template-columns: 1fr;
	}

	.step-number {
		width: 45px;
		height: 45px;
		font-size: 1.1rem;
	}

	.step h3 {
		font-size: 1.1rem;
	}

	.cameo-cta p {
		font-size: 1rem;
	}
}

@media (max-width: 480px) {
	.nav-cta {
		display: none;
	}

	.hero-title {
		font-size: 2rem;
	}

	.hero-stats {
		flex-direction: column;
		gap: 1rem;
	}

	.schedule-grid {
		grid-template-columns: 1fr;
	}
}

/* Loading Animations */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

body {
	animation: fadeIn 0.6s ease-out;
}

section {
	animation: fadeIn 0.8s ease-out backwards;
}

section:nth-child(1) { animation-delay: 0.1s; }
section:nth-child(2) { animation-delay: 0.2s; }
section:nth-child(3) { animation-delay: 0.3s; }
section:nth-child(4) { animation-delay: 0.4s; }
section:nth-child(5) { animation-delay: 0.5s; }

/* Poll Section */
.poll-section {
	padding: 3rem 2rem;
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.08));
	text-align: center;
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
}

.poll-section h2 {
	font-family: 'Playfair Display', serif;
	font-size: 2.5rem;
	margin-bottom: 2rem;
	background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.poll-container {
	max-width: 600px;
	margin: 0 auto;
}

.poll-question {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 600;
}

.poll-options {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

.poll-option {
	background: var(--light-bg);
	border: 1px solid var(--border-color);
	border-radius: 10px;
	padding: 1.2rem;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: left;
	display: grid;
	grid-template-columns: 100px 1fr 60px;
	gap: 1rem;
	align-items: center;
}

.poll-option:hover {
	border-color: var(--primary-color);
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), var(--light-bg));
	transform: translateX(5px);
}

.poll-label {
	font-weight: 600;
	white-space: nowrap;
	color: #ffffff;
}

.poll-bar {
	height: 8px;
	background: rgba(99, 102, 241, 0.2);
	border-radius: 4px;
	overflow: hidden;
}

.poll-fill {
	height: 100%;
	background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
	transition: width 0.5s ease;
	border-radius: 4px;
}

.poll-count {
	text-align: right;
	font-size: 1.1rem;
	color: #ffffff;
	font-weight: 700;
	min-width: 60px;
	text-shadow: 0 0 8px rgba(99, 102, 241, 0.4);
}

.poll-note {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.6);
	margin-top: 1rem;
}

/* TikTok Feed Section */
.tiktok-feed-section {
	padding: 3rem 2rem;
	text-align: center;
	background: var(--dark-bg);
}

.tiktok-feed-section h2 {
	font-family: 'Playfair Display', serif;
	font-size: 2.5rem;
	margin-bottom: 0.5rem;
	background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.tiktok-embed-container {
	max-width: 400px;
	margin: 2rem auto;
	padding: 2rem;
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.08));
	border: 1px solid var(--border-color);
	border-radius: 12px;
	min-height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tiktok-embed {
	max-width: 100%;
	width: 100%;
}

@media (max-width: 768px) {
	.poll-option {
		grid-template-columns: 1fr;
		gap: 0.5rem;
	}

	.poll-label {
		white-space: normal;
	}

	.poll-bar {
		order: 3;
		grid-column: 1 / -1;
	}

	.poll-count {
		order: 2;
		text-align: left;
	}

	.tiktok-embed-container {
		min-height: 400px;
	}
}
