@media (max-width: 700px) {
  #hero {
    margin-top: 56px;
  }
}
:root {
  --bg-dark: #0a0a0a;
  --bg-darker: #050505;
  --bg-light: #1a1a1a;
  --text-primary: #f0f0f0;
  --text-secondary: #b0b0b0;
  --border-color: #2a2a2a;
  --accent: #ffffff;
  --accent-hover: #cccccc;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  --transition: all 0.3s ease;
  --primary: #3a3a5a;
  --primary-dark: #2a2a3a;
  --secondary: #5a5a7a;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}


#hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background-color: var(--bg-darker);
  display: flex;
  align-items: center;
}

#heroCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 0%, var(--bg-darker) 100%);
  z-index: 2;
  pointer-events: none;
}


.hero-container {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 0;
  transform: translateY(-5%);
}

@media (min-width: 900px) {
  .hero-right {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    padding-top: 60px;
  }
  .hero-container {
    align-items: center;
  }
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  background: linear-gradient(135deg, #fff, #aaa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-secondary);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 500px;
  line-height: 1.6;
}




.stats.modern-stats {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  justify-content: flex-start;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--glass-bg);
  border-radius: 18px;
  padding: 0.9rem 1.3rem;
  min-width: 110px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
  border: 1.5px solid var(--primary-dark);
  transition: transform 0.16s cubic-bezier(.4,1.3,.6,1), box-shadow 0.16s;
  position: relative;
}
.stat-card:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,255,255,0.10);
  border-color: var(--accent);
}
.stat-number {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 0.1rem;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.stat-metric {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 600;
  margin-left: 2px;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-top: 0.1rem;
  border: none;
  text-decoration: none;
}

.hero-cta {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.hero-btn {
  font-size: 1.1rem;
  padding: 0.9rem 2.2rem;
  border-radius: 40px;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(255,255,255,0.08);
  transition: background 0.2s, color 0.2s, transform 0.18s cubic-bezier(.4,1.3,.6,1);
}
.hero-btn:hover {
  transform: translateY(-2px) scale(1.04);
}


.hero-socials {
  display: flex;
  gap: 1.1rem;
  margin-bottom: 2.2rem;
}

.hero-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1.5px solid var(--primary-dark);
  color: #fff;
  font-size: 1.5rem;
  transition: background 0.2s, color 0.2s, transform 0.18s cubic-bezier(.4,1.3,.6,1), box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(255,255,255,0.06);
  text-decoration: none;
}
.hero-social i {
  color: #fff;
  transition: color 0.2s;
}
.hero-social:hover {
  background: #fff;
  color: #111;
  box-shadow: 0 6px 24px rgba(255,255,255,0.13);
  transform: scale(1.13) translateY(-2px);
  border-color: #fff;
}
.hero-social:hover i {
  color: #111;
}

/* Responsive and complex hero section media queries */
@media (max-width: 1200px) {
  .hero-container {
    gap: 2.2rem;
    width: 98%;
    padding: 1.2rem 0;
  }
  .hero-left {
    padding-right: 0.5rem;
  }
}

@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    width: 98%;
    padding: 1.2rem 0 0 0;
  }
  .hero-left {
    align-items: center;
    text-align: center;
    padding: 0;
  }
  .hero-right {
    justify-content: center;
    align-items: center;
    padding-top: 0;
    margin-bottom: 1.5rem;
  }
  .floating-images {
    justify-content: center;
    gap: 1.2rem;
  }
}

@media (max-width: 700px) {
  #hero h1 {
    font-size: 2.1rem;
  }
  .hero-description {
    font-size: 1rem;
    max-width: 95vw;
  }
  .stats.modern-stats {
    flex-direction: column;
    gap: 0.7rem;
    align-items: center;
  }
  .stat-card {
    min-width: 90px;
    padding: 0.7rem 1rem;
  }
  .hero-cta {
    flex-direction: column;
    gap: 0.7rem;
    align-items: center;
  }
  .hero-socials {
    justify-content: center;
  }
}

@media (max-width: 500px) {
  .hero-container {
    width: 100%;
    padding: 0.5rem 0 0 0;
  }
  .stat-card {
    min-width: 70px;
    padding: 0.5rem 0.7rem;
  }
  .hero-social {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
}


.artist-spotlight {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 60px;
  padding: 0.5rem 0.5rem 0.5rem 0.5rem;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  margin: 1.5rem 0 2rem 0;
  width: fit-content;
  max-width: 100%;
  transition: var(--transition);
}

.artist-spotlight:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.spotlight-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.spotlight-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.spotlight-details {
  flex: 1;
  min-width: 0;
}

.spotlight-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
  display: block;
  line-height: 1.2;
}

.spotlight-details h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.1rem;
}

.spotlight-genre {
  font-size: 0.8rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.spotlight-genre i {
  font-size: 0.7rem;
  color: var(--accent);
}

.spotlight-action {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  margin-right: 0.5rem;
}

.spotlight-follow {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.spotlight-follow:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.spotlight-play {
  color: var(--text-primary);
  font-size: 2rem;
  line-height: 1;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.spotlight-play:hover {
  color: var(--accent);
  transform: scale(1.1);
}


.quick-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--text-primary);
  color: var(--bg-dark);
  border-color: var(--text-primary);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--text-primary);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}


.hero-right {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.floating-images {
  position: relative;
  height: 400px;
  width: 100%;
  will-change: transform;
}

.float-item {
  position: absolute;
  margin: 0;
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.38);
  animation: float-clean 10s infinite cubic-bezier(0.42, 0, 0.2, 1);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.float-item:hover {
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.48);
}

.float-img {
  display: block;
  width: 100%;
  height: calc(100% - 28px);
  object-fit: cover;
  border-radius: 14px 14px 0 0;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.float-name {
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  background: rgba(10, 10, 10, 0.72);
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 0.45rem;
}


.img1 { top: 0; left: 0; width: 156px; height: 184px; animation-delay: 0s; }
.img2 { top: 26px; right: 38px; width: 132px; height: 160px; animation-delay: 1s; }
.img3 { bottom: 14px; left: 54px; width: 172px; height: 204px; animation-delay: 2s; }
.img4 { bottom: 44px; right: 12px; width: 146px; height: 174px; animation-delay: 0.5s; }
.img5 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 162px;
  height: 194px;
  animation: float-clean-centered 12s infinite cubic-bezier(0.42, 0, 0.2, 1);
  animation-delay: 1.5s;
}


@keyframes float-clean {
  0%, 100% { transform: translate3d(0, 0, 0); }
  25% { transform: translate3d(6px, -8px, 0); }
  50% { transform: translate3d(0, -12px, 0); }
  75% { transform: translate3d(-6px, -8px, 0); }
}

@keyframes float-clean-centered {
  0%, 100% { transform: translate(-50%, -50%) translate3d(0, 0, 0); }
  25% { transform: translate(-50%, -50%) translate3d(5px, -7px, 0); }
  50% { transform: translate(-50%, -50%) translate3d(0, -10px, 0); }
  75% { transform: translate(-50%, -50%) translate3d(-5px, -7px, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .float-item,
  .img5 {
    animation: none;
  }
}


#scrollDown {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--text-primary);
  font-size: 2rem;
  cursor: pointer;
  animation: bounce 2s infinite;
  transition: var(--transition);
  opacity: 0.8;
}

#scrollDown:hover {
  opacity: 1;
  color: var(--accent-hover);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-20px); }
  60% { transform: translateX(-50%) translateY(-10px); }
}


@media (max-width: 968px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    transform: translateY(-3%);
  }

  .hero-left {
    align-items: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .stats {
    justify-content: center;
  }

  .artist-spotlight {
    margin-left: auto;
    margin-right: auto;
  }

  .quick-links {
    justify-content: center;
  }

  .hero-right {
    align-items: center;
  }

  .floating-images {
    height: 300px;
  }

  .img1 { width: 118px; height: 142px; }
  .img2 { width: 104px; height: 126px; top: 16px; right: 18px; }
  .img3 { width: 132px; height: 160px; bottom: 8px; left: 24px; }
  .img4 { width: 114px; height: 136px; bottom: 24px; right: 8px; }
  .img5 { width: 122px; height: 148px; }

  .float-name {
    font-size: 0.68rem;
    height: 24px;
  }

}

@media (max-width: 768px) {
  .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }

  .stats {
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .hero-container {
    transform: translateY(-2%);
  }

  .artist-spotlight {
    flex-wrap: wrap;
    border-radius: 30px;
    padding: 0.5rem;
    gap: 0.8rem;
  }

  .spotlight-action {
    margin-right: 0;
    width: 100%;
    justify-content: center;
    margin-top: 0.3rem;
  }
  .floating-images {
    height: 250px;
  }

  .img1 { width: 102px; height: 124px; }
  .img2 { width: 90px; height: 110px; top: 14px; right: 8px; }
  .img3 { width: 114px; height: 136px; bottom: 10px; left: 16px; }
  .img4 { width: 96px; height: 116px; bottom: 18px; right: 2px; }
  .img5 { width: 104px; height: 126px; }
}

.releases-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}

.releases-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(180deg, transparent, var(--bg-darker));
  pointer-events: none;
  z-index: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 3rem;
  text-align: center;
  background: linear-gradient(135deg, #fff, #aaa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.releases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.release-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
  position: relative;
}

.release-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.release-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
  opacity: 0;
  transition: var(--transition);
}

.release-card:hover::after {
  opacity: 1;
}

.album-art {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.release-card:hover .album-art {
  transform: scale(1.05);
}

.card-body {
  padding: 1.5rem;
  position: relative;
  z-index: 2;
}

.card-body h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-body p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.card-body p span {
  color: var(--accent);
  font-weight: 500;
}

.release-date {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.5px;
  display: block;
  margin-top: 0.5rem;
}

.view-all-container {
  text-align: center;
  margin-top: 2rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 2.2rem;
  background: transparent;
  border: 2px solid var(--text-secondary);
  color: var(--text-primary);
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

.btn-outline i {
  transition: transform 0.3s ease;
}

.btn-outline:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .releases-section {
    padding: 4rem 0;
  }

  .releases-grid {
    gap: 1.5rem;
  }

  .card-body h3 {
    font-size: 1.1rem;
  }
}

.site-footer {
  background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}


.footer-about h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff, #aaa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.footer-about p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: var(--text-secondary);
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--accent);
  transform: translateY(-3px);
}


.footer-links h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-latest h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.latest-card {
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 0.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
  max-width: 280px;
}

.latest-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.latest-art {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.latest-info {
  flex: 1;
}

.latest-info h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.latest-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.3rem;
}

.latest-play {
  color: var(--text-primary);
  font-size: 2rem;
  line-height: 1;
  transition: var(--transition);
  display: inline-block;
}

.latest-play:hover {
  color: var(--accent);
  transform: scale(1.1);
}


.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.footer-bottom p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}


@media (max-width: 968px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-about {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer-about p {
    margin-left: auto;
    margin-right: auto;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links ul,
  .social-links {
    justify-content: center;
  }

  .latest-card {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-latest h4 {
    text-align: center;
  }
}