/* ==================== VARIABLES ==================== */
:root {
	--bg-deep: #06060f;
	--bg-mid: #0a0a18;
	--accent: #e07a5f;
	--accent-light: #f4a58a;
	--magic-purple: #9b6dff;
	--magic-blue: #6eb5ff;
	--magic-pink: #ff6eb5;
	--magic-gold: #ffd700;
	--magic-cyan: #00d4ff;
	--magic-green: #4ade80;
	--text-primary: #f8f6ff;
	--text-secondary: #b8b5c8;
	--text-muted: #7a7890;
}

/* ==================== RESET & BASE ==================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	position: relative;
	z-index: 10;
}

/* ==================== CUSTOM CURSOR ==================== */
.cursor {
	width: 20px; height: 20px;
	border: 2px solid var(--magic-purple);
	border-radius: 50%;
	position: fixed;
	pointer-events: none;
	z-index: 9999;
	transition: transform 0.1s ease, background 0.2s ease;
	mix-blend-mode: difference;
}

.cursor-dot {
	width: 6px; height: 6px;
	background: var(--magic-gold);
	border-radius: 50%;
	position: fixed;
	pointer-events: none;
	z-index: 9999;
	box-shadow: 0 0 10px var(--magic-gold), 0 0 20px var(--magic-gold);
}

.cursor.hover {
	transform: scale(2);
	background: rgba(155, 109, 255, 0.2);
}

/* ==================== BACKGROUND EFFECTS ==================== */
.starfield {
	position: fixed;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.star {
	position: absolute;
	background: white;
	border-radius: 50%;
	animation: twinkle var(--duration) ease-in-out infinite;
}

@keyframes twinkle {
	0%, 100% { opacity: var(--base-opacity); transform: scale(1); }
	50% { opacity: 1; transform: scale(1.2); }
}

.aurora {
	position: fixed;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	opacity: 0.4;
}

.aurora-layer {
	position: absolute;
	width: 200%; height: 60%;
	top: -20%; left: -50%;
	background: linear-gradient(180deg, transparent 0%, rgba(155, 109, 255, 0.1) 20%, rgba(110, 181, 255, 0.15) 40%, rgba(255, 110, 181, 0.1) 60%, transparent 100%);
	filter: blur(80px);
	animation: aurora-drift 20s ease-in-out infinite;
}

.aurora-layer:nth-child(2) {
	animation-delay: -7s;
	animation-duration: 25s;
}

@keyframes aurora-drift {
	0%, 100% { transform: translateX(-10%) rotate(-5deg); }
	50% { transform: translateX(10%) rotate(5deg); }
}

.particles-container {
	position: fixed;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	overflow: hidden;
}

.particle {
	position: absolute;
	border-radius: 50%;
	animation: float-up linear infinite;
}

.particle.gold { background: var(--magic-gold); box-shadow: 0 0 10px var(--magic-gold); }
.particle.purple { background: var(--magic-purple); box-shadow: 0 0 10px var(--magic-purple); }
.particle.blue { background: var(--magic-blue); box-shadow: 0 0 10px var(--magic-blue); }

@keyframes float-up {
	0% { transform: translateY(100vh) scale(0); opacity: 0; }
	10% { opacity: 1; transform: translateY(90vh) scale(1); }
	90% { opacity: 1; }
	100% { transform: translateY(-10vh) scale(0.5); opacity: 0; }
}

/* ==================== NAVIGATION ==================== */
nav {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 100;
	padding: 1.25rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: rgba(6, 6, 15, 0.85);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(155, 109, 255, 0.1);
}

.logo {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.4rem;
	font-weight: 500;
	color: var(--text-primary);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.logo-symbol {
	font-size: 1.2rem;
	background: linear-gradient(135deg, var(--magic-purple), var(--magic-gold));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: symbol-glow 3s ease-in-out infinite;
}

@keyframes symbol-glow {
	0%, 100% { filter: drop-shadow(0 0 5px var(--magic-purple)); }
	50% { filter: drop-shadow(0 0 15px var(--magic-gold)); }
}

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

.nav-links a {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	position: relative;
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: -4px; left: 0;
	width: 0; height: 2px;
	background: linear-gradient(90deg, var(--magic-purple), var(--magic-gold));
	transition: width 0.3s ease;
}

.nav-links a:hover {
	color: var(--text-primary);
	text-shadow: 0 0 20px var(--magic-purple);
}

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

.nav-cta {
	padding: 0.6rem 1.25rem;
	background: linear-gradient(135deg, var(--magic-purple), var(--accent));
	color: white !important;
	border-radius: 100px;
	font-weight: 500;
	box-shadow: 0 0 20px rgba(155, 109, 255, 0.3);
}

.nav-cta:hover {
	box-shadow: 0 0 30px rgba(155, 109, 255, 0.5);
	transform: translateY(-2px);
}

.nav-cta::after { display: none; }

.mobile-menu-btn {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 5px;
}

.mobile-menu-btn span {
	width: 24px;
	height: 2px;
	background: var(--text-primary);
}

/* ==================== BUTTONS ==================== */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.875rem 1.75rem;
	border-radius: 100px;
	font-size: 0.95rem;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn-primary {
	background: linear-gradient(135deg, var(--magic-purple), var(--accent));
	color: white;
	box-shadow: 0 4px 20px rgba(155, 109, 255, 0.3);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(155, 109, 255, 0.5);
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(155, 109, 255, 0.3);
	color: var(--text-primary);
}

.btn-secondary:hover {
	background: rgba(155, 109, 255, 0.15);
	border-color: var(--magic-purple);
}

/* ==================== HERO ==================== */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 8rem 0 6rem;
	position: relative;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	background: rgba(155, 109, 255, 0.1);
	border: 1px solid rgba(155, 109, 255, 0.3);
	border-radius: 100px;
	font-size: 0.85rem;
	color: var(--magic-purple);
	margin-bottom: 1.5rem;
	animation: badge-pulse 3s ease-in-out infinite;
}

@keyframes badge-pulse {
	0%, 100% { box-shadow: 0 0 10px rgba(155, 109, 255, 0.2); }
	50% { box-shadow: 0 0 25px rgba(155, 109, 255, 0.4); }
}

.hero h1 {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 500;
	line-height: 1.2;
	margin-bottom: 1.5rem;
}

.hero h1 .magic-text {
	background: linear-gradient(135deg, var(--magic-purple), var(--magic-blue), var(--magic-pink), var(--magic-gold));
	background-size: 300% 300%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: gradient-shift 5s ease infinite;
}

@keyframes gradient-shift {
	0%, 100% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
}

.hero-description {
	font-size: 1.125rem;
	color: var(--text-secondary);
	margin-bottom: 2.5rem;
	max-width: 440px;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
	display: flex;
	justify-content: center;
	position: relative;
}

.hero-image-wrapper {
	position: relative;
	width: 380px;
	height: 380px;
}

.magic-ring {
	position: absolute;
	border-radius: 50%;
	border: 1px solid;
	animation: ring-rotate linear infinite;
}

.magic-ring:nth-child(1) { inset: -30px; border-color: rgba(155, 109, 255, 0.3); animation-duration: 20s; }
.magic-ring:nth-child(2) { inset: -50px; border-color: rgba(110, 181, 255, 0.2); animation-duration: 30s; animation-direction: reverse; }
.magic-ring:nth-child(3) { inset: -70px; border-color: rgba(255, 215, 0, 0.15); animation-duration: 40s; }
.magic-ring::before { content: '✦'; position: absolute; top: 0; left: 50%; transform: translateX(-50%); font-size: 0.8rem; }

@keyframes ring-rotate {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

.hero-glow {
	position: absolute;
	inset: -60px;
	background: radial-gradient(circle, rgba(155, 109, 255, 0.3) 0%, transparent 70%);
	filter: blur(40px);
	animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
	0%, 100% { opacity: 0.5; transform: scale(1); }
	50% { opacity: 0.8; transform: scale(1.1); }
}

.hero-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
	border: 3px solid rgba(155, 109, 255, 0.5);
	position: relative;
	z-index: 1;
	box-shadow: 0 0 30px rgba(155, 109, 255, 0.3);
	transition: all 0.5s ease;
}

.hero-image-wrapper:hover .hero-image {
	border-color: var(--magic-gold);
	box-shadow: 0 0 50px rgba(255, 215, 0, 0.4);
}

.floating-runes {
	position: absolute;
	inset: -100px;
	pointer-events: none;
}

.rune {
	position: absolute;
	font-size: 1.5rem;
	opacity: 0.4;
	animation: rune-float 6s ease-in-out infinite;
}

.rune:nth-child(1) { top: 10%; left: 0; animation-delay: 0s; color: var(--magic-purple); }
.rune:nth-child(2) { top: 30%; right: -10%; animation-delay: 1s; color: var(--magic-gold); }
.rune:nth-child(3) { bottom: 20%; left: -5%; animation-delay: 2s; color: var(--magic-blue); }
.rune:nth-child(4) { bottom: 40%; right: 0; animation-delay: 3s; color: var(--magic-pink); }

@keyframes rune-float {
	0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
	50% { transform: translateY(-20px) rotate(10deg); opacity: 0.7; }
}

.hero-stats {
	position: absolute;
	bottom: 0;
	left: -80px;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	z-index: 2;
}

.stat-card {
	background: rgba(10, 10, 24, 0.8);
	border: 1px solid rgba(155, 109, 255, 0.2);
	border-radius: 12px;
	padding: 1rem 1.25rem;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.stat-card:hover {
	border-color: var(--magic-purple);
	box-shadow: 0 0 20px rgba(155, 109, 255, 0.2);
}

.stat-card strong {
	display: block;
	font-size: 1.25rem;
	background: linear-gradient(135deg, var(--magic-purple), var(--magic-gold));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.stat-card span {
	font-size: 0.8rem;
	color: var(--text-muted);
}

/* ==================== SECTIONS ==================== */
section {
	padding: 8rem 0;
	position: relative;
}

.section-label {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--magic-purple);
	margin-bottom: 1rem;
}

.section-label::before,
.section-label::after {
	content: '✦';
	font-size: 0.6rem;
	opacity: 0.6;
}

.section-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 500;
	margin-bottom: 1rem;
}

.section-description {
	font-size: 1.1rem;
	color: var(--text-secondary);
	max-width: 600px;
}

.section-header {
	margin-bottom: 4rem;
}

/* Magic Divider */
.magic-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	padding: 4rem 0;
}

.magic-divider span {
	font-size: 1.5rem;
	animation: spin-slow 10s linear infinite;
}

.magic-divider span:nth-child(2) {
	animation-direction: reverse;
	animation-duration: 15s;
}

@keyframes spin-slow {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

.magic-divider::before,
.magic-divider::after {
	content: '';
	flex: 1;
	max-width: 200px;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--magic-purple), transparent);
}

/* ==================== AUDIO PLAYER ==================== */
.audio-section {
	padding: 6rem 0;
	position: relative;
}

.audio-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at center, rgba(155, 109, 255, 0.1) 0%, transparent 60%);
	pointer-events: none;
}

.audio-player-wrapper {
	max-width: 700px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.audio-player {
	background: linear-gradient(135deg, rgba(10, 10, 24, 0.9), rgba(20, 15, 40, 0.9));
	border: 1px solid rgba(155, 109, 255, 0.3);
	border-radius: 24px;
	padding: 2.5rem;
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(20px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(155, 109, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.audio-player::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--magic-purple), var(--magic-gold), var(--magic-pink), var(--magic-purple));
	background-size: 300% 100%;
	animation: gradient-slide 4s linear infinite;
}

@keyframes gradient-slide {
	0% { background-position: 0% 50%; }
	100% { background-position: 300% 50%; }
}

.audio-header {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.audio-avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	border: 2px solid var(--magic-purple);
	object-fit: cover;
	box-shadow: 0 0 20px rgba(155, 109, 255, 0.3);
	transition: all 0.3s ease;
}

.audio-player.playing .audio-avatar {
	border-color: var(--magic-gold);
	box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
	animation: avatar-pulse 2s ease-in-out infinite;
}

@keyframes avatar-pulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.05); }
}

.audio-info h3 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.5rem;
	font-weight: 500;
	margin-bottom: 0.25rem;
}

.audio-info p {
	color: var(--text-muted);
	font-size: 0.9rem;
}

.audio-info .audio-tag {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	background: rgba(155, 109, 255, 0.15);
	border: 1px solid rgba(155, 109, 255, 0.3);
	border-radius: 100px;
	font-size: 0.75rem;
	color: var(--magic-purple);
	margin-top: 0.5rem;
}

/* Waveform Visualizer */
.audio-visualizer {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 3px;
	height: 60px;
	margin-bottom: 1.5rem;
	padding: 0 1rem;
}

.visualizer-bar {
	width: 4px;
	background: linear-gradient(180deg, var(--magic-purple), var(--magic-blue));
	border-radius: 2px;
	transition: height 0.1s ease;
	height: 10px;
}

.audio-player.playing .visualizer-bar {
	animation: wave-dance 0.5s ease-in-out infinite;
}

.visualizer-bar:nth-child(1) { animation-delay: 0s; }
.visualizer-bar:nth-child(2) { animation-delay: 0.1s; }
.visualizer-bar:nth-child(3) { animation-delay: 0.2s; }
.visualizer-bar:nth-child(4) { animation-delay: 0.15s; }
.visualizer-bar:nth-child(5) { animation-delay: 0.3s; }
.visualizer-bar:nth-child(6) { animation-delay: 0.25s; }
.visualizer-bar:nth-child(7) { animation-delay: 0.05s; }
.visualizer-bar:nth-child(8) { animation-delay: 0.35s; }
.visualizer-bar:nth-child(9) { animation-delay: 0.1s; }
.visualizer-bar:nth-child(10) { animation-delay: 0.2s; }
.visualizer-bar:nth-child(11) { animation-delay: 0.15s; }
.visualizer-bar:nth-child(12) { animation-delay: 0.25s; }
.visualizer-bar:nth-child(13) { animation-delay: 0.3s; }
.visualizer-bar:nth-child(14) { animation-delay: 0.05s; }
.visualizer-bar:nth-child(15) { animation-delay: 0.2s; }
.visualizer-bar:nth-child(16) { animation-delay: 0.1s; }
.visualizer-bar:nth-child(17) { animation-delay: 0.35s; }
.visualizer-bar:nth-child(18) { animation-delay: 0.15s; }
.visualizer-bar:nth-child(19) { animation-delay: 0.25s; }
.visualizer-bar:nth-child(20) { animation-delay: 0.05s; }

@keyframes wave-dance {
	0%, 100% { height: 10px; opacity: 0.5; }
	50% { height: calc(20px + var(--wave-height, 30px)); opacity: 1; }
}

/* Progress Bar */
.audio-progress-container {
	margin-bottom: 1rem;
}

.audio-progress {
	width: 100%;
	height: 6px;
	background: rgba(155, 109, 255, 0.2);
	border-radius: 3px;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.audio-progress-bar {
	height: 100%;
	background: linear-gradient(90deg, var(--magic-purple), var(--magic-gold));
	border-radius: 3px;
	width: 0%;
	transition: width 0.1s linear;
	position: relative;
}

.audio-progress-bar::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 14px;
	height: 14px;
	background: var(--magic-gold);
	border-radius: 50%;
	box-shadow: 0 0 10px var(--magic-gold);
	opacity: 0;
	transition: opacity 0.2s ease;
}

.audio-progress:hover .audio-progress-bar::after {
	opacity: 1;
}

.audio-time {
	display: flex;
	justify-content: space-between;
	font-size: 0.8rem;
	color: var(--text-muted);
	margin-top: 0.5rem;
}

/* Controls */
.audio-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
}

.play-btn {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--magic-purple), var(--accent));
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	box-shadow: 0 5px 25px rgba(155, 109, 255, 0.4);
	position: relative;
}

.play-btn::before {
	content: '';
	position: absolute;
	inset: -4px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--magic-purple), var(--magic-gold), var(--magic-pink));
	z-index: -1;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.play-btn:hover {
	transform: scale(1.1);
	box-shadow: 0 10px 40px rgba(155, 109, 255, 0.5);
}

.play-btn:hover::before {
	opacity: 1;
	animation: btn-rotate 3s linear infinite;
}

@keyframes btn-rotate {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

.play-btn svg {
	width: 28px;
	height: 28px;
	fill: white;
	transition: all 0.2s ease;
}

.play-btn .pause-icon { display: none; }
.audio-player.playing .play-btn .play-icon { display: none; }
.audio-player.playing .play-btn .pause-icon { display: block; }

.volume-control {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.volume-control svg {
	width: 20px;
	height: 20px;
	fill: var(--text-muted);
}

.volume-slider {
	width: 80px;
	height: 4px;
	-webkit-appearance: none;
	appearance: none;
	background: rgba(155, 109, 255, 0.3);
	border-radius: 2px;
	cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 12px;
	height: 12px;
	background: var(--magic-purple);
	border-radius: 50%;
	cursor: pointer;
	box-shadow: 0 0 10px var(--magic-purple);
}

/* Floating Notes Animation */
.floating-notes {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
}

.floating-note {
	position: absolute;
	font-size: 1.5rem;
	opacity: 0;
	animation: note-float 4s ease-in-out infinite;
}

.audio-player.playing .floating-note {
	opacity: 1;
}

.floating-note:nth-child(1) { left: 10%; animation-delay: 0s; }
.floating-note:nth-child(2) { left: 25%; animation-delay: 1s; }
.floating-note:nth-child(3) { left: 45%; animation-delay: 2s; }
.floating-note:nth-child(4) { left: 65%; animation-delay: 0.5s; }
.floating-note:nth-child(5) { left: 85%; animation-delay: 1.5s; }

@keyframes note-float {
	0% { bottom: -20px; opacity: 0; transform: rotate(0deg) scale(0.5); }
	20% { opacity: 0.8; }
	80% { opacity: 0.8; }
	100% { bottom: 100%; opacity: 0; transform: rotate(20deg) scale(1); }
}

/* ==================== ABOUT ==================== */
.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.about-text {
	font-size: 1.1rem;
	color: var(--text-secondary);
	line-height: 1.9;
}

.about-text p {
	margin-bottom: 1.5rem;
}

.about-quote {
	position: relative;
	padding: 2rem;
	background: linear-gradient(135deg, rgba(155, 109, 255, 0.1), rgba(110, 181, 255, 0.05));
	border-radius: 16px;
	border: 1px solid rgba(155, 109, 255, 0.2);
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.25rem;
	font-style: italic;
	color: var(--text-primary);
	margin: 2rem 0;
}

.about-quote::before {
	content: '"';
	position: absolute;
	top: -10px;
	left: 20px;
	font-size: 4rem;
	color: var(--magic-purple);
	opacity: 0.3;
}

.tools-section h3 {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--text-muted);
	margin-bottom: 1.5rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.tools-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

.tool-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.25rem;
	background: rgba(155, 109, 255, 0.05);
	border: 1px solid rgba(155, 109, 255, 0.15);
	border-radius: 12px;
	transition: all 0.3s ease;
}

.tool-item:hover {
	border-color: var(--magic-purple);
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(155, 109, 255, 0.15);
}

.tool-icon {
	width: 44px;
	height: 44px;
	background: linear-gradient(135deg, rgba(155, 109, 255, 0.2), rgba(110, 181, 255, 0.1));
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
}

.tool-item h4 {
	font-size: 1rem;
	font-weight: 500;
	margin-bottom: 0.2rem;
}

.tool-item span {
	font-size: 0.8rem;
	color: var(--text-muted);
}

/* ==================== LYRIA GALLERY ==================== */
.lyria-gallery-section {
	position: relative;
	padding: 10rem 0;
	overflow: hidden;
}

.lyria-gallery-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 20% 30%, rgba(155, 109, 255, 0.15) 0%, transparent 50%),
				radial-gradient(ellipse at 80% 70%, rgba(110, 181, 255, 0.1) 0%, transparent 50%);
	pointer-events: none;
}

.gallery-header {
	text-align: center;
	margin-bottom: 4rem;
	position: relative;
	z-index: 1;
}

.gallery-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 500;
	margin-bottom: 1rem;
}

.gallery-title .highlight,
.landscapes-title .highlight {
	background: linear-gradient(135deg, var(--magic-cyan), var(--magic-purple), var(--magic-gold));
	background-size: 200% 200%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: gradient-shift 5s ease infinite;
}

.gallery-subtitle {
	font-size: 1.2rem;
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	position: relative;
	z-index: 1;
}

.gallery-item {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	background: rgba(10, 10, 24, 0.5);
	border: 1px solid rgba(155, 109, 255, 0.1);
}

.gallery-item::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 0%, transparent 50%, rgba(6, 6, 15, 0.9) 100%);
	z-index: 1;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.gallery-item::after {
	content: '';
	position: absolute;
	inset: -2px;
	background: linear-gradient(135deg, var(--magic-purple), var(--magic-cyan), var(--magic-gold));
	border-radius: 18px;
	z-index: -1;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.gallery-item:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(155, 109, 255, 0.2);
}

.gallery-item:hover::before,
.gallery-item:hover::after {
	opacity: 1;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

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

.gallery-item-info {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1.5rem;
	z-index: 2;
	transform: translateY(100%);
	transition: transform 0.4s ease;
}

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

.gallery-item-info h4 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.1rem;
	margin-bottom: 0.25rem;
	color: var(--text-primary);
}

.gallery-item-info span {
	font-size: 0.8rem;
	color: var(--magic-cyan);
}

.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.featured { grid-column: span 2; grid-row: span 2; }

.gallery-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(40px);
	animation: orb-float 15s ease-in-out infinite;
	pointer-events: none;
}

.gallery-orb:nth-child(1) { width: 300px; height: 300px; background: rgba(155, 109, 255, 0.2); top: 10%; left: -10%; }
.gallery-orb:nth-child(2) { width: 200px; height: 200px; background: rgba(0, 212, 255, 0.15); top: 50%; right: -5%; animation-delay: -5s; }
.gallery-orb:nth-child(3) { width: 250px; height: 250px; background: rgba(255, 215, 0, 0.1); bottom: 10%; left: 20%; animation-delay: -10s; }

@keyframes orb-float {
	0%, 100% { transform: translate(0, 0) scale(1); }
	33% { transform: translate(30px, -30px) scale(1.1); }
	66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* ==================== LANDSCAPES ==================== */
.landscapes-section {
	position: relative;
	padding: 8rem 0;
	overflow: hidden;
}

.landscapes-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(74, 222, 128, 0.05) 0%, transparent 30%, transparent 70%, rgba(110, 181, 255, 0.05) 100%);
	pointer-events: none;
}

.landscapes-header {
	text-align: center;
	margin-bottom: 4rem;
	position: relative;
	z-index: 1;
}

.landscapes-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 500;
	margin-bottom: 1rem;
}

.landscapes-title .highlight {
	background: linear-gradient(135deg, var(--magic-green), var(--magic-cyan), var(--magic-blue));
}

.landscapes-subtitle {
	font-size: 1.1rem;
	color: var(--text-secondary);
	max-width: 550px;
	margin: 0 auto;
}

.landscapes-scroll-container {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.landscapes-scroll {
	display: flex;
	gap: 1.5rem;
	padding: 2rem 0;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	cursor: grab;
}

.landscapes-scroll::-webkit-scrollbar { display: none; }
.landscapes-scroll:active { cursor: grabbing; }

.landscape-card {
	flex: 0 0 auto;
	width: 500px;
	height: 320px;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	scroll-snap-align: center;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	border: 2px solid rgba(74, 222, 128, 0.1);
}

.landscape-card:first-child { margin-left: calc((100vw - 1200px) / 2 + 2rem); }
.landscape-card:last-child { margin-right: calc((100vw - 1200px) / 2 + 2rem); }

.landscape-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 40%, rgba(6, 6, 15, 0.95) 100%);
	z-index: 1;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.landscape-card::after {
	content: '';
	position: absolute;
	inset: -3px;
	background: linear-gradient(135deg, var(--magic-green), var(--magic-cyan), var(--magic-purple));
	border-radius: 22px;
	z-index: -1;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.landscape-card:hover {
	transform: scale(1.05);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 60px rgba(74, 222, 128, 0.2);
}

.landscape-card:hover::before,
.landscape-card:hover::after {
	opacity: 1;
}

.landscape-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.landscape-card:hover img {
	transform: scale(1.15);
}

.landscape-info {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1.5rem 2rem;
	z-index: 2;
	transform: translateY(100%);
	transition: transform 0.4s ease;
}

.landscape-card:hover .landscape-info {
	transform: translateY(0);
}

.landscape-info h4 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.3rem;
	margin-bottom: 0.25rem;
	color: var(--text-primary);
}

.landscape-info span {
	font-size: 0.85rem;
	color: var(--magic-green);
}

.scroll-hint {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 2rem;
	color: var(--text-muted);
	font-size: 0.85rem;
	align-items: center;
}

.scroll-hint svg {
	width: 20px;
	height: 20px;
	animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
	0%, 100% { transform: translateX(0); }
	50% { transform: translateX(8px); }
}

/* ==================== YOUTUBE VIDEOS ==================== */
.videos-section {
	position: relative;
	padding: 8rem 0;
	overflow: hidden;
}

.videos-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 50% 0%, rgba(255, 0, 0, 0.05) 0%, transparent 50%);
	pointer-events: none;
}

.youtube-widget {
	display: flex;
	flex-direction: column;
	gap: 3rem;
}

.youtube-main {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 2.5rem;
	align-items: center;
}

.youtube-player-wrapper {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	background: #000;
	aspect-ratio: 16/9;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.youtube-preview {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	text-decoration: none;
}

.preview-bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease, filter 0.3s ease;
}

.youtube-preview:hover .preview-bg {
	transform: scale(1.05);
	filter: brightness(0.7);
}

.preview-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	background: rgba(0, 0, 0, 0.3);
	transition: background 0.3s ease;
}

.youtube-preview:hover .preview-overlay {
	background: rgba(0, 0, 0, 0.5);
}

.big-play-btn {
	transition: transform 0.3s ease;
}

.youtube-preview:hover .big-play-btn {
	transform: scale(1.15);
}

.preview-text {
	color: white;
	font-size: 1.1rem;
	font-weight: 500;
	opacity: 0;
	transform: translateY(10px);
	transition: all 0.3s ease;
}

.youtube-preview:hover .preview-text {
	opacity: 1;
	transform: translateY(0);
}

.preview-particles {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
}

.p-note {
	position: absolute;
	font-size: 1.5rem;
	color: white;
	opacity: 0;
	animation: p-float 3s ease-in-out infinite;
}

.youtube-preview:hover .p-note {
	opacity: 0.7;
}

.p-note:nth-child(1) { left: 20%; animation-delay: 0s; }
.p-note:nth-child(2) { left: 50%; animation-delay: 0.5s; }
.p-note:nth-child(3) { left: 75%; animation-delay: 1s; }

@keyframes p-float {
	0% { bottom: 10%; transform: translateY(0) rotate(0deg); }
	100% { bottom: 90%; transform: translateY(-20px) rotate(15deg); opacity: 0; }
}

.player-glow {
	position: absolute;
	inset: -3px;
	background: linear-gradient(135deg, #ff0000, var(--magic-purple), #ff0000);
	border-radius: 22px;
	z-index: -1;
	opacity: 0.6;
	filter: blur(10px);
	animation: youtube-glow 4s ease-in-out infinite;
}

@keyframes youtube-glow {
	0%, 100% { opacity: 0.4; }
	50% { opacity: 0.7; }
}

.youtube-info {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.youtube-channel-badge {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.channel-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 2px solid #ff0000;
	object-fit: cover;
}

.youtube-channel-badge h4 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.3rem;
	margin-bottom: 0.2rem;
}

.youtube-channel-badge span {
	font-size: 0.85rem;
	color: var(--text-muted);
}

.channel-description {
	color: var(--text-secondary);
	font-size: 1rem;
	line-height: 1.7;
}

.youtube-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.btn-subscribe {
	background: #ff0000;
	color: white;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	border-radius: 100px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.btn-subscribe:hover {
	background: #cc0000;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.video-highlights h3 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	text-align: center;
}

.video-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.video-card {
	background: rgba(10, 10, 24, 0.6);
	border: 1px solid rgba(155, 109, 255, 0.15);
	border-radius: 16px;
	overflow: hidden;
	text-decoration: none;
	transition: all 0.4s ease;
}

.video-card:hover {
	transform: translateY(-8px);
	border-color: #ff0000;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.video-thumb {
	position: relative;
	aspect-ratio: 16/9;
	overflow: hidden;
}

.video-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.video-card:hover .video-thumb img {
	transform: scale(1.1);
}

.play-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	color: white;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.video-card:hover .play-overlay {
	opacity: 1;
}

.video-meta {
	padding: 1rem 1.25rem;
}

.video-meta h4 {
	font-size: 0.95rem;
	font-weight: 500;
	margin-bottom: 0.25rem;
	color: var(--text-primary);
}

.video-meta span {
	font-size: 0.8rem;
	color: var(--text-muted);
}

/* ==================== LIGHTBOX ==================== */
.lightbox {
	position: fixed;
	inset: 0;
	background: rgba(6, 6, 15, 0.98);
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease;
	backdrop-filter: blur(20px);
}

.lightbox.active {
	opacity: 1;
	visibility: visible;
}

.lightbox-content {
	position: relative;
	max-width: 90vw;
	max-height: 90vh;
	transform: scale(0.9);
	transition: transform 0.4s ease;
}

.lightbox.active .lightbox-content {
	transform: scale(1);
}

.lightbox-content img {
	max-width: 100%;
	max-height: 85vh;
	border-radius: 16px;
	box-shadow: 0 0 60px rgba(155, 109, 255, 0.3);
}

.lightbox-close {
	position: absolute;
	top: -50px;
	right: 0;
	width: 40px;
	height: 40px;
	background: rgba(155, 109, 255, 0.2);
	border: 1px solid var(--magic-purple);
	border-radius: 50%;
	color: white;
	font-size: 1.5rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.lightbox-close:hover {
	background: var(--magic-purple);
	transform: rotate(90deg);
}

.lightbox-info {
	text-align: center;
	margin-top: 1.5rem;
}

.lightbox-info h3 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

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

/* ==================== MUSIC ==================== */
.music-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.music-card {
	background: rgba(10, 10, 24, 0.6);
	border: 1px solid rgba(155, 109, 255, 0.15);
	border-radius: 20px;
	padding: 2rem;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.music-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--magic-purple), var(--magic-gold), var(--magic-pink));
	background-size: 200% 100%;
	opacity: 0;
	transition: opacity 0.3s ease;
	animation: gradient-slide 3s linear infinite;
}

.music-card:hover {
	border-color: var(--magic-purple);
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.music-card:hover::before {
	opacity: 1;
}

.music-tag {
	display: inline-block;
	padding: 0.4rem 0.9rem;
	background: linear-gradient(135deg, rgba(155, 109, 255, 0.2), rgba(110, 181, 255, 0.1));
	color: var(--magic-purple);
	font-size: 0.75rem;
	font-weight: 500;
	border-radius: 100px;
	margin-bottom: 1.25rem;
	border: 1px solid rgba(155, 109, 255, 0.2);
}

.music-card h3 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.35rem;
	font-weight: 500;
	margin-bottom: 0.75rem;
}

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

/* ==================== COMMUNITY ==================== */
.community-content {
	text-align: center;
}

.crew-badge {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 2rem;
	background: linear-gradient(135deg, rgba(155, 109, 255, 0.15), rgba(255, 215, 0, 0.1));
	border: 1px solid var(--magic-purple);
	border-radius: 100px;
	margin-bottom: 2rem;
	animation: crew-glow 3s ease-in-out infinite;
}

@keyframes crew-glow {
	0%, 100% { box-shadow: 0 0 20px rgba(155, 109, 255, 0.2); }
	50% { box-shadow: 0 0 40px rgba(155, 109, 255, 0.4); }
}

.crew-badge span {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.2rem;
	background: linear-gradient(135deg, var(--magic-purple), var(--magic-gold));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.collaborators {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
	margin-top: 3rem;
}

.collaborator {
	padding: 0.7rem 1.5rem;
	background: rgba(155, 109, 255, 0.08);
	border: 1px solid rgba(155, 109, 255, 0.2);
	border-radius: 100px;
	font-size: 0.9rem;
	color: var(--text-secondary);
	transition: all 0.3s ease;
}

.collaborator:hover {
	border-color: var(--magic-purple);
	color: var(--text-primary);
	box-shadow: 0 0 20px rgba(155, 109, 255, 0.2);
}

/* ==================== CONTACT ==================== */
.contact-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 3rem;
}

.contact-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.25rem;
	padding: 2.5rem 2rem;
	background: rgba(10, 10, 24, 0.6);
	border: 1px solid rgba(155, 109, 255, 0.15);
	border-radius: 20px;
	text-decoration: none;
	transition: all 0.4s ease;
}

.contact-card:hover {
	border-color: var(--magic-purple);
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.contact-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, rgba(155, 109, 255, 0.2), rgba(110, 181, 255, 0.1));
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
	background: linear-gradient(135deg, var(--magic-purple), var(--accent));
	box-shadow: 0 0 30px rgba(155, 109, 255, 0.4);
}

.contact-icon svg {
	width: 28px;
	height: 28px;
	fill: var(--magic-purple);
	transition: fill 0.3s ease;
}

.contact-card:hover .contact-icon svg {
	fill: white;
}

.contact-card h4 {
	font-size: 1.1rem;
	font-weight: 500;
}

.contact-card span {
	font-size: 0.85rem;
	color: var(--text-muted);
}

.contact-email {
	margin-top: 3rem;
	text-align: center;
}

.contact-email a {
	color: var(--magic-purple);
	text-decoration: none;
	font-size: 1.15rem;
	transition: all 0.3s ease;
}

.contact-email a:hover {
	text-shadow: 0 0 20px var(--magic-purple);
}

/* ==================== FOOTER ==================== */
footer {
	text-align: center;
	padding: 4rem 2rem;
	border-top: 1px solid rgba(155, 109, 255, 0.1);
	position: relative;
	z-index: 10;
}

footer p {
	color: var(--text-muted);
	font-size: 0.9rem;
}

.footer-symbol {
	display: inline-block;
	margin: 0 0.5rem;
	background: linear-gradient(135deg, var(--magic-purple), var(--magic-gold));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
	.hero-grid {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 3rem;
	}
	
	.hero-description {
		margin: 0 auto 2.5rem;
	}
	
	.hero-buttons {
		justify-content: center;
	}
	
	.hero-image-wrapper {
		width: 320px;
		height: 320px;
	}
	
	.hero-stats {
		display: none;
	}
	
	.about-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	
	.music-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.gallery-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	
	.gallery-item.featured {
		grid-column: span 2;
	}
	
	.landscape-card {
		width: 400px;
		height: 260px;
	}
	
	.landscape-card:first-child {
		margin-left: 2rem;
	}
	
	.landscape-card:last-child {
		margin-right: 2rem;
	}
	
	.youtube-main {
		grid-template-columns: 1fr;
	}
	
	.video-cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	body {
		cursor: auto;
	}
	
	.cursor, .cursor-dot {
		display: none;
	}
	
	nav {
		padding: 1rem 1.5rem;
	}
	
	.nav-links {
		display: none;
	}
	
	.mobile-menu-btn {
		display: flex;
	}
	
	.hero {
		padding: 6rem 0 4rem;
	}
	
	.music-grid, .contact-grid {
		grid-template-columns: 1fr;
	}
	
	.tools-grid {
		grid-template-columns: 1fr;
	}
	
	.floating-runes {
		display: none;
	}
	
	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.gallery-item.tall, .gallery-item.wide, .gallery-item.featured {
		grid-column: span 1;
		grid-row: span 1;
	}
	
	.landscape-card {
		width: 320px;
		height: 220px;
	}
	
	.landscape-card:first-child {
		margin-left: 1rem;
	}
	
	.landscape-card:last-child {
		margin-right: 1rem;
	}
	
	.audio-player {
		padding: 1.5rem;
	}
	
	.audio-header {
		flex-direction: column;
		text-align: center;
	}
	
	.audio-avatar {
		width: 100px;
		height: 100px;
	}
	
	.volume-control {
		display: none;
	}
	
	.video-cards {
		grid-template-columns: 1fr 1fr;
		gap: 1rem;
	}
	
	.youtube-buttons {
		justify-content: center;
	}
	
	.youtube-channel-badge {
		justify-content: center;
	}
	
	.youtube-info {
		text-align: center;
	}
}