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

:root {
	--primary-color: #ff006e;
	--secondary-color: #8338ec;
	--dark-bg: #0a0e27;
	--light-text: #ffffff;
	--accent: #ffbe0b;
	--transition: all 0.3s ease;
}

html {
	scroll-behavior: smooth;
}

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

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

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	display: grid;
	grid-template-columns: 1fr;
}

.logo h1 {
	font-size: 1.8rem;
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

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

.nav-link {
	color: var(--light-text);
	text-decoration: none;
	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::after {
	width: 100%;
}

/* Hero Section */
.hero {
	margin-top: 60px;
	position: relative;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(131, 56, 236, 0.1));
}

.hero-content {
	text-align: center;
	z-index: 1;
	max-width: 800px;
	padding: 20px;
}

.hero-title {
	font-size: clamp(2.5rem, 8vw, 5rem);
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 1rem;
	animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
	font-size: 1.5rem;
	color: var(--accent);
	margin-bottom: 1rem;
	animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-description {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 2rem;
	animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-profile-circle {
	width: 250px;
	height: 250px;
	margin: 2rem auto;
	border-radius: 50%;
	overflow: hidden;
	border: 4px solid var(--primary-color);
	box-shadow: 0 0 30px rgba(255, 0, 110, 0.5);
	animation: floatUp 3s ease-in-out infinite, fadeInUp 0.8s ease 0.6s both;
}

.hero-profile-circle img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@keyframes floatUp {
	0%, 100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-20px);
	}
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-social-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	margin: 1.5rem 0;
	animation: fadeInUp 0.8s ease 0.7s both;
}

.social-icon-btn {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: var(--primary-color);
  color: white;
  border: 2px solid transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(131, 56, 236, 0.18);
}

.social-icon-btn:hover {
	transform: translateY(-4px);
	border-color: var(--accent);
	box-shadow: 0 8px 30px rgba(131,56,236,0.18), 0 0 0 6px rgba(255, 0, 110, 0.06);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.social-icon-btn svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor;
}

.social-icon {
	width: 20px;
	height: 20px;
	display: block;
	object-fit: contain;
}

.hero-exclusive-btn {
	display: flex;
	justify-content: center;
	margin: 1rem 0;
	animation: fadeInUp 0.8s ease 0.75s both;
}

.btn-exclusive {
	background: linear-gradient(135deg, var(--accent), var(--primary-color));
	color: white;
	padding: 14px 40px;
	font-size: 1.1rem;
	font-weight: 700;
	border: 2px solid transparent;
	box-shadow: 0 6px 20px rgba(255, 190, 11, 0.4);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.btn-exclusive:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(255, 190, 11, 0.6);
	border-color: var(--accent);
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Buttons */
.btn {
	padding: 12px 30px;
	border: none;
	border-radius: 50px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
	text-decoration: none;
	display: inline-block;
}

.btn-primary {
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	color: white;
	box-shadow: 0 4px 15px rgba(255, 0, 110, 0.4);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(255, 0, 110, 0.6);
}

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

.btn-secondary:hover {
	background: var(--primary-color);
}

/* Stats Section */
.stats {
	background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(131, 56, 236, 0.1));
	padding: 4rem 2rem;
}

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

.stat-card {
	text-align: center;
	padding: 2rem;
	background: rgba(255, 0, 110, 0.05);
	border: 2px solid rgba(255, 0, 110, 0.2);
	border-radius: 10px;
	transition: var(--transition);
	cursor: pointer;
	position: relative;
}

.stat-card:hover {
	transform: translateY(-5px);
	border-color: var(--primary-color);
	background: rgba(255, 0, 110, 0.1);
	box-shadow: 0 0 20px rgba(255, 0, 110, 0.4), inset 0 0 15px rgba(255, 0, 110, 0.1);
}

.stat-number {
	font-size: 2.5rem;
	color: var(--accent);
	margin-bottom: 0.5rem;
}

.stat-label {
	color: rgba(255, 255, 255, 0.7);
}

.gallery h2 {
	font-size: 2.5rem;
	margin-bottom: 0.5rem;
}

.section-subtitle {
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 2rem;
}

.filter-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	margin-bottom: 3rem;
	flex-wrap: wrap;
}

.filter-btn {
	padding: 10px 20px;
	border-radius: 25px;
	cursor: pointer;
	transition: var(--transition);
	font-weight: 600;
}

.filter-btn.active,
.filter-btn:hover {
	background: var(--primary-color);
	transform: scale(1.05);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 2rem;
}

.gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	cursor: pointer;
}

.gallery-image {
	width: 100%;
	height: 250px;
	background-size: cover;
	background-position: center;
	transition: var(--transition);
}

.gallery-item:hover .gallery-image {
	transform: scale(1.1);
}

.gallery-info {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
	padding: 2rem 1rem 1rem;
	transform: translateY(20px);
	transition: var(--transition);
}

.gallery-item:hover .gallery-info {
	transform: translateY(0);
}

.gallery-info h3 {
	margin-bottom: 0.5rem;
}

.gallery-category {
	display: inline-block;
	background: var(--primary-color);
	padding: 3px 10px;
	border-radius: 20px;
	font-size: 0.8rem;
	margin-bottom: 0.5rem;
}

.gallery-stats {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.8);
}

/* About Section */
.about {
	padding: 4rem 2rem;
	background: linear-gradient(135deg, rgba(131, 56, 236, 0.1), rgba(255, 0, 110, 0.05));
}

.about-container {
	max-width: 1000px;
	margin: 0 auto;
}

.about-content h2 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
}

.about-content p {
	margin-bottom: 1.5rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.9);
}

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

.skill h4 {
	margin-bottom: 0.5rem;
}

.skill-bar {
	height: 8px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	overflow: hidden;
}

.skill-progress {
	height: 100%;
	background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
	border-radius: 10px;
	animation: animateSkill 1s ease-out;
}

@keyframes animateSkill {
	from {
		width: 0;
	}
}

/* Testimonials Section */
.testimonials {
	padding: 4rem 2rem;
	background-color: var(--dark-bg);
}

.testimonials-container {
	max-width: 1200px;
	margin: 0 auto;
}

.testimonials-container h2 {
	font-size: 2.5rem;
	margin-bottom: 2rem;
	text-align: center;
}

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

.testimonial-card {
	background: rgba(255, 0, 110, 0.05);
	border: 1px solid rgba(255, 0, 110, 0.2);
	padding: 2rem;
	border-radius: 10px;
	transition: var(--transition);
}

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

.testimonial-text {
	font-style: italic;
	margin-bottom: 1rem;
	color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
	color: var(--accent);
	font-weight: 600;
}

/* Blog Section */
.blog {
	padding: 4rem 2rem;
	background: linear-gradient(135deg, rgba(131, 56, 236, 0.1), rgba(255, 0, 110, 0.05));
}

.blog-container {
	max-width: 1200px;
	margin: 0 auto;
}

.blog-container h2 {
	font-size: 2.5rem;
	margin-bottom: 0.5rem;
	text-align: center;
}

.blog-container > .section-subtitle {
	text-align: center;
	margin-bottom: 3rem;
}

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

.blog-card {
	background: rgba(255, 0, 110, 0.05);
	border: 1px solid rgba(255, 0, 110, 0.2);
	border-radius: 10px;
	overflow: hidden;
	transition: var(--transition);
}

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

.blog-image {
	width: 100%;
	height: 200px;
	background-size: cover;
	background-position: center;
	transition: var(--transition);
}

.blog-card:hover .blog-image {
	transform: scale(1.05);
}

.blog-content {
	padding: 1.5rem;
}

.blog-category {
	display: inline-block;
	background: var(--primary-color);
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 0.8rem;
	margin-bottom: 0.5rem;
}

.blog-card h3 {
	margin: 0.5rem 0;
}

.blog-card p {
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 1rem;
}

.read-more {
	color: var(--accent);
	text-decoration: none;
	font-weight: 600;
	transition: var(--transition);
}

.read-more:hover {
	color: var(--primary-color);
}

.blog-container > .btn {
	display: block;
	margin: 0 auto;
}

/* Stream Schedule Section */
.schedule {
	padding: 4rem 2rem;
	background: linear-gradient(135deg, #1a1f3a 0%, #0a0e27 100%);
}

.schedule-container {
	max-width: 1200px;
	margin: 0 auto;
}

.schedule-container h2 {
	font-size: 2.5rem;
	margin-bottom: 0.5rem;
	text-align: center;
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

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

.schedule-item {
	background: rgba(255, 255, 255, 0.05);
	border: 2px solid var(--primary-color);
	border-radius: 15px;
	padding: 1.5rem;
	text-align: center;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.schedule-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 0, 110, 0.1), transparent);
	transition: left 0.5s ease;
}

.schedule-item:hover::before {
	left: 100%;
}

.schedule-item:hover {
	transform: translateY(-5px);
	border-color: var(--secondary-color);
	box-shadow: 0 8px 25px rgba(131, 56, 236, 0.3);
}

.schedule-item.no-stream {
	border-color: rgba(255, 255, 255, 0.2);
	opacity: 0.6;
}

.schedule-item.no-stream:hover {
	border-color: rgba(255, 255, 255, 0.3);
	box-shadow: none;
	transform: none;
}

.schedule-date {
	font-size: 1.1rem;
	font-weight: bold;
	color: var(--accent);
	margin-bottom: 0.5rem;
}

.schedule-time {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 0.75rem;
}

.schedule-content {
	font-size: 1.3rem;
	font-weight: bold;
	color: var(--light-text);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.schedule-item.no-stream .schedule-content {
	color: rgba(255, 255, 255, 0.5);
}

/* Contact Section */
.contact {
	padding: 4rem 2rem;
	background-color: var(--dark-bg);
}

.contact-container {
	max-width: 1200px;
	margin: 0 auto;
}

.contact-container h2 {
	font-size: 2.5rem;
	margin-bottom: 0.5rem;
	text-align: center;
}

.contact-container > .section-subtitle {
	text-align: center;
	margin-bottom: 3rem;
}

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

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.contact-item h4 {
	margin-bottom: 0.5rem;
	color: var(--accent);
}

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

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

.social-links {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.social-link {
	display: inline-block;
	padding: 10px 15px;
	background: rgba(255, 0, 110, 0.1);
	border: 1px solid var(--primary-color);
	border-radius: 5px;
	transition: var(--transition);
}

.social-link:hover {
	background: var(--primary-color);
	color: white;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

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

.form-group label {
	margin-bottom: 0.5rem;
	font-weight: 600;
}

.form-group input,
.form-group textarea {
	padding: 12px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 0, 110, 0.3);
	border-radius: 5px;
	color: white;
	font-family: inherit;
	transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 10px rgba(255, 0, 110, 0.2);
}

.contact-form .btn {
	margin-top: 1rem;
}

/* Footer */
.footer {
	background: rgba(0, 0, 0, 0.5);
	padding: 2rem;
	text-align: center;
	border-top: 1px solid rgba(255, 0, 110, 0.2);
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
}

.footer-links {
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-top: 1rem;
	flex-wrap: wrap;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: var(--transition);
}

.footer-links a:hover {
	color: var(--primary-color);
}

/* Instagram gallery styles */
.instagram-gallery {
	padding: 4rem 2rem;
	background-color: var(--dark-bg);
}

.instagram-container {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.instagram-grid {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.instagram-embed-wrap {
	width: 100%;
	max-width: 800px;
	border-radius: 10px;
	overflow: hidden;
	/* blend from white at top into the site's dark background */
	background: linear-gradient(180deg, #ffffff 0%, rgba(255,255,255,0.65) 40%, var(--dark-bg) 100%);
	padding: 12px;
	box-shadow: 0 8px 30px rgba(0,0,0,0.45);
}

.instagram-embed-wrap iframe {
	width: 100%;
	/* taller but responsive: use viewport height with sensible max/min */
	height: min(80vh, 1100px);
	min-height: 700px;
	border: none;
	background: transparent;
	}

/* Exclusive Page Styles */
.support-page {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6rem 2rem 4rem;
	background: linear-gradient(135deg, #1a1f3a 0%, #0a0e27 50%, #1a1f3a 100%);
}

.support-content {
	max-width: 800px;
	width: 100%;
	text-align: center;
}

.support-title {
	font-size: 3.5rem;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.support-subtitle {
	font-size: 1.3rem;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 3rem;
}

.support-buttons {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-bottom: 3rem;
}

.btn-platform {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 2rem;
	font-size: 1.2rem;
	border-radius: 15px;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

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

.btn-platform:hover::before {
	left: 100%;
}

.btn-main-page {
	background: linear-gradient(135deg, #00aff0, #0088cc) !important;
	border: 2px solid #00aff0 !important;
	color: white !important;
}

.btn-main-page:hover {
	background: linear-gradient(135deg, #00aff0, #00ccff) !important;
	box-shadow: 0 8px 30px rgba(0, 175, 240, 0.4);
	transform: translateY(-5px);
}

.btn-bonus-page {
	background: linear-gradient(135deg, #0e7ed6, #0a5fa8) !important;
	border: 2px solid #0e7ed6 !important;
	color: white !important;
}

.btn-bonus-page:hover {
	background: linear-gradient(135deg, #0e7ed6, #1090ff) !important;
	box-shadow: 0 8px 30px rgba(14, 126, 214, 0.4);
	transform: translateY(-5px);
}

.platform-name {
	font-size: 1.8rem;
	font-weight: bold;
	margin-bottom: 0.5rem;
	display: block;
}

.platform-desc {
	font-size: 1rem;
	opacity: 0.9;
	display: block;
}

.support-back {
	margin-top: 2rem;
}

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

	.hero-buttons {
		flex-direction: column;
	}
	
	.hero-profile-circle {
		width: 200px;
		height: 200px;
	}
	
	.hero-profile-circle img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
	}
	
	.hero-social-buttons {
		gap: 0.75rem;
	}
	
	.social-icon-btn {
		width: 48px;
		height: 48px;
	}
	
	.social-icon,
	.social-icon-btn svg {
		width: 18px;
		height: 18px;
	}
	
	.social-icon-btn img {
		width: 18px;
		height: 18px;
		object-fit: contain;
	}

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

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

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

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

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

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