@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;600;700;800&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: 14px;
  --header-h: 78px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg-dark);
  background-image: radial-gradient(ellipse at top, #151d2e 0%, var(--bg-dark) 60%);
  background-repeat: no-repeat;
  color: var(--text-primary);
  font-family: 'Exo 2', 'Segoe UI', sans-serif;
  line-height: 1.5;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(10, 14, 23, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 212, 255, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.logo img {
  height: 52px;
  filter: invert(1) brightness(1.15) drop-shadow(0 0 8px rgba(0, 212, 255, 0.3));
  transition: transform 0.3s ease;
}
.logo:hover img { transform: scale(1.05); }

#main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 12px;
  flex: 1;
}

#main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  color: var(--text-muted);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}
#main-nav a:hover { color: var(--text-primary); border-color: var(--accent); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.social-icons {
  list-style: none;
  display: flex;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid rgba(0, 212, 255, 0.2);
  transition: all 0.3s ease;
}
.social-icons a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.social-icons .fb:hover { background: #1877f2; }
.social-icons .yt:hover { background: #ff0000; }
.social-icons .ig:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-icons svg { width: 17px; height: 17px; fill: var(--text-primary); }

.lang-switch {
  display: flex;
  gap: 6px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 4px;
}
.lang-switch a {
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}
.lang-switch a.active {
  background: var(--gradient);
  color: #fff;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
}

/* ---------- Hero / Slideshow ---------- */
.hero {
  position: relative;
  height: min(72vh, 620px);
  min-height: 380px;
  overflow: hidden;
}

.slideshow { position: absolute; inset: 0; }

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.slide.active { opacity: 1; }
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,14,23,0.35) 0%, rgba(10,14,23,0.35) 45%, var(--bg-dark) 100%);
  pointer-events: none;
}

.hero-content {
  position: absolute;
  left: 0; right: 0; bottom: 9%;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  margin: 0 0 10px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.6);
}

.hero-content p {
  color: var(--text-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  opacity: 0.9;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.slide-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.slide-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.slide-dots button.active { background: var(--accent); transform: scale(1.2); }

.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.4);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.slide-arrow:hover { background: var(--accent); }
.slide-arrow.prev { left: 20px; }
.slide-arrow.next { right: 20px; }

/* ---------- Platforms ---------- */
.platforms {
  padding: 3rem 0 2.5rem;
}
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
}
.platform-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}
.platform-btn:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.platform-btn svg { width: 20px; height: 20px; fill: currentColor; }
.platform-btn.apple:hover { background: #fc3c44; color: #fff; }
.platform-btn.deezer:hover { background: #a238ff; color: #fff; }
.platform-btn.ytmusic:hover { background: #ff0000; color: #fff; }
.platform-btn.spotify:hover { background: #1db954; color: #fff; }
.platform-btn.amazon:hover { background: #25d1da; color: #000; }

/* ---------- Bio ---------- */
.bio {
  padding: 2rem 0 4rem;
}
.bio h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
  text-align: center;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 1.75rem;
}
.bio-text {
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.85;
  text-align: justify;
}
.bio-text p { margin: 0 0 1.2rem; }
.bio-text strong { color: var(--text-primary); }

/* ---------- Videos ---------- */
.videos { padding: 1rem 0 4.5rem; }
.section-heading {
  text-align: center;
  margin: 0 0 2.25rem;
}
.section-heading h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.2rem);
  font-weight: 800;
  margin: 0 0 0.4rem;
}
.section-heading p {
  color: var(--text-muted);
  margin: 0;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 1.5rem;
}

.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-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  background: #000;
  border: none;
  padding: 0;
  width: 100%;
  display: block;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.video-thumb:hover img { opacity: 1; }
.video-thumb .play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s;
}
.video-thumb:hover .play-btn { transform: translate(-50%, -50%) scale(1.1); }
.video-thumb .play-btn svg { width: 22px; height: 22px; fill: #fff; margin-left: 4px; }

.video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}

.video-card-title {
  padding: 0.85rem 1.1rem;
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--bg-card-hover);
}

/* ---------- Footer ---------- */
#site-footer {
  border-top: 1px solid rgba(0, 212, 255, 0.1);
  background: var(--bg-card);
  padding: 2rem 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-inner p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.scroll-up {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 999;
  border: none;
  cursor: pointer;
}
.scroll-up.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-up svg { width: 18px; height: 18px; fill: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  #main-nav { display: none; }
}

@media (max-width: 767px) {
  .burger { display: flex; }
  .header-actions .social-icons { display: none; }

  #main-nav.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(10, 14, 23, 0.98);
    padding: 1.25rem 24px;
    gap: 1rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.15);
  }

  .logo img { height: 42px; }
  .hero-content { bottom: 14%; }
}
