/* ===================================================
   8ugustus / Capsule Corp Studio
   Liquid Glass UI - Custom Stylesheet
   =================================================== */

/* --- Reset & Base --- */
*, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Inter', 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.7;
	overflow-x: hidden;
	background: #050510;
	min-height: 100vh;
}

/* --- Liquid Mesh Gradient Background --- */
body::before {
	content: '';
	position: fixed;
	top: 0; left: 0;
	width: 100%; height: 100%;
	z-index: -2;
	background:
		radial-gradient(ellipse at 20% 20%, rgba(15, 25, 80, 0.8) 0%, transparent 50%),
		radial-gradient(ellipse at 80% 10%, rgba(20, 10, 60, 0.7) 0%, transparent 45%),
		radial-gradient(ellipse at 50% 60%, rgba(10, 15, 50, 0.6) 0%, transparent 55%),
		radial-gradient(ellipse at 90% 80%, rgba(25, 15, 70, 0.5) 0%, transparent 50%),
		radial-gradient(ellipse at 10% 90%, rgba(5, 20, 60, 0.6) 0%, transparent 45%);
	background-color: #050510;
}

body::after {
	content: '';
	position: fixed;
	top: 0; left: 0;
	width: 100%; height: 100%;
	z-index: -1;
	background:
		radial-gradient(circle at 30% 40%, rgba(80, 120, 255, 0.04) 0%, transparent 40%),
		radial-gradient(circle at 70% 60%, rgba(120, 80, 255, 0.03) 0%, transparent 35%);
	animation: meshFloat 20s ease-in-out infinite alternate;
}

@keyframes meshFloat {
	0%   { transform: translate(0, 0) scale(1); }
	50%  { transform: translate(-10px, 15px) scale(1.02); }
	100% { transform: translate(10px, -10px) scale(1); }
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
	font-family: 'Space Grotesk', 'Inter', sans-serif;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: #fff;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p { margin-bottom: 1rem; }

a {
	color: rgba(160, 180, 255, 0.9);
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover { color: #fff; }

.mono-text, .mono-tag {
	font-family: 'JetBrains Mono', 'Courier New', monospace;
	font-weight: 400;
	font-size: 0.85rem;
	letter-spacing: 0.05em;
}

.mono-tag {
	color: rgba(160, 180, 255, 0.6);
	text-transform: uppercase;
	font-size: 0.75rem;
	letter-spacing: 0.15em;
	display: block;
	margin-bottom: 0.75rem;
}

.highlight {
	background: linear-gradient(135deg, rgba(120, 160, 255, 0.8), rgba(180, 120, 255, 0.8));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

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

.section {
	padding: 6rem 0;
}

.section-header {
	text-align: center;
	margin-bottom: 3.5rem;
}

.section-header p {
	max-width: 600px;
	margin: 1rem auto 0;
	color: rgba(255, 255, 255, 0.6);
}

.section-cta {
	text-align: center;
	margin-top: 3rem;
}

/* --- Glassmorphism Card --- */
.glass-card {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.06),
		0 4px 24px rgba(0, 0, 0, 0.2);
	transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
				box-shadow 0.4s ease,
				background 0.4s ease,
				border-color 0.4s ease;
}

.glass-card:hover {
	transform: translateY(-6px) scale(1.02);
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.15);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.1),
		0 12px 40px rgba(0, 0, 0, 0.3),
		0 0 30px rgba(100, 130, 255, 0.05);
}

/* --- Buttons --- */
.btn {
	display: inline-block;
	padding: 0.9rem 2.2rem;
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 600;
	font-size: 0.9rem;
	letter-spacing: 0.05em;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	border: none;
}

.btn-primary {
	background: linear-gradient(135deg, rgba(100, 140, 255, 0.9), rgba(140, 100, 255, 0.9));
	color: #fff;
	box-shadow: 0 4px 15px rgba(100, 130, 255, 0.3);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(100, 130, 255, 0.4);
	color: #fff;
}

.btn-glass {
	background: rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.9);
}

.btn-glass:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
	color: #fff;
}

/* ===================================================
   TOP NAVIGATION
   =================================================== */
#topnav {
	position: fixed;
	top: 0; left: 0;
	width: 100%;
	z-index: 1000;
	padding: 1rem 0;
	background: rgba(5, 5, 16, 0.6);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.04);
	transition: background 0.3s ease, padding 0.3s ease;
}

#topnav.scrolled {
	padding: 0.6rem 0;
	background: rgba(5, 5, 16, 0.85);
}

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

.nav-logo {
	display: flex;
	align-items: center;
}

.nav-logo:hover { opacity: 0.85; }

.nav-logo-img {
	height: 54px;
	width: auto;
	display: block;
	filter: brightness(1.1);
	object-fit: cover;
	object-position: center;
	clip-path: inset(28% 5% 28% 2%);
	margin: -15px 0;
}

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

.nav-links a {
	display: block;
	padding: 0.5rem 1.2rem;
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.8rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	color: rgba(255, 255, 255, 0.6);
	border-radius: 8px;
	transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
}

.nav-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	flex-direction: column;
	gap: 5px;
}

.nav-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 2px;
	transition: all 0.3s ease;
}

/* Mobile menu */
.mobile-menu {
	display: none;
	position: fixed;
	top: 0; left: 0;
	width: 100%; height: 100%;
	z-index: 999;
	background: rgba(5, 5, 16, 0.95);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	justify-content: center;
	align-items: center;
}

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

.mobile-menu ul {
	list-style: none;
	text-align: center;
}

.mobile-menu a {
	display: block;
	padding: 1rem 2rem;
	font-family: 'Space Grotesk', sans-serif;
	font-size: 1.8rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.6);
	transition: color 0.3s ease;
}

.mobile-menu a:hover,
.mobile-menu a.active {
	color: #fff;
}

/* ===================================================
   HERO
   =================================================== */
#hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 8rem 2rem 4rem;
	position: relative;
}

.hero-content {
	max-width: 750px;
}

.hero-tag {
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.8rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(160, 180, 255, 0.6);
	margin-bottom: 1.5rem;
}

#hero h1 {
	margin-bottom: 1.5rem;
}

.hero-sub {
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 1rem;
}

.hero-desc {
	font-size: 1.15rem;
	color: rgba(255, 255, 255, 0.65);
	margin-bottom: 2.5rem;
	max-width: 550px;
	margin-left: auto;
	margin-right: auto;
}

.hero-actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* ===================================================
   SPOTIFY CARD
   =================================================== */
.spotify-card {
	padding: 1.5rem;
	max-width: 800px;
	margin: 0 auto;
	overflow: hidden;
}

.spotify-card iframe {
	display: block;
	border-radius: 12px;
}

.spotify-card:hover {
	transform: translateY(-4px) scale(1.005);
}

/* ===================================================
   YOUTUBE PLAYLIST (Spotify-style list)
   =================================================== */
.yt-playlist-container {
	backdrop-filter: blur(25px);
	-webkit-backdrop-filter: blur(25px);
	background: rgba(255, 255, 255, 0.03);
	border-radius: 20px;
	padding: 20px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	max-width: 900px;
	margin: 0 auto;
	overflow: hidden;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.08),
		0 4px 24px rgba(0, 0, 0, 0.2),
		0 0 40px rgba(100, 140, 255, 0.06),
		0 0 80px rgba(120, 100, 255, 0.03);
}

/* Now Playing video */
.yt-now-playing {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	height: 0;
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 0;
}

.yt-now-playing iframe {
	position: absolute;
	top: 0; left: 0;
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: 12px;
}

/* Track list */
.yt-tracklist {
	max-height: 420px;
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: rgba(255,255,255,0.15) transparent;
}

.yt-tracklist::-webkit-scrollbar {
	width: 6px;
}

.yt-tracklist::-webkit-scrollbar-track {
	background: transparent;
}

.yt-tracklist::-webkit-scrollbar-thumb {
	background: rgba(255,255,255,0.15);
	border-radius: 3px;
}

.yt-tracklist-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 12px 8px;
}

.yt-track-count {
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.7rem;
	color: rgba(255,255,255,0.35);
	letter-spacing: 0.05em;
}

.yt-tracks {
	list-style: none;
	padding: 0;
	margin: 0;
}

.yt-track {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px 12px;
	border-radius: 8px;
	cursor: pointer;
	transition: background 0.2s ease;
	position: relative;
}

.yt-track:hover {
	background: rgba(255, 255, 255, 0.06);
}

.yt-track.active {
	background: rgba(100, 140, 255, 0.1);
}

.yt-track-num {
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.75rem;
	color: rgba(255,255,255,0.3);
	min-width: 20px;
	text-align: right;
}

.yt-track.active .yt-track-num {
	color: rgba(120, 160, 255, 0.8);
}

.yt-track-thumb {
	width: 48px;
	height: 28px;
	object-fit: cover;
	border-radius: 4px;
	flex-shrink: 0;
}

.yt-track-info {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.yt-track-title {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 0.85rem;
	font-weight: 500;
	color: rgba(255,255,255,0.85);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.yt-track.active .yt-track-title {
	color: rgba(140, 180, 255, 1);
}

.yt-track-artist {
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.7rem;
	color: rgba(255,255,255,0.4);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.yt-track-playing {
	color: rgba(120, 160, 255, 0.8);
	font-size: 0.75rem;
	opacity: 0;
	transition: opacity 0.2s ease;
	flex-shrink: 0;
}

.yt-track.active .yt-track-playing {
	opacity: 1;
}

/* ===================================================
   YOUTUBE VIDEO GRID (legacy)
   =================================================== */
.youtube-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.youtube-card {
	padding: 0;
	overflow: hidden;
}

.youtube-card .video-wrap {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}

.youtube-card .video-wrap iframe {
	position: absolute;
	top: 0; left: 0;
	width: 100%;
	height: 100%;
	border: none;
	border-radius: 16px 16px 0 0;
}

.youtube-card .video-title {
	padding: 1rem 1.2rem;
	font-family: 'Space Grotesk', sans-serif;
	font-size: 0.9rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.4;
	margin: 0;
}

@media (max-width: 980px) {
	.youtube-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 736px) {
	.youtube-grid {
		grid-template-columns: 1fr;
	}
}

/* ===================================================
   PROJECTS PLAYLIST (Liquid Glass + Responsive 16:9)
   =================================================== */
.projects-playlist-card {
	padding: 1.5rem;
	max-width: 960px;
	margin: 0 auto;
	overflow: hidden;
}

.projects-playlist-card:hover {
	transform: translateY(-4px) scale(1.005);
}

.responsive-iframe-wrapper {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%; /* 16:9 aspect ratio */
	height: 0;
	overflow: hidden;
	border-radius: 12px;
}

.responsive-iframe-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: 12px;
}

/* ===================================================
   SERVICES GRID
   =================================================== */
.services-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.service-card {
	padding: 2.5rem 2rem;
	text-align: center;
}

.service-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: rgba(100, 140, 255, 0.1);
	border: 1px solid rgba(100, 140, 255, 0.15);
	font-size: 1.3rem;
	color: rgba(160, 180, 255, 0.9);
}

.service-card h3 {
	margin-bottom: 0.3rem;
}

.service-card .mono-text {
	color: rgba(160, 180, 255, 0.5);
	margin-bottom: 1rem;
}

.service-card p:last-child {
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.95rem;
}

/* ===================================================
   PAGE HEADER (inner pages)
   =================================================== */
.page-header {
	padding: 10rem 2rem 4rem;
	text-align: center;
}

.page-header .mono-tag {
	margin-bottom: 1rem;
}

.page-header p {
	max-width: 600px;
	margin: 1rem auto 0;
	color: rgba(255, 255, 255, 0.6);
}

/* ===================================================
   STUDIO PAGE
   =================================================== */
.studio-section {
	padding: 4rem 0;
}

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

.studio-feature {
	padding: 2.5rem 2rem;
}

.studio-feature h3 {
	margin-bottom: 0.5rem;
}

.studio-feature .mono-text {
	color: rgba(160, 180, 255, 0.5);
	margin-bottom: 1rem;
}

.studio-feature p:last-child {
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.95rem;
}

.studio-highlight {
	padding: 3rem;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.studio-highlight h3 {
	margin-bottom: 1rem;
	font-size: 1.8rem;
}

.studio-highlight p {
	color: rgba(255, 255, 255, 0.6);
	font-size: 1.05rem;
}

/* ===================================================
   ABOUT PAGE
   =================================================== */
.about-content {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 2rem;
}

.about-intro {
	padding: 3rem;
	margin-bottom: 3rem;
}

.about-intro h3 {
	margin-bottom: 1rem;
	font-size: 1.6rem;
}

.about-intro p {
	color: rgba(255, 255, 255, 0.65);
	font-size: 1.05rem;
	line-height: 1.8;
}

.about-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-bottom: 3rem;
}

.stat-card {
	padding: 2rem;
	text-align: center;
}

.stat-card .stat-num {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 2.5rem;
	font-weight: 700;
	color: #fff;
	display: block;
	margin-bottom: 0.3rem;
	background: linear-gradient(135deg, rgba(120, 160, 255, 0.9), rgba(180, 120, 255, 0.9));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.stat-card .stat-label {
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.5);
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

/* ===================================================
   BOOKING / FORM PAGE
   =================================================== */
.booking-section {
	padding: 4rem 0 6rem;
}

.form-card {
	max-width: 700px;
	margin: 0 auto;
	padding: 3rem;
}

.form-card:hover {
	transform: none;
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.8rem;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 0.5rem;
	text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 0.9rem 1.2rem;
	font-family: 'Inter', sans-serif;
	font-size: 0.95rem;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.9);
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	outline: none;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: rgba(120, 160, 255, 0.5);
	background: rgba(255, 255, 255, 0.07);
	box-shadow: 0 0 20px rgba(100, 130, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: rgba(255, 255, 255, 0.25);
}

.form-group select {
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1.2rem center;
	padding-right: 3rem;
}

.form-group select option {
	background: #111;
	color: #fff;
}

.form-group textarea {
	resize: vertical;
	min-height: 130px;
}

.form-submit {
	margin-top: 2rem;
	text-align: center;
}

.form-submit .btn {
	width: 100%;
	padding: 1rem;
	font-size: 1rem;
}

/* Success message */
.form-success {
	text-align: center;
	padding: 3rem;
}

.form-success h3 {
	margin-bottom: 1rem;
	color: rgba(120, 255, 180, 0.9);
}

/* ===================================================
   FOOTER
   =================================================== */
#footer {
	padding: 4rem 0 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 2rem;
	align-items: start;
	margin-bottom: 3rem;
}

.footer-brand h3 {
	font-size: 1.3rem;
	margin-bottom: 0.3rem;
}

.footer-brand .mono-text {
	color: rgba(160, 180, 255, 0.5);
	margin-bottom: 0.5rem;
}

.footer-brand p:last-child {
	color: rgba(255, 255, 255, 0.4);
	font-size: 0.9rem;
}

.footer-links {
	text-align: center;
}

.footer-links ul {
	list-style: none;
}

.footer-links a {
	display: inline-block;
	padding: 0.3rem 0;
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.5);
	letter-spacing: 0.05em;
}

.footer-links a:hover { color: #fff; }

.footer-social {
	text-align: right;
	display: flex;
	justify-content: flex-end;
	gap: 0.8rem;
}

.social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.6);
	font-size: 1rem;
	transition: all 0.3s ease;
}

.social-icon:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	transform: translateY(-2px);
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-bottom p {
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.7rem;
	color: rgba(255, 255, 255, 0.3);
	letter-spacing: 0.05em;
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 980px) {
	.services-grid {
		grid-template-columns: 1fr;
	}
	.studio-grid {
		grid-template-columns: 1fr;
	}
	.about-stats {
		grid-template-columns: 1fr;
	}
	.footer-inner {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.footer-social {
		justify-content: center;
	}
	.footer-links {
		text-align: center;
	}
}

@media (max-width: 736px) {
	.nav-links { display: none; }
	.nav-toggle { display: flex; }

	#hero { padding: 7rem 1.5rem 3rem; }
	#hero h1 { font-size: 2.2rem; }
	.hero-desc { font-size: 1rem; }

	.section { padding: 4rem 0; }
	.container { padding: 0 1.2rem; }

	.form-card { padding: 2rem 1.5rem; }
	.spotify-card { padding: 1rem; }
		.yt-playlist-container { padding: 12px; }
	.yt-tracklist { max-height: 300px; }
	.yt-track-thumb { width: 40px; height: 24px; }

	.page-header { padding: 8rem 1.5rem 3rem; }

	.service-card { padding: 2rem 1.5rem; }

	.about-intro { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
	html { font-size: 14px; }
	.hero-actions {
		flex-direction: column;
		align-items: center;
	}
	.hero-actions .btn { width: 100%; text-align: center; }
	.yt-playlist-container { padding: 8px; border-radius: 14px; }
	.yt-tracklist { max-height: 250px; }
	.yt-track { padding: 6px 8px; gap: 8px; }
	.yt-track-thumb { width: 36px; height: 22px; }
}
