* {
  font-family: 'Poppins', sans-serif;
}

body {
  background: #000;
  color: #fff;
}

/* NAVBAR */
.custom-nav {
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
}

/* GRADIENT BUTTON */
.btn-gradient {
  background: linear-gradient(90deg, #ff00cc, #ff6600);
  color: #fff;
  border: none;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  min-height: 100vh;
  background-image:
    url("/images/overly.png"),
    url("/images/baground.png");
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
}

/* HERO CONTENT */
.hero-content {
  z-index: 2;
}

/* TITLE */
.hero-title {
  font-size: clamp(42px, 8vw, 80px);
  font-weight: 700;
  margin: 20px 0;
  background: linear-gradient(90deg, #ff00cc, #ff6600);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TEXT */
.hero-text {
  max-width: 720px;
  margin: auto;
  color: #ccc;
  font-size: 18px;
}

/* BADGE */
.premium {
  background: rgba(255, 0, 204, 0.25);
  color: #ff66cc;
  font-size: 14px;
}

/* STATS */
.stats-section {
  padding: 60px 0;
}

/* MOBILE VIEW ONLY */
@media (max-width: 576px) {

  .hero-section {
    padding: 140px 20px 60px;
    text-align: center;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-text {
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-section .btn {
    width: 100%;
    margin-bottom: 12px;
  }

  .navbar-collapse {
    background: rgba(0,0,0,0.95);
    padding: 20px;
    border-radius: 12px;
    margin-top: 10px;
  }

  .navbar .btn-gradient {
    width: 100%;
    margin-top: 15px;
  }
}



/* ================= LATEST RELEASES ================= */
.latest-section {
  padding: 80px 0;
  background: radial-gradient(circle at left, rgba(255,0,204,0.12), transparent 40%),
              radial-gradient(circle at right, rgba(255,102,0,0.12), transparent 40%);
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(90deg, #ff66cc, #ff6600);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  color: #aaa;
  font-size: 15px;
}

/* CARD */
.music-card {
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .4s ease, box-shadow .4s ease;
}

.music-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(255,0,204,0.15);
}

/* IMAGE */
.music-img {
  position: relative;
}

.music-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* PLAYS BADGE */
.plays {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.7);
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 6px;
}

/* INFO */
.music-info {
  padding: 15px;
}

.music-info h5 {
  margin: 0;
  font-size: 16px;
}

.music-info span {
  font-size: 13px;
  color: #aaa;
}

/* META */
.music-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.music-meta small {
  color: #777;
}

.icons i {
  margin-left: 10px;
  cursor: pointer;
  color: #888;
}

.icons i:hover {
  color: #ff66cc;
}

/* MOBILE SCROLL */
@media (max-width: 768px) {
  .latest-scroll {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .latest-scroll::-webkit-scrollbar {
    display: none;
  }
}



.top-artists-section {
  background: radial-gradient(circle at top, #111, #000);
  padding: 80px 0;
  color: #fff;
}

/* Titles */
.section-title {
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(90deg, #ff4ecd, #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  color: #aaa;
  margin-top: 5px;
}

/* Artist Card */
.artist-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  height: 280px;
  background: #000;
  cursor: pointer;
}

.artist-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.artist-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent 60%);
}

.artist-card:hover img {
  transform: scale(1.08);
}

/* Badge */
.badge-gradient {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 14px;
  height: 14px;
  background: linear-gradient(45deg, #ff4ecd, #ff8c00);
  border-radius: 4px;
  z-index: 2;
}

/* Info */
.artist-info {
  position: absolute;
  bottom: 15px;
  left: 15px;
  z-index: 2;
}

.artist-info h5 {
  margin: 0;
  font-weight: 600;
}

.genre {
  font-size: 13px;
  color: #ccc;
}

.stats {
  display: flex;
  gap: 15px;
  font-size: 12px;
  margin-top: 6px;
  color: #ddd;
}

/* Button */
.discover-btn {
  padding: 12px 28px;
  background: linear-gradient(90deg, #ff4ecd, #ff8c00);
  border-radius: 30px;
  color: #fff;
  border: none;
  transition: 0.3s;
}

.discover-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 78, 205, 0.4);
}

/* ===== MOBILE ===== */
@media (max-width: 576px) {
  .section-title {
    font-size: 32px;
  }

  .artist-card {
    height: 240px;
  }
}



.top-hits-section {
  background: #000;
  padding: 80px 0;
  color: #fff;
}

/* Titles */
.hits-title {
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(90deg, #ff4ecd, #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hits-subtitle {
  color: #aaa;
}

/* TABLE */
.hits-table {
  color: #fff;
}

.hits-table thead th {
  color: #888;
  font-size: 13px;
  border-bottom: 1px solid #222;
}

.hits-table tbody tr {
  border-bottom: 1px solid #111;
  transition: 0.3s;
}

.hits-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.hits-table td {
  vertical-align: middle;
  color: #888;
  border: none;
  font-size: 14px;
}

.hits-table td span {
  color: #888;
  font-size: 12px;
}

/* Rank */
.rank {
  font-weight: 700;
  color: #aaa;
}

.rank i {
  color: #1aff6b;
  font-size: 12px;
}

.rank.pink {
  color: #ff4ecd;
}

/* Streams */
.streams {
  color: #c77dff;
  font-weight: 600;
}

/* Mobile Cards */
.mobile-hits {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hit-card {
  background: #0c0c0c;
  padding: 15px;
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hit-card .left {
  display: flex;
  gap: 12px;
  align-items: center;
}

.hit-card h6 {
  margin: 0;
}

.hit-card small {
  color: #aaa;
}

.hit-card .right {
  text-align: right;
  font-size: 13px;
}

/* Button */
.view-btn {
  padding: 12px 30px;
  border: 1px solid #444;
  border-radius: 30px;
  color: #fff;
  transition: 0.3s;
}

.view-btn:hover {
  background: linear-gradient(90deg, #ff4ecd, #ff8c00);
  border-color: transparent;
}


.table {
    --bs-table-color-type: initial;
    --bs-table-bg-type: initial;
    --bs-table-color-state: initial;
    --bs-table-bg-state: initial;
    --bs-table-color: var(--bs-emphasis-color);
    --bs-table-bg: rgba(0, 0, 0, 1);
    --bs-table-border-color: var(--bs-border-color);
    --bs-table-accent-bg: transparent;
    --bs-table-striped-color: var(--bs-emphasis-color);
    --bs-table-striped-bg: rgba(var(--bs-emphasis-color-rgb), 0.05);
    --bs-table-active-color: var(--bs-emphasis-color);
    --bs-table-active-bg: rgba(var(--bs-emphasis-color-rgb), 0.1);
    --bs-table-hover-color: var(--bs-emphasis-color);
    --bs-table-hover-bg: rgba(var(--bs-emphasis-color-rgb), 0.075);
    width: 100%;
    margin-bottom: 1rem;
    vertical-align: top;
    border-color: var(--bs-table-border-color);
}


.coming-soon {
  background: #000;
  padding: 80px 0;
  color: #fff;
}

/* Header */
.section-header h2 {
  font-size: 42px;
  font-weight: 700;
}

.section-header span {
  background: linear-gradient(90deg, #ff4ecd, #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  color: #aaa;
}

/* Release Card */
.release {
  background: #0c0c0c;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  height: 100%;
}

.release-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* Featured */
.featured .release-img {
  height: 90%;
}

/* Badge */
.badge-days {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(90deg, #ff00cc, #ff6600);
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
}

/* Info */
.release-info {
  padding: 20px;
}

.release-info h3,
.release-info h4 {
  margin-bottom: 5px;
}

.artist {
  color: #bbb;
  font-size: 14px;
}

.meta {
  font-size: 13px;
  color: #aaa;
  margin: 12px 0;
}

.meta i {
  margin-right: 6px;
}

/* Subscribe Button */
.subscribe-btn {
  background: linear-gradient(90deg, #ff0000, #ff4d4d);
  border: none;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  width: auto;
}

.subscribe-btn.full {
  width: 100%;
}

/* Newsletter */
.newsletter {
  margin-top: 70px;
  padding: 30px;
  background: linear-gradient(90deg, rgba(255,0,204,.2), rgba(255,140,0,.2));
  border-radius: 18px;
  text-align: center;
}

.newsletter p {
  color: #ccc;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 15px auto 0;
}

.newsletter-form input {
  flex: 1;
  padding: 12px;
  border-radius: 8px 0 0 8px;
  border: none;
  outline: none;
}

.newsletter-form button {
  padding: 12px 20px;
  border: none;
  background: linear-gradient(90deg, #ff00cc, #ff6600);
  color: #fff;
  border-radius: 0 8px 8px 0;
}

/* Mobile */
@media (max-width: 768px) {
  .release-img {
    height: 200px;
  }

  .featured .release-img {
    height: 240px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
  }
}


.yt-section {
  background: #050505;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.yt-title {
  font-weight: 700;
  font-size: 2.4rem;
  background: linear-gradient(90deg, #a855f7, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.yt-subtitle {
  color: #9ca3af;
}

.yt-subscribe-top {
  background: #ff0000;
  padding: 10px 20px;
  border-radius: 25px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

/* Stats */
.yt-stat {
  background: #0f0f0f;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #1f1f1f;
}

.yt-stat h3 {
  font-weight: 700;
}

.purple h3 { color: #a855f7; }
.pink h3 { color: #ec4899; }
.orange h3 { color: #f59e0b; }
.violet h3 { color: #8b5cf6; }

.yt-stat span {
  color: #9ca3af;
}

/* Videos */
.yt-video {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}

.yt-video img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.views {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #000;
  padding: 3px 8px;
  font-size: 12px;
  border-radius: 6px;
}

.play {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: 0.3s;
}

.yt-video:hover .play {
  opacity: 1;
}

.play i {
  font-size: 40px;
  color: red;
}

.yt-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

/* CTA */
.yt-cta {
  background: linear-gradient(90deg, #2a0000, #000);
  padding: 40px;
  border-radius: 16px;
}

.yt-cta i {
  font-size: 40px;
  color: red;
}

.cta-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.about-section {
  background: #050505;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

/* Titles */
.about-title {
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(90deg, #a855f7, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-center-title {
  text-align: center;
  font-weight: 700;
  margin-top: 30px;
}

/* Text */
.about-text {
  color: #9ca3af;
  font-size: 0.95rem;
}

/* Values */
.value-card {
  background: #0f0f0f;
  border: 1px solid #1f1f1f;
  padding: 15px;
  border-radius: 10px;
}

.value-card p {
  font-size: 0.8rem;
  color: #9ca3af;
  margin: 0;
}

.purple { color: #a855f7; }
.pink { color: #ec4899; }
.orange { color: #f59e0b; }
.violet { color: #8b5cf6; }

/* Image */
.about-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0,0,0,0.7);
  padding: 15px 20px;
  border-radius: 10px;
}

.image-badge h3 {
  color: #a855f7;
  margin: 0;
}

/* Services */
.service-card {
  background: #0f0f0f;
  border: 1px solid #1f1f1f;
  padding: 25px;
  border-radius: 14px;
  height: 100%;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card i {
  font-size: 28px;
  background: linear-gradient(135deg, #a855f7, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 0.85rem;
  color: #9ca3af;
}

/* CTA */
.cta-box {
  background: linear-gradient(90deg, #3b0764, #3f0000);
  padding: 45px 30px;
  border-radius: 18px;
}

.cta-box p {
  color: #d1d5db;
  max-width: 650px;
  margin: auto;
}

.cta-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
  .about-title {
    font-size: 1.9rem;
  }

  .about-image img {
    height: 300px;
  }
}



.join-section {
  background: radial-gradient(circle at top left, #160016, #000);
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

/* Title */
.join-title {
  font-size: 2.6rem;
  font-weight: 700;
  background: linear-gradient(90deg, #a855f7, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.join-subtitle {
  color: #9ca3af;
  max-width: 650px;
  margin: auto;
}

/* Form */
.join-form-card {
  background: rgba(15, 15, 15, 0.85);
  border: 1px solid #1f1f1f;
  border-radius: 16px;
  padding: 30px;
  backdrop-filter: blur(12px);
}

.join-form-card label {
  font-size: 0.85rem;
  color: #d1d5db;
  margin-bottom: 6px;
}

.join-form-card .form-control {
  background: transparent;
  border: 1px solid #2a2a2a;
  color: #fff;
  padding: 12px;
}

.join-form-card .form-control::placeholder {
  color: #6b7280;
}

.join-form-card .form-control:focus {
  border-color: #a855f7;
  box-shadow: none;
  background: transparent;
  color: #fff;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, #9333ea, #ef4444);
}

/* Info Cards */
.info-card {
  background: rgba(15, 15, 15, 0.85);
  border: 1px solid #1f1f1f;
  border-radius: 16px;
  padding: 25px;
}

.info-card h5 {
  font-weight: 600;
  margin-bottom: 15px;
}

.info-card ul {
  padding-left: 18px;
}

.info-card ul li {
  color: #9ca3af;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

/* Gradient Card */
.info-card.gradient {
  background: linear-gradient(135deg, rgba(88,28,135,0.4), rgba(88,28,135,0.05));
}

/* Contact */
.info-card.contact p {
  color: #c084fc;
  margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .join-title {
    font-size: 2rem;
  }
}



.lotta-footer {
  position: relative;
  background: radial-gradient(circle at top, #1b0f2e, #050008);
  color: #cfc7ff;
  padding: 70px 0 30px;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

/* glow animation */
.footer-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, #a855f7, #ec4899);
  opacity: 0.25;
  filter: blur(120px);
  animation: floatGlow 8s infinite alternate;
}

.glow-1 {
  top: -100px;
  left: -100px;
}

.glow-2 {
  bottom: -120px;
  right: -120px;
  animation-delay: 3s;
}

@keyframes floatGlow {
  0% { transform: translateY(0); }
  100% { transform: translateY(40px); }
}
.footer-logo {
  width: 90px;
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .footer-logo {
    width: 50px;
  }
}

/* Brand */
.footer-brand h4 {
  font-weight: 700;
  color: #fff;
}

.footer-brand p {
  font-size: 14px;
  opacity: 0.85;
  margin: 15px 0;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  margin-right: 8px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: linear-gradient(135deg, #9333ea, #ec4899);
  transform: translateY(-4px);
}

/* Titles */
.footer-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 18px;
}

/* Links */
.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-links a {
  color: #cfc7ff;
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 6px;
}

/* Contact icons */
.footer-contact i {
  margin-right: 8px;
  color: #ec4899;
}

/* Bottom */
.footer-line {
  border-color: rgba(255,255,255,0.1);
  margin: 30px 0 20px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.footer-policy a {
  color: #cfc7ff;
  margin-left: 15px;
  text-decoration: none;
}

.footer-policy a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-bottom {
    text-align: center;
    gap: 10px;
  }

  .footer-policy a {
    margin: 0 8px;
  }
}
