@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;600;700&display=swap');

:root {
  --bg-dark: #0a0e17;
  --bg-card: #121826;
  --bg-card-hover: #1a2235;
  --accent: #00d4ff;
  --accent-secondary: #7c3aed;
  --text-primary: #f0f4ff;
  --text-muted: #94a3b8;
  --gradient: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
  --shadow: 0 8px 32px rgba(0, 212, 255, 0.12);
  --radius: 12px;
}

body.site {
  background: var(--bg-dark);
  color: var(--text-primary);
  font-family: 'Exo 2', 'Exo', sans-serif;
}

.body-wrapper {
  background: radial-gradient(ellipse at top, #151d2e 0%, var(--bg-dark) 60%);
  min-height: 100vh;
}

/* Header */
#sp-header {
  background: rgba(10, 14, 23, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 212, 255, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.5rem 0;
}

#sp-header .logo-image,
#sp-header .logo-image-phone {
  height: 60px;
  filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.3));
  transition: transform 0.3s ease;
}

#sp-header .logo a:hover .logo-image,
#sp-header .logo a:hover .logo-image-phone {
  transform: scale(1.05);
}

/* Social icons */
.social-icons {
  list-style: none;
  display: flex;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
}

.social-icons li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid rgba(0, 212, 255, 0.2);
  color: var(--text-primary) !important;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icons li a:hover {
  background: var(--gradient);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  color: #fff !important;
}

.social-icon-facebook a:hover { background: #1877f2; }
.social-icons li:nth-child(2) a:hover { background: #ff0000; }
.social-icon-instagram a:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* Carousel / Slider */
#sp-slyder {
  display: block !important;
  padding: 0;
  margin-bottom: 2rem;
}

#sp-slyder .sppb-section {
  padding: 0 !important;
}

.sppb-carousel {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.sppb-carousel-inner > .sppb-item img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

.sppb-carousel-indicators li {
  background: rgba(255, 255, 255, 0.4);
  border: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.sppb-carousel-indicators li.active {
  background: var(--accent);
}

.sppb-carousel-arrow {
  background: rgba(0, 0, 0, 0.5) !important;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.sppb-carousel-arrow:hover {
  background: var(--accent) !important;
}

/* Music platform buttons */
#section-id-1702391629985 {
  padding: 3rem 0 !important;
}

#section-id-1702391629985 .sppb-btn {
  border: none !important;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 1rem 1.5rem !important;
  transition: all 0.3s ease;
  background: var(--bg-card) !important;
  color: var(--text-primary) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

#section-id-1702391629985 .sppb-btn:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

#btn-1702391919311:hover { background: #fc3c44 !important; color: #fff !important; }
#btn-1702419750538:hover { background: #a238ff !important; color: #fff !important; }
#btn-1702391630023:hover { background: #ff0000 !important; color: #fff !important; }
#btn-1702391630103:hover { background: #1db954 !important; color: #fff !important; }
#btn-1702419750578:hover { background: #25d1da !important; color: #000 !important; }

#section-id-1702391629985 .sppb-btn i {
  margin-right: 0.5rem;
}

/* Bio section */
#section-id-1702388497399 {
  padding: 2rem 0 4rem !important;
}

#section-id-1702388497399 .sppb-addon-content h4 {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  text-align: center;
}

#section-id-1702388497399 .sppb-addon-content div[style*="justify"] {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.05rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Video grid */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 480px), 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.video-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: var(--shadow);
}

.video-card-title {
  padding: 0.75rem 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--bg-card-hover);
}

.sppb-video-block {
  border-radius: 0;
}

.sppb-embed-responsive {
  border-radius: 0;
}

/* Footer */
#sp-footer {
  background: var(--bg-card);
  border-top: 1px solid rgba(0, 212, 255, 0.1);
  padding: 1.5rem 0;
}

#sp-footer .sp-copyright {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.sp-scroll-up {
  background: var(--gradient) !important;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Section title for videos */
.section-videos-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 2rem 0 0.5rem;
  color: var(--text-primary);
}

.section-videos-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

body, .sp-preloader,
body.site.helix-ultimate {
  background-color: var(--bg-dark) !important;
  color: var(--text-primary) !important;
}

.body-innerwrapper,
#sp-main-body,
#sp-component,
.sppb-section,
.sppb-row-container {
  background: transparent !important;
}

#section-id-1702391629985 .sppb-btn-default {
  background: var(--bg-card) !important;
  color: var(--text-primary) !important;
}

.sppb-btn-default:hover,
.sppb-btn-default:focus {
  color: var(--text-primary) !important;
}

#sp-header .burger-icon span {
  background: var(--text-primary);
}

/* Responsive */
@media (max-width: 767px) {
  #sp-header .logo-image-phone {
    height: 45px;
  }

  .social-icons li a {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }

  #section-id-1702388497399 .sppb-addon-content h4 {
    font-size: 1.75rem;
  }

  .sppb-carousel-inner > .sppb-item img {
    max-height: 280px;
  }
}
