/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: hsl(20,10%,6%);
  --fg: hsl(35,20%,96%);
  --card: hsl(20,10%,9%);
  --muted: hsl(35,10%,55%);
  --border: hsl(25,10%,18%);
  --gold: hsl(38,92%,50%);
  --gold-dark: hsl(28,90%,44%);
  --rose: hsl(15,65%,55%);
  --glass-bg: hsl(20,10%,10%,0.8);
  --glass-border: hsl(35,20%,96%,0.08);
  --radius: 0.75rem;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; color: inherit; font-family: inherit; }
img { display: block; max-width: 100%; }
iframe { display: block; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: hsl(0,0%,10%); }
::-webkit-scrollbar-thumb { background: hsl(0,0%,25%); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: hsl(0,0%,35%); }

/* ===== GOLD SHIMMER ===== */
.gold-shimmer {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.shimmer-particle {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, hsl(38,92%,50%,0.8) 0%, transparent 70%);
  filter: blur(0.5px);
  animation: pulse-anim var(--dur) ease-in-out infinite;
  animation-delay: var(--delay);
}
.shimmer-glow-1 {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, hsl(38,92%,50%) 0%, transparent 70%);
  opacity: 0.03; top: 10%; right: -10%;
  animation: pulse-anim 8s ease-in-out infinite;
}
.shimmer-glow-2 {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, hsl(15,65%,55%) 0%, transparent 70%);
  opacity: 0.02; bottom: 20%; left: 5%;
  animation: pulse-anim 10s ease-in-out infinite 2s;
}

/* ===== SIDEBAR ===== */
.sidebar {
  display: none;
  position: fixed; left: 0; top: 0; height: 100vh; width: 256px;
  flex-direction: column; z-index: 50;
  background: hsl(20,10%,7%,0.6);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-right: 1px solid var(--border);
}
@media (min-width: 768px) { .sidebar { display: flex; } }

.sidebar-logo {
  padding: 1.5rem; display: flex; align-items: center; gap: 0.75rem;
}
.logo-badge {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 700; color: var(--bg);
  box-shadow: 0 4px 16px hsl(38,92%,50%,0.2);
}
.logo-name { font-weight: 700; color: var(--fg); }
.logo-sub { font-size: 0.75rem; color: var(--muted); }

.sidebar-nav { flex: 1; padding: 0 1rem; display: flex; flex-direction: column; gap: 0.25rem; }

.nav-btn {
  width: 100%; display: flex; align-items: center; gap: 1rem;
  padding: 0.875rem 1rem; border-radius: 12px;
  font-size: 0.9375rem; font-weight: 500;
  color: var(--muted); transition: all 0.3s;
  position: relative;
}
.nav-btn:hover { color: var(--fg); background: hsl(20,8%,14%,0.5); }
.nav-btn.active { color: var(--gold); background: hsl(38,92%,50%,0.1); border: 1px solid hsl(38,92%,50%,0.2); }
.nav-btn .nav-icon { width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.3s; }
.nav-btn:hover .nav-icon, .nav-btn.active .nav-icon { transform: scale(1.1); }
.nav-dot {
  margin-left: auto; width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); animation: pulse-anim 2s ease-in-out infinite;
}

.sidebar-footer {
  padding: 1.5rem; border-top: 1px solid var(--border);
  text-align: center; font-size: 0.7rem; color: hsl(35,10%,65%);
  line-height: 1.8;
}
.sidebar-credit { display: block; margin-top: 0.75rem; font-size: 0.7rem; color: hsl(35,10%,55%); }
.sidebar-credit a { color: var(--gold); text-decoration: none; font-weight: 600; transition: opacity 0.2s; }
.sidebar-credit a:hover { opacity: 0.8; }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  background: hsl(20,10%,9%,0.8);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 0.75rem 1rem;
  justify-content: space-around;
}
@media (min-width: 768px) { .mobile-nav { display: none; } }

.mobile-nav-btn {
  display: flex; flex-direction: column; align-items: center; gap: 0.375rem;
  padding: 0.5rem; border-radius: 12px; min-width: 60px;
  font-size: 0.625rem; font-weight: 500; color: var(--muted);
  transition: all 0.3s; position: relative;
}
.mobile-nav-btn svg { width: 20px; height: 20px; transition: transform 0.3s; }
.mobile-nav-btn.active { color: var(--gold); }
.mobile-nav-btn.active svg { transform: scale(1.1); }

/* ===== MAIN CONTENT ===== */
.main-content { min-height: 100vh; padding-bottom: 6rem; position: relative; z-index: 1; }
@media (min-width: 768px) { .main-content { margin-left: 256px; padding-bottom: 0; } }

.content-wrapper { max-width: 1152px; margin: 0 auto; padding: 1.5rem 1rem; }
@media (min-width: 768px) { .content-wrapper { padding: 1.5rem 2rem; } }

/* ===== HERO ===== */
.hero-section {
  position: relative; width: 100%; min-height: 85vh;
  overflow: hidden; border-radius: 1.25rem;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-img {
  position: absolute; right: 0; top: 0; height: 100%; width: 100%;
  object-fit: cover; object-position: center top;
  opacity: 0; transition: opacity 1s;
  animation: slow-zoom 8s ease-out forwards;
}
.hero-img.loaded { opacity: 1; }
@media (min-width: 1024px) { .hero-img { width: 65%; object-position: top; } }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, #12100e 0%, rgba(18,16,14,0.92) 35%, rgba(18,16,14,0.4) 65%, transparent 100%);
}
.hero-glow-1 {
  position: absolute; top: 33%; left: 0; width: 400px; height: 400px;
  background: hsl(38,92%,50%,0.05); border-radius: 50%; filter: blur(120px);
  opacity: 0.5; animation: pulse-anim 4s ease-in-out infinite;
}
.hero-glow-2 {
  position: absolute; bottom: 25%; left: 25%; width: 300px; height: 300px;
  background: hsl(15,65%,55%,0.05); border-radius: 50%; filter: blur(100px);
  opacity: 0.4; animation: pulse-anim 6s ease-in-out infinite;
}
.hero-content {
  position: relative; z-index: 20; min-height: 85vh;
  display: flex; align-items: center;
  padding: 2rem 1.5rem;
}
@media (min-width: 768px) { .hero-content { padding: 3rem; } }
@media (min-width: 1024px) { .hero-content { padding: 4rem; } }

.hero-text-col {
  display: flex; flex-direction: column;
  max-width: 560px;
}

.hero-left, .hero-center, .hero-right { display: none; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1.25rem; border-radius: 9999px;
  background: hsl(20,10%,12%,0.85); border: 1px solid hsl(38,92%,50%,0.25);
  margin-bottom: 2rem; backdrop-filter: blur(8px);
  font-size: 0.875rem; font-weight: 400; color: var(--gold);
  letter-spacing: 0.02em; width: fit-content;
  opacity: 0; animation: fade-in-up 0.5s ease-out 0.2s forwards;
}
.badge-icon { width: 16px; height: 16px; }
.spin { animation: spin-anim 3s linear infinite; }

.hero-title {
  font-size: clamp(3.5rem, 10.5vw, 8rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero-name-1 {
  display: block; color: var(--fg);
  opacity: 0; animation: fade-in-up 0.5s ease-out 0.4s forwards;
  margin: 0; padding: 0;
}
.hero-name-2 {
  display: block; margin: 0; padding-bottom: 0.15em;
  opacity: 0; animation: fade-in-up 0.5s ease-out 0.7s forwards;
}
.gradient-text {
  background: linear-gradient(135deg, hsl(45,100%,60%) 0%, hsl(38,95%,52%) 40%, hsl(22,90%,44%) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  padding-bottom: 0.1em;
}

.hero-desc {
  color: hsl(35,15%,72%); font-size: 1.125rem; margin-bottom: 2.5rem;
  line-height: 1.6; font-weight: 300;
  opacity: 0; animation: fade-in-up 0.5s ease-out 1.0s forwards;
}
.hero-btns {
  display: flex; flex-wrap: wrap; gap: 1rem;
  opacity: 0; animation: fade-in-up 0.5s ease-out 1.3s forwards;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 1rem 2rem; border-radius: 9999px;
  background: linear-gradient(135deg, hsl(38,92%,55%), hsl(28,90%,44%));
  color: hsl(20,10%,6%); font-weight: 500; font-size: 1rem;
  box-shadow: 0 4px 24px hsl(38,92%,50%,0.3);
  transition: all 0.3s; min-width: 180px; justify-content: center;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px hsl(38,92%,50%,0.5); }
.btn-icon-wrap {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,0.25); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.btn-icon-wrap svg { width: 16px; height: 16px; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 1rem 2rem; border-radius: 9999px;
  border: 1px solid hsl(35,20%,96%,0.35);
  background: hsl(20,10%,9%,0.25); backdrop-filter: blur(8px);
  color: hsl(35,20%,92%); font-weight: 400; font-size: 1rem;
  transition: all 0.3s; min-width: 220px; justify-content: center;
}
.btn-secondary svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }
.btn-secondary:hover { border-color: hsl(38,92%,50%,0.5); background: hsl(20,10%,9%,0.4); transform: translateY(-2px); }

.btn-mail { border-radius: 12px; min-width: unset; }

.btn-outline-sm {
  display: inline-flex; align-items: center;
  padding: 0.5rem 1rem; border-radius: 9999px;
  border: 1px solid hsl(38,92%,50%,0.2);
  color: var(--gold); font-size: 0.875rem; font-weight: 500;
  transition: all 0.3s;
}
.btn-outline-sm:hover { background: hsl(38,92%,50%,0.05); box-shadow: 0 4px 16px hsl(38,92%,50%,0.1); }

/* ===== SECTIONS ===== */
.section { padding: 4rem 0; }

.section-header {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 2rem;
}
.section-header-row {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem;
}
.section-header-row .section-header { margin-bottom: 0; }

.section-icon {
  width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, hsl(38,92%,50%,0.2), hsl(15,65%,55%,0.1));
  border: 1px solid hsl(38,92%,50%,0.1);
  display: flex; align-items: center; justify-content: center;
}
.section-icon svg { width: 20px; height: 20px; color: var(--gold); }
.section-title { font-size: clamp(1.25rem, 3vw, 1.875rem); font-weight: 700; letter-spacing: -0.03em; }
.section-sub { font-size: 0.875rem; color: var(--muted); }

/* ===== SPOTIFY ===== */
.spotify-wrap {
  border-radius: 1.25rem; overflow: hidden;
  background: hsl(20,10%,9%,0.3); backdrop-filter: blur(8px);
  border: 1px solid hsl(25,10%,18%,0.2);
  box-shadow: 0 25px 50px hsl(38,92%,50%,0.05);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.spotify-wrap:hover { border-color: hsl(38,92%,50%,0.3); box-shadow: 0 25px 50px hsl(38,92%,50%,0.1); }
.spotify-wrap iframe { border-radius: 1.25rem; }

/* ===== VIDEO GRID ===== */
.video-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .video-grid { grid-template-columns: repeat(3, 1fr); } }

.video-card {
  display: block; border-radius: 1.25rem; overflow: hidden;
  background: hsl(20,10%,9%,0.3);
  border: 1px solid hsl(25,10%,18%,0.3);
  transition: border-color 0.5s, box-shadow 0.5s, transform 0.3s;
  position: relative;
}
.video-card:hover { border-color: hsl(38,92%,50%,0.4); box-shadow: 0 25px 50px hsl(38,92%,50%,0.1); }

.video-thumb { aspect-ratio: 16/9; position: relative; overflow: hidden; }
.video-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s, filter 0.3s;
}
.video-card:hover .video-thumb img { transform: scale(1.1); filter: brightness(0.75); }

.video-shimmer {
  position: absolute; inset: 0; opacity: 0;
  background: linear-gradient(135deg, hsl(38,92%,50%,0.2), transparent, hsl(15,65%,55%,0.1));
  transition: opacity 0.5s;
}
.video-card:hover .video-shimmer { opacity: 1; }

.video-overlay-dark {
  position: absolute; inset: 0; background: hsl(0,0%,0%,0.3);
  opacity: 0; transition: opacity 0.3s;
}
.video-card:hover .video-overlay-dark { opacity: 1; }

.video-play-btn {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.video-play-btn svg {
  width: 28px; height: 28px; color: hsl(20,10%,6%);
}
.video-play-btn::before {
  content: ''; position: absolute;
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 4px 16px hsl(38,92%,50%,0.4);
  transform: scale(0.75); opacity: 0.8;
  transition: transform 0.3s, opacity 0.3s, box-shadow 0.3s;
}
.video-card:hover .video-play-btn::before {
  transform: scale(1); opacity: 1; box-shadow: 0 8px 24px hsl(38,92%,50%,0.6);
}
.video-play-btn svg { position: relative; z-index: 1; margin-left: 4px; }

.video-bottom-fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 96px;
  background: linear-gradient(to top, var(--card), transparent);
}

.video-info { padding: 1rem; position: relative; }
.video-top-line {
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, hsl(38,92%,50%,0.3), transparent);
  opacity: 0; transition: opacity 0.5s;
}
.video-card:hover .video-top-line { opacity: 1; }
.video-title {
  font-weight: 600; font-size: 1.0625rem; margin-bottom: 0.25rem;
  color: var(--fg); transition: color 0.3s;
}
.video-card:hover .video-title { color: var(--gold); }
.video-artist { color: var(--muted); font-size: 0.875rem; display: flex; align-items: center; gap: 0.5rem; }
.video-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
  opacity: 0; transition: opacity 0.3s;
}
.video-card:hover .video-dot { opacity: 1; }

/* ===== SOCIAL GRID ===== */
.social-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 1024px) { .social-grid { grid-template-columns: repeat(4, 1fr); } }

.social-card {
  display: block; border-radius: 1.25rem; overflow: hidden;
  aspect-ratio: 4/5; position: relative;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}
.social-card:hover { transform: scale(1.02); }

.social-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.7s;
}
.social-card:hover .social-bg-img { transform: scale(1.1); }

.social-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
  transition: background 0.5s;
}
.social-card:hover .social-overlay { background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 50%, transparent 100%); }

.social-shine {
  position: absolute; inset: 0; opacity: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  transition: opacity 0.5s;
}
.social-card:hover .social-shine { opacity: 1; }

.social-glow {
  position: absolute; inset: -4px; border-radius: 1.25rem;
  opacity: 0; filter: blur(16px); transition: opacity 0.5s; z-index: -1;
}
.social-card:hover .social-glow { opacity: 0.4; }

.social-content {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 1.25rem;
}
.social-content > div { display: flex; align-items: center; gap: 0.75rem; transition: transform 0.3s; }
.social-card:hover .social-content > div { transform: translateY(-4px); }

.social-icon-wrap {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3); transition: transform 0.3s, box-shadow 0.3s;
}
.social-card:hover .social-icon-wrap { transform: scale(1.1); box-shadow: 0 8px 20px rgba(0,0,0,0.4); }
.social-icon-wrap svg { width: 20px; height: 20px; color: white; }

.social-action { font-weight: 600; font-size: 0.875rem; color: white; }
.social-username { font-size: 0.75rem; color: rgba(255,255,255,0.7); }

/* ===== SPOTIFY CTA ===== */
.spotify-cta-wrap { margin-top: 2rem; display: flex; justify-content: center; }
.spotify-cta {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem 2rem; border-radius: 1.25rem;
  background: hsl(38,92%,50%,0.1); backdrop-filter: blur(20px);
  border: 1px solid hsl(38,92%,50%,0.3);
  box-shadow: 0 8px 24px hsl(38,92%,50%,0.1);
  transition: all 0.3s;
}
.spotify-cta:hover { border-color: hsl(38,92%,50%,0.6); transform: scale(1.05); box-shadow: 0 16px 40px hsl(38,92%,50%,0.3); }
.spotify-cta-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px hsl(38,92%,50%,0.3); transition: transform 0.3s, box-shadow 0.3s;
}
.spotify-cta:hover .spotify-cta-icon { transform: scale(1.1); box-shadow: 0 8px 24px hsl(38,92%,50%,0.5); }
.spotify-cta-icon svg { width: 24px; height: 24px; color: var(--bg); }
.spotify-cta-title { font-weight: 700; font-size: 1.125rem; color: var(--fg); transition: color 0.3s; }
.spotify-cta:hover .spotify-cta-title { color: var(--gold); }
.spotify-cta-sub { font-size: 0.875rem; color: var(--muted); }

/* ===== CONTACT ===== */
.contact-card {
  background: hsl(20,10%,9%,0.3); backdrop-filter: blur(8px);
  border-radius: 1.25rem; border: 1px solid hsl(25,10%,18%,0.3);
  overflow: hidden; transition: border-color 0.3s, box-shadow 0.3s;
}
.contact-card:hover { border-color: hsl(38,92%,50%,0.3); box-shadow: 0 8px 24px hsl(38,92%,50%,0.05); }
.contact-inner {
  padding: 2rem; display: flex; flex-direction: column; gap: 2rem;
}
@media (min-width: 1024px) { .contact-inner { flex-direction: row; align-items: flex-start; } }

.contact-left { flex: 1; }
.contact-heading { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem; }
.contact-desc { color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; }
.contact-items { display: flex; flex-direction: column; gap: 1rem; }

.contact-item { display: flex; align-items: center; gap: 1rem; }
.contact-item-icon {
  width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s;
}
.contact-item:hover .contact-item-icon { transform: scale(1.1); }
.contact-item-icon svg { width: 20px; height: 20px; }
.gold-icon { background: hsl(38,92%,50%,0.1); }
.gold-icon svg { color: var(--gold); }
.rose-icon { background: hsl(15,65%,55%,0.1); }
.rose-icon svg { color: var(--rose); }
.champ-icon { background: hsl(40,50%,85%,0.1); }
.champ-icon svg { color: hsl(40,50%,85%); }

.contact-label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
.contact-value { font-weight: 500; color: var(--fg); transition: color 0.3s; }
.contact-item:hover .contact-value { color: var(--gold); }

.contact-right { display: flex; }
@media (min-width: 1024px) { .contact-right { align-self: flex-start; } }

/* ===== FOOTER ===== */
.footer {
  margin-top: 4rem; padding-top: 2rem;
  border-top: 1px solid hsl(25,10%,18%,0.3);
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.75rem;
}
@media (min-width: 768px) {
  .footer { flex-direction: row; justify-content: space-between; align-items: center; padding-right: 1rem; }
}

.footer-left { display: flex; flex-direction: column; gap: 0.2rem; }
.footer-left p { font-size: 0.8rem; color: hsl(35,10%,65%); line-height: 1.6; }

.footer-right { display: flex; align-items: center; }

.footer-crafted { font-size: 0.8rem; color: hsl(35,12%,62%); }
.footer-crafted a { color: var(--gold); text-decoration: none; font-weight: 600; letter-spacing: 0.02em; transition: opacity 0.2s; }
.footer-crafted a:hover { opacity: 0.75; }

/* ===== SCROLL REVEAL ===== */
.scroll-reveal {
  opacity: 0; transform: translateY(2rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== ANIMATIONS ===== */
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slow-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}
@keyframes pulse-anim {
  0%, 100% { opacity: var(--op, 0.5); }
  50% { opacity: calc(var(--op, 0.5) * 0.5); }
}
@keyframes spin-anim {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Mobil cihazlarda performansı artırmak için Shimmer efektini optimize etme */
@media (max-width: 768px) {
    .gold-shimmer {
        position: absolute; /* Ekrana yapışmasını engeller, sayfanın en üstünde kalır */
    }
    .shimmer-particle, 
    .shimmer-glow-1, 
    .shimmer-glow-2 {
        animation: none !important; /* Arka plan animasyonunu durdurur */
        filter: none !important; /* İşlemciyi yoran blur efektini iptal eder */
    }
}