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

:root {
	--primary: #ff6b35;
	--dark: #0a0a0a;
	--light: #f4f4f4;
	--accent: #ffa600;
	--text: #e0e0e0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	background: var(--dark);
	color: var(--text);
	overflow-x: hidden;
	line-height: 1.6;
}

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

#navbar {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	background: rgba(10, 10, 10, 0.8);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#navbar.scrolled {
	background: rgba(10, 10, 10, 0.95);
	box-shadow: 0 2px 20px rgba(255, 107, 53, 0.1);
}

.nav-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 20px 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

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

.nav-links {
	display: flex;
	list-style: none;
	gap: 40px;
}

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

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary);
	transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.hero {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.hero::before {
	content: '';
	position: absolute;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle at center,
	rgba(255, 107, 53, 0.15) 0%,
	transparent 50%);
	animation: rotate 20s linear infinite;
}

.hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background:
			repeating-linear-gradient(
					0deg,
					transparent,
					transparent 2px,
					rgba(255, 107, 53, 0.03) 2px,
					rgba(255, 107, 53, 0.03) 4px
			);
	animation: scan 8s linear infinite;
	pointer-events: none;
}

@keyframes scan {
	0% {
		transform: translateY(-100%);
	}
	100% {
		transform: translateY(100%);
	}
}

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

.hero-content {
	text-align: center;
	position: relative;
	z-index: 2;
}

.hero-title {
	font-size: clamp(4rem, 12vw, 10rem);
	font-weight: 900;
	letter-spacing: -0.02em;
	margin-bottom: 20px;
	display: flex;
	gap: 20px;
	justify-content: center;
}

.hero-title .word {
	display: inline-block;
	opacity: 0;
	transform: translateY(100px);
	animation: wordReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title .word:nth-child(1) {
	animation-delay: 0.2s;
}

.hero-title .word:nth-child(2) {
	animation-delay: 0.4s;
	background: linear-gradient(135deg, var(--primary), var(--accent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
}

.hero-title .word:nth-child(2)::after {
	content: '';
	position: absolute;
	inset: -20px;
	background: radial-gradient(circle, rgba(255, 107, 53, 0.3) 0%, transparent 70%);
	filter: blur(30px);
	z-index: -1;
	animation: pulse 3s ease-in-out infinite;
}

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

@keyframes wordReveal {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}



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

.scroll-indicator {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
	animation: fadeIn 1s ease 1.5s forwards;
}

@keyframes fadeIn {
	to {
		opacity: 1;
	}
}

.mouse {
	width: 30px;
	height: 50px;
	border: 2px solid var(--primary);
	border-radius: 20px;
	position: relative;
}

.mouse::before {
	content: '';
	position: absolute;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	width: 4px;
	height: 10px;
	background: var(--primary);
	border-radius: 2px;
	animation: scroll 2s infinite;
}

@keyframes scroll {
	0%, 100% {
		opacity: 0;
		transform: translateX(-50%) translateY(0);
	}
	50% {
		opacity: 1;
		transform: translateX(-50%) translateY(15px);
	}
}

section {
	padding: 120px 0;
	position: relative;
}

.section-title {
	font-size: clamp(2.5rem, 6vw, 4rem);
	font-weight: 800;
	margin-bottom: 60px;
	letter-spacing: -0.02em;
}

.section-title.center {
	text-align: center;
}

.about {
	background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
	position: relative;
	overflow: hidden;
}

.about::before {
	content: '';
	position: absolute;
	top: 50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
	animation: float 15s ease-in-out infinite;
}

@keyframes float {
	0%, 100% {
		transform: translate(0, 0) rotate(0deg);
	}
	33% {
		transform: translate(30px, -30px) rotate(120deg);
	}
	66% {
		transform: translate(-20px, 20px) rotate(240deg);
	}
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.about-text {
	opacity: 0;
	transform: translateX(-50px);
	transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-text.visible {
	opacity: 1;
	transform: translateX(0);
}

.about-description {
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 30px;
	color: rgba(224, 224, 224, 0.8);
}

.about-image {
	opacity: 0;
	transform: translateX(50px);
	transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image.visible {
	opacity: 1;
	transform: translateX(0);
}

.image-wrapper {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	transform-style: preserve-3d;
	perspective: 1000px;
}

.image-wrapper img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-wrapper:hover img {
	transform: scale(1.05) rotateY(5deg);
}

.image-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 166, 0, 0.2));
	opacity: 0;
	transition: opacity 0.6s ease;
	mix-blend-mode: overlay;
}

.image-wrapper:hover .image-overlay {
	opacity: 1;
}

.image-wrapper::before {
	content: '';
	position: absolute;
	inset: -2px;
	background: linear-gradient(45deg,
	var(--primary),
	var(--accent),
	var(--primary));
	background-size: 300% 300%;
	border-radius: 20px;
	z-index: -1;
	opacity: 0;
	transition: opacity 0.6s ease;
	animation: gradientShift 3s ease infinite;
}

.image-wrapper:hover::before {
	opacity: 1;
}

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

.members {
	background: #0a0a0a;
	position: relative;
}

.members::after {
	content: 'BOXHORN';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 20vw;
	font-weight: 900;
	color: rgba(255, 107, 53, 0.02);
	pointer-events: none;
	z-index: 0;
	letter-spacing: -0.05em;
}

.members .container {
	position: relative;
	z-index: 1;
}

.members-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-top: 60px;
}

.member-card {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	cursor: pointer;
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
	background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(10, 10, 10, 0.9));
	border: 1px solid rgba(255, 107, 53, 0.1);
}

.member-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg,
	rgba(255, 107, 53, 0.1) 0%,
	rgba(255, 166, 0, 0.1) 100%);
	opacity: 0;
	transition: opacity 0.6s ease;
	z-index: 1;
}

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

.member-card::after {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(
			45deg,
			transparent 30%,
			rgba(255, 107, 53, 0.1) 50%,
			transparent 70%
	);
	transform: rotate(45deg);
	transition: all 0.6s ease;
}

.member-card:hover::after {
	animation: shine 1.5s ease infinite;
}

@keyframes shine {
	0% {
		top: -50%;
		left: -50%;
	}
	100% {
		top: 150%;
		left: 150%;
	}
}

.member-card.visible {
	opacity: 1;
	transform: translateY(0);
}

.member-card:nth-child(1) { transition-delay: 0.1s; }
.member-card:nth-child(2) { transition-delay: 0.2s; }
.member-card:nth-child(3) { transition-delay: 0.3s; }

.member-image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1;
}

.member-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
	filter: grayscale(100%);
}

.member-card:hover .member-image img {
	transform: scale(1.1);
	filter: grayscale(0%);
}

.member-info {
	padding: 25px;
	background: rgba(26, 26, 26, 0.95);
	backdrop-filter: blur(10px);
	position: absolute;
	bottom: 0;
	width: 100%;
	transform: translateY(100%);
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.member-info h3 {
	font-size: 1.3rem;
	margin-bottom: 5px;
}

.member-info p {
	color: var(--primary);
	font-size: 0.9rem;
}

.music {
	background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
}

.music-content {
	max-width: 800px;
	margin: 0 auto;
}

.spotify-embed {
	margin-bottom: 40px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	opacity: 0;
	transform: scale(0.9);
	transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.spotify-embed.visible {
	opacity: 1;
	transform: scale(1);
}

.music-platforms {
	display: flex;
	gap: 20px;
	justify-content: center;
}

.platform-btn {
	padding: 18px 40px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	position: relative;
	overflow: hidden;
}

.platform-btn::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1));
	transform: translateX(-100%);
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.platform-btn:hover::before {
	transform: translateX(100%);
}

.platform-btn span {
	position: relative;
	z-index: 1;
}

.spotify {
	background: #1DB954;
	color: white;
	box-shadow: 0 10px 30px rgba(29, 185, 84, 0.3);
}

.spotify:hover {
	box-shadow: 0 15px 40px rgba(29, 185, 84, 0.4);
	transform: translateY(-3px);
}

.soundcloud {
	background: #ff5500;
	color: white;
	box-shadow: 0 10px 30px rgba(255, 85, 0, 0.3);
}

.soundcloud:hover {
	box-shadow: 0 15px 40px rgba(255, 85, 0, 0.4);
	transform: translateY(-3px);
}

.applemusic {
	background: rgba(246, 21, 21, 0.8);
	color: white;
	box-shadow: 0 10px 30px rgba(119, 13, 13, 0.8);
}

.applemusic:hover {
	box-shadow: 0 15px 40px rgba(117, 13, 13, 0.8);
	transform: translateY(-3px);
}

.concerts {
	background: #0a0a0a;
}

.concerts-list {
	max-width: 900px;
	margin: 0 auto;
}

.concert-item {
	display: flex;
	align-items: center;
	gap: 40px;
	padding: 40px;
	margin-bottom: 30px;
	background: rgba(26, 26, 26, 0.5);
	border-radius: 20px;
	border: 1px solid rgba(255, 107, 53, 0.1);
	backdrop-filter: blur(10px);
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	opacity: 0;
	transform: translateX(-50px);
}

.concert-item.visible {
	opacity: 1;
	transform: translateX(0);
}

.concert-item:hover {
	background: rgba(26, 26, 26, 0.8);
	border-color: rgba(255, 107, 53, 0.3);
	transform: translateX(10px);
}

.concert-date {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--primary), var(--accent));
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.concert-date .day {
	font-size: 2rem;
	font-weight: 800;
	line-height: 1;
}

.concert-date .month {
	font-size: 0.9rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.concert-info {
	flex: 1;
}

.concert-venue {
	font-size: 1.5rem;
	margin-bottom: 5px;
}

.concert-location {
	color: rgba(224, 224, 224, 0.6);
}

.concert-btn {
	padding: 12px 30px;
	background: transparent;
	border: 2px solid var(--primary);
	color: var(--primary);
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.concert-btn:hover {
	background: var(--primary);
	color: white;
	transform: scale(1.05);
}

.contact {
	background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

.contact-content {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
}

.contact-text {
	font-size: 1.2rem;
	margin-bottom: 40px;
	color: rgba(224, 224, 224, 0.8);
	line-height: 1.8;
}

.contact-email {
	display: inline-block;
	font-size: 2rem;
	font-weight: 700;
	color: var(--primary);
	text-decoration: none;
	margin-bottom: 40px;
	position: relative;
	transition: all 0.3s ease;
}

.contact-email::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, var(--primary), var(--accent));
	transform: scaleX(0);
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-email:hover::after {
	transform: scaleX(1);
}

.social-links {
	display: flex;
	gap: 80px;
	justify-content: center;
	margin-top: 40px;
}

.social-link {
	color: var(--text);
	text-decoration: none;
	font-size: 1rem;
	font-weight: 500;
	padding: 15px 30px;
	border: 1px solid rgba(255, 107, 53, 0.3);
	border-radius: 50px;
	transition: all 0.3s ease;
}

.social-link:hover {
	background: var(--primary);
	border-color: var(--primary);
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.footer {
	padding: 40px 0;
	text-align: center;
	background: #0a0a0a;
	border-top: 1px solid rgba(255, 107, 53, 0.1);
}

.footer p {
	color: rgba(224, 224, 224, 0.5);
}

@media (max-width: 968px) {
	.nav-links {
		gap: 20px;
	}

	.about-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.concert-item {
		flex-direction: column;
		text-align: center;
	}

	.music-platforms {
		flex-direction: column;
	}

	.social-links {
		flex-direction: column;
		align-items: center;
	}
}

@media (max-width: 668px) {
	.nav-container {
		padding: 15px 20px;
	}

	.nav-links {
		display: none;
	}

	.hero-title {
		flex-direction: column;
		gap: 10px;
	}

	.container {
		padding: 0 20px;
	}

	section {
		padding: 80px 0;
	}
}
.hero-subtitle {
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-size: clamp(1.2rem, 3vw, 2rem);
	font-weight: 300;
	letter-spacing: 8px;
	text-transform: uppercase;
	opacity: 0;
	animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

.subtitle-line {
	display: block;
	opacity: 0;
	transform: translateY(20px);
	animation: subtitleReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.subtitle-line:nth-child(1) { animation-delay: 1.0s; }
.subtitle-line:nth-child(2) { animation-delay: 1.2s; }
.subtitle-line:nth-child(3) { animation-delay: 1.4s; }
.subtitle-line:nth-child(4) { animation-delay: 1.6s; }

@keyframes subtitleReveal {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 10000;
}

.modal.active {
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.95);
	backdrop-filter: blur(10px);
}

.modal-content {
	position: relative;
	background: #1a1a1a;
	max-width: 900px;
	width: 90%;
	max-height: 90vh;
	border-radius: 20px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	overflow: hidden;
	animation: modalIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalIn {
	from {
		transform: scale(0.8);
		opacity: 0;
	}
	to {
		transform: scale(1);
		opacity: 1;
	}
}

.modal-close {
	position: absolute;
	top: 20px;
	right: 20px;
	background: rgba(255, 255, 255, 0.1);
	border: none;
	color: white;
	font-size: 30px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	z-index: 10;
	transition: all 0.3s ease;
}

.modal-close:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: rotate(90deg);
}

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

.modal-info {
	padding: 60px 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.modal-info h3 {
	font-size: 2rem;
	margin-bottom: 20px;
	color: white;
}

.modal-date,
.modal-location {
	font-size: 1rem;
	color: #999;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.modal-description {
	margin-top: 30px;
	line-height: 1.8;
	color: #ccc;
}

@media (max-width: 768px) {
	.modal-content {
		grid-template-columns: 1fr;
	}

	.modal-image {
		max-height: 900px;
	}

	.modal-info {
		padding: 30px 25px;
	}
}
.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	padding: 8px;
	z-index: 1001;
	position: relative;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.hamburger:hover {
	background: rgba(255, 107, 53, 0.1);
}

.hamburger span {
	width: 26px;
	height: 3px;
	background: var(--text);
	margin: 3px 0;
	transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	border-radius: 3px;
	transform-origin: center;
}

.hamburger.active span:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
	background: var(--primary);
	box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

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

.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
	background: var(--primary);
	box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

@media (max-width: 968px) {
	.hamburger {
		display: flex !important;
	}

	.nav-links {
		display: flex;
		position: fixed;
		top: 0;
		right: -100%;
		width: min(320px, 85vw);
		height: 100vh;
		background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(26, 26, 26, 0.95));
		backdrop-filter: blur(25px);
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 50px;
		transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
		z-index: 1000;
		border-left: 2px solid rgba(255, 107, 53, 0.3);
		box-shadow: -10px 0 50px rgba(0, 0, 0, 0.8);
	}

	.nav-links::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: radial-gradient(circle at top right, rgba(255, 107, 53, 0.1), transparent 60%);
		pointer-events: none;
	}

	.nav-links.active {
		right: 0;
	}

	.nav-links li {
		opacity: 0;
		transform: translateX(100px) rotateY(20deg);
		transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
		list-style: none;
	}

	.nav-links.active li {
		opacity: 1;
		transform: translateX(0) rotateY(0deg);
	}

	.nav-links.active li:nth-child(1) {
		transition-delay: 0.1s;
		animation: bounceInRight 0.8s ease 0.1s both;
	}
	.nav-links.active li:nth-child(2) {
		transition-delay: 0.2s;
		animation: bounceInRight 0.8s ease 0.2s both;
	}
	.nav-links.active li:nth-child(3) {
		transition-delay: 0.3s;
		animation: bounceInRight 0.8s ease 0.3s both;
	}
	.nav-links.active li:nth-child(4) {
		transition-delay: 0.4s;
		animation: bounceInRight 0.8s ease 0.4s both;
	}
	.nav-links.active li:nth-child(5) {
		transition-delay: 0.5s;
		animation: bounceInRight 0.8s ease 0.5s both;
	}

	.nav-links a {
		font-size: clamp(1.1rem, 4vw, 1.4rem);
		padding: 18px 35px;
		border-radius: 15px;
		transition: color 0.3s ease;
		text-align: center;
		white-space: nowrap;
		background: rgba(255, 255, 255, 0.05);
		border: 1px solid rgba(255, 107, 53, 0.2);
		backdrop-filter: blur(10px);
	}

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

	.nav-links a:active {
		color: var(--primary);
	}
}

@keyframes bounceInRight {
	0% {
		opacity: 0;
		transform: translateX(100px) rotateY(30deg) scale(0.8);
	}
	60% {
		opacity: 1;
		transform: translateX(-10px) rotateY(-5deg) scale(1.05);
	}
	100% {
		opacity: 1;
		transform: translateX(0) rotateY(0deg) scale(1);
	}
}

@media (max-width: 480px) {
	.hamburger {
		display: flex !important;
		padding: 6px;
	}

	.nav-links {
		width: 100vw !important;
		right: -100vw;
		gap: 40px;
	}

	.nav-links.active {
		right: 0 !important;
	}

	.nav-links a {
		font-size: 1.2rem;
		padding: 16px 30px;
	}

	.hamburger span {
		width: 24px;
		height: 2.5px;
	}
}

@media (max-width: 667px) {
	.nav-links {
		display: none !important;
	}

	.nav-links.active {
		display: flex !important;
		right: 0 !important;
	}

	.hamburger {
		display: flex !important;
	}
}

.mobile-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	z-index: 999;
	backdrop-filter: blur(5px);
}

.mobile-overlay.active {
	opacity: 1;
	visibility: visible;
}