* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url('.jpg'); 
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000;
    min-height: 100vh;
    overflow: hidden; 
    
    /* Zorgt voor het bewegende (inzoomen) effect van de achtergrond */
    animation: moveBackground 20s infinite alternate ease-in-out;
}

/* Zorg dat de basis overal transparant is zodat de video zichtbaar blijft */
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: transparent !important;
  color: #fff;
  font-family: sans-serif;
}

/* Zorg dat de video altijd over het gehele scherm vast blijft staan, ook tijdens het scrollen */
.page-bg-video, .bg-video {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100vw !important;
  height: 100vh !important;
  object-fit: cover !important;
  z-index: -9999 !important;
}

/* De animatie voor de achtergrond */
@keyframes moveBackground {
    0% { background-size: 100%; }
    100% { background-size: 115%; }
}

.main-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Zet de knoppen onderaan */
    align-items: center;
    padding-bottom: 50px;
}

/* Styling van de knoppen (Desktop) */
.nav-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 900px; /* Houdt de groep mooi compact bij elkaar */
    margin: 0 auto;
}

.vibe-button {
    width: auto !important; /* Forceert de knop om strak om de tekst te krimpen */
    flex: 0 1 auto !important;
    text-decoration: none;
    color: #ffd700;
    text-shadow: 0 0 5px currentColor;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 16px;
    padding: 15px 30px;
    border: 2px solid #ffd700; 
    border-radius: 30px;
    background: rgba(20, 0, 40, 0.7);
    box-shadow: 0 0 10px #ffd700, 0 0 20px rgba(255, 215, 0, 0.5);
    transition: all 0.3s ease;
}

.vibe-button:hover {
    background: rgba(255, 215, 0, 0.15); /* Subtiele gouden achtergrond bij hover */
    
    /* Drievoudige, intense gouden gloed als je er met de muis over gaat */
    box-shadow: 0 0 15px #ffd700, 0 0 30px #ffd700, 0 0 50px rgba(255, 215, 0, 0.8);
    transform: scale(1.1); 
}

/* --- STYLING VOOR DE ART PAGINA --- */
.Art-page {
    /* Vul hier de naam in van je vette nieuwe achtergrond! */
    background-image: url('babyvibeart.jpg'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* We zetten scrollen aan, want je krijgt vast veel video's */
    overflow-y: auto; 
    animation: none; /* Zet de inzoom-animatie uit op deze pagina */
}

.gallery-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px;
}

.gallery-title {
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 3em;
    margin-bottom: 40px;
    text-shadow: 0 0 10px #00e5ff, 0 0 20px #00e5ff;
}

.video-grid {
    display: grid;
    /* Dit is magie: het zorgt dat video's netjes naast elkaar staan, 
       en onder elkaar op mobiel! */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1200px;
}

.video-item video {
    width: 100%;
    border: 3px solid #00e5ff; /* Cyaan randje om de video's */
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
    background-color: #000;
}

/* Container vast onderaan het scherm */
.video-banner-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 20px;
  padding: 10px 0;
}

.video-banner-track {
  display: flex;
  gap: 15px;
  width: max-content;
  animation: scrollBanner 30s linear infinite;
}

/* Deze regel pakt nu alle video's en iframes aan */
.banner-item {
  width: 320px;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 0 10px #00fffb, 0 0 20px rgba(0, 229, 255, 0.5);
  flex-shrink: 0;
  border: none;
}

@keyframes scrollBanner {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Miniatuur video's in de banner */
.banner-video {
  height: 120px;
  border: 2px solid #00e5ff;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
  object-fit: cover;
}

.banner-video:hover {
  transform: scale(1.05); 
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.8);
}

/* Modal (Pop-up) styling */
.modal {
  display: none; 
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
}

/* De grote video in het midden van de pop-up */
#modalVideo {
  max-width: 90%;
  max-height: 90%;
  border: 4px solid #00e5ff;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.5);
}

/* Sluitknop van de pop-up */
.close-modal {
  position: absolute;
  top: 30px;
  right: 50px;
  color: #00e5ff;
  font-size: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.close-modal:hover {
  color: #ff00aa;
}

/* --- TERUGKNOP (Gouden ANONCOIN stijl) --- */
.back-button {
    position: fixed; 
    top: 25px;
    left: 25px;
    text-decoration: none;
    color: #ffd700;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 14px;
    padding: 10px 20px;
    border: 2px solid #ffd700;
    border-radius: 20px;
    background: rgba(20, 0, 40, 0.8);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    z-index: 200;
    transition: all 0.3s ease;
}

.back-button:hover {
    background: #ffd700;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 215, 0, 1);
    transform: scale(1.05);
}

/* --- ACHTERGROND VOOR DE VIDEO ROOM --- */
body.art-page {
  background-image: url('.jpg'); 
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin: 0;
  padding: 0;
  background-color: #000;
}



/* --- DE LOPENDE VIDEO BANNER ONDERAAN --- */
.video-banner-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10;
}

.video-banner-track {
  display: flex;
  gap: 15px;
  width: max-content;
  animation: scrollBanner 30s linear infinite;
}

/* Dit dwingt alle video's en iframes naar klein formaat */
.banner-item {
  width: 320px !important;
  height: 180px !important;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 0 10px #00fffb, 0 0 20px rgba(0, 229, 255, 0.5);
  flex-shrink: 0;
  border: none;
  display: block;
}

@keyframes scrollBanner {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- POP-UP MODAL --- */
.modal {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 100;
  justify-content: center;
  align-items: center;
}

#modalVideo {
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0 0 20px #00fffb;
  border-radius: 10px;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #00fffb;
  font-size: 40px;
  cursor: pointer;
}

/* --- ACHTERGROND VOOR DE VC PAGINA --- */
body.vc-page {
  background-image: url('.jpg'); 
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin: 0;
  padding: 0;
  background-color: #000;
  color: white;
  font-family: sans-serif;
}

/* --- LOPENDE AUDIO BANNER ONDERAAN --- */
.audio-banner-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10;
}

.audio-banner-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollBanner 30s linear infinite;
}

/* Pauzeer het scrollen als de muis erop staat */
.audio-banner-track:hover {
  animation-play-state: paused;
}

.audio-card {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #00fffb;
  border-radius: 12px;
  padding: 15px;
  width: 250px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
  flex-shrink: 0; 
}

.audio-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.audio-card h3 {
  color: white;
  font-size: 16px;
  margin: 10px 0;
  text-shadow: 0 0 5px #00fffb;
}

audio {
  width: 100%;
  height: 40px;
  outline: none;
}

/* --- GOUDEN ANONCOIN KNOP (Premium Design) --- */
.gold-button {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #111, #2a2200); /* Donkere achtergrond met subtiele gouden gloed */
  border: 2px solid #ffd700;
  color: #ffd700;
  display: flex;
  flex-direction: column; /* Zet de tekst netjes onder elkaar */
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font-family: sans-serif;
  border-radius: 12px;
  padding: 12px 20px; /* Maakt er een mooie klikbare rechthoek van */
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4), inset 0 0 10px rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 100;
}

.gold-button strong {
  font-size: 18px;
  letter-spacing: 1px;
  text-shadow: 0 0 5px #ffd700;
}

.gold-subtext {
  font-size: 11px;
  color: #fff;
  margin-top: 4px;
  opacity: 0.8;
}

.gold-button:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.8), inset 0 0 15px rgba(255, 215, 0, 0.4);
  background: linear-gradient(135deg, #1a1a1a, #403300);
}

/* =========================================
   LIVE CHART PAGINA (Gouden Luxe Design)
   ========================================= */
.chart-body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  /* Pas hieronder de naam aan naar jouw opgeslagen achtergrondafbeelding */
  background: url('.jpg') no-repeat center center fixed;
  background-size: cover;
  font-family: sans-serif;
  color: #fff;
  overflow-y: auto !important; /* Forceert de scrollbalk aan */
}

.chart-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start; /* Laat hem los uit het midden, zodat je kunt scrollen */
  min-height: 100vh;
  padding: 120px 20px 80px 20px; /* Zorgt dat hij iets lager begint */
  box-sizing: border-box;
}

/* De Gouden Omlijsting */
.gold-chart-box {
  width: 100%;
  max-width: 700px;
  background: rgba(10, 10, 15, 0.88);
  backdrop-filter: blur(10px);
  border: 2px solid #ffd700;
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.45), inset 0 0 15px rgba(255, 215, 0, 0.15);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.gold-chart-box:hover {
  box-shadow: 0 0 35px rgba(255, 215, 0, 0.7), inset 0 0 20px rgba(255, 215, 0, 0.25);
}

/* Header boven de chart */
.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: linear-gradient(90deg, rgba(255, 215, 0, 0.15), rgba(0, 0, 0, 0.5));
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

.chart-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: #ffd700;
}

/* Knipperend groen live bolletje */
.live-dot {
  width: 10px;
  height: 10px;
  background-color: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 8px #00ff88;
  animation: pulse-live 1.5s infinite;
}

@keyframes pulse-live {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.85); }
  100% { opacity: 1; transform: scale(1); }
}

.chart-external-link {
  color: #ffd700;
  text-decoration: none;
  font-size: 13px;
  border: 1px solid rgba(255, 215, 0, 0.5);
  padding: 5px 12px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.chart-external-link:hover {
  background: #ffd700;
  color: #000;
}

/* Insluiten van de DexScreener grafiek */
.iframe-container {
  width: 100%;
  height: 380px; /* Hoogte verlaagd zodat hij compacter is */
}

.iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* =========================================
   BUY ROOM PAGINA (Neon Groen Design)
   ========================================= */
.buy-body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: url('.jpg') no-repeat center center fixed;
  background-size: cover;
  font-family: sans-serif;
  color: #fff;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
}

.buy-wrapper {
  display: flex;
  justify-content: flex-end; /* Verplaatst het hele blok naar rechts */
  align-items: flex-start;
  min-height: 100vh;
  padding: 140px 40px 50px 20px; /* Rechts wat meer ruimte (40px) voor een strakke marge */
  box-sizing: border-box;
}

/* De Buy Box (Dark Glass met Neon Groen) */
.buy-box {
  width: 100%;
  max-width: 440px; /* Precies breed genoeg voor de terminal */
  background: rgba(10, 10, 15, 0.90);
  backdrop-filter: blur(12px);
  border: 2px solid #00ff88;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0, 255, 136, 0.4), inset 0 0 15px rgba(0, 255, 136, 0.1);
  overflow: hidden;
}

.buy-header {
  text-align: center;
  padding: 20px;
  border-bottom: 1px solid rgba(0, 255, 136, 0.3);
  background: linear-gradient(180deg, rgba(0, 255, 136, 0.15), transparent);
}

.buy-header h2 {
  margin: 0 0 8px 0;
  color: #00ff88;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
  font-size: 24px;
}

.buy-header p {
  margin: 0;
  font-size: 14px;
  color: #ddd;
}

#jupiter-terminal {
  width: 100%;
  min-height: 480px; /* Geeft genoeg ruimte voor de Jupiter widget */
}

/* =========================================
   TOKEN INFO PAGINA (Neon Groen Design)
   ========================================= */
.token-body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: url('.jpg') no-repeat center center fixed;
  background-size: cover;
  font-family: sans-serif;
  color: #fff;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
}

.token-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding: 140px 20px 50px 20px; /* Van 100px naar 140px gezet zodat hij lager komt */
  box-sizing: border-box;
}

.token-box {
  width: 100%;
  max-width: 550px;
  background: rgba(10, 10, 15, 0.90);
  backdrop-filter: blur(12px);
  border: 2px solid #00ff88;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0, 255, 136, 0.4), inset 0 0 15px rgba(0, 255, 136, 0.1);
  padding: 25px;
  box-sizing: border-box;
}

.token-header {
  text-align: center;
  margin-bottom: 25px;
}

.token-header h2 {
  margin: 0 0 8px 0;
  color: #00ff88;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
  font-size: 26px;
}

.token-header p {
  margin: 0;
  font-size: 14px;
  color: #ddd;
}

/* Statistieken Raster */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 25px;
}

.stat-card {
  background: rgba(0, 255, 136, 0.05);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 12px;
  padding: 15px;
  text-align: center;
}

.stat-label {
  display: block;
  font-size: 13px;
  color: #aaa;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-value {
  font-size: 18px;
  font-weight: bold;
  color: #00ff88;
  text-shadow: 0 0 8px rgba(0, 255, 136, 0.4);
}

/* Contract Adres Blok */
.ca-container {
  margin-bottom: 20px;
}

.ca-title {
  display: block;
  font-size: 13px;
  color: #aaa;
  margin-bottom: 8px;
}

.ca-box {
  display: flex;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #00ff88;
  border-radius: 10px;
  overflow: hidden;
}

.ca-box input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  padding: 12px;
  font-size: 13px;
  outline: none;
}

.ca-box button {
  background: #00ff88;
  color: #000;
  border: none;
  padding: 0 20px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
}

.ca-box button:hover {
  background: #00cc6a;
  box-shadow: 0 0 10px #00ff88;
}

/* Mini DexScreener info embed */
.token-embed-container {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 136, 0.3);
}

.token-embed-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Achtergrond Video voor de Hoofdpagina */
.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -999; /* Zorgt dat de video netjes achter al je knoppen blijft draaien */
}

/* Universele geluidloze achtergrondvideo voor alle pagina's */
.page-bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -999; /* Dwingt de video om muisstil achter alle inhoud en glazen boxen te blijven */
}

/* Zorgt dat de YouTube banner-items klikbaar worden binnen de animatie */
.banner-item-wrapper {
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.banner-item-wrapper iframe {
  pointer-events: none; /* Zorgt dat YouTube de muisklik niet blokkeert */
}

/* Container rondom de YouTube banner-item */
.banner-item-wrapper {
  position: relative;
  display: inline-block;
}

/* Onzichtbare klik-laag die bovenop de YouTube video ligt */
.click-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 10;
}

/* =========================================
   THE LORE PAGINA - STYLING & SCROLLER
   ========================================= */

/* De vaste glazen container aan de linkerkant */
.lore-scroll-container {
  position: absolute;
  left: 50px;
  top: 100px;
  bottom: 50px;
  width: 550px;
  max-width: 90vw;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(12px);
  border: 2px solid #00ff88;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.4), inset 0 0 15px rgba(0, 255, 136, 0.1);
  overflow: hidden;
  box-sizing: border-box;
}

/* Het element dat automatisch langzaam door de box beweegt */
.lore-scroller {
  position: absolute;
  width: 100%;
  padding: 40px;
  box-sizing: border-box;
  animation: scrollLore 70s linear infinite;
}

/* Pauzeer de beweging als je met de muis over de box hangt */
.lore-scroll-container:hover .lore-scroller {
  animation-play-state: paused;
}

/* Stijlen voor de tekst binnen de box */
.lore-text-block {
  color: #d1d5db;
}

.lore-text-block h2 {
  color: #00ff88;
  font-size: 22px;
  font-weight: 700;
  margin-top: 35px;
  margin-bottom: 12px;
  text-shadow: 0 0 12px rgba(0, 255, 136, 0.6);
  letter-spacing: 0.5px;
  border-left: 3px solid #00ff88;
  padding-left: 10px;
}

.lore-text-block p {
  font-size: 14.5px;
  line-height: 1.8;
  color: #9ca3af;
  margin-bottom: 20px;
}

.lore-text-block .lore-quote {
  background: rgba(0, 255, 136, 0.05);
  border: 1px dashed rgba(0, 255, 136, 0.3);
  padding: 15px;
  border-radius: 10px;
  color: #fff;
  font-style: italic;
  margin: 20px 0;
  text-align: center;
  box-shadow: inset 0 0 10px rgba(0, 255, 136, 0.05);
}

.lore-text-block strong {
  color: #00ff88;
  font-weight: 600;
}

/* Ananimatie: start direct in beeld en rolt rustig door */
@keyframes scrollLore {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-100%);
  }
}

/* --- HOW TO BUY POP-UP --- */
.how-to-buy-btn {
  margin-top: 15px;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
}

.text-modal {
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(15px);
  border: 2px solid #ffd700;
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  color: #fff;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
  position: relative;
  text-align: left; /* Zorgt dat de lijst netjes links uitlijnt */
}

.text-modal h2 {
  color: #ffd700;
  margin-top: 0;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.text-modal ul {
  list-style-type: none;
  padding: 0;
}

.text-modal li {
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 1.6;
  border-left: 2px solid #00ff88;
  padding-left: 15px;
}

.text-modal a {
  color: #00ff88;
  text-decoration: none;
  font-weight: bold;
}

.text-modal a:hover {
  text-shadow: 0 0 8px #00ff88;
}

.close-text-modal {
  position: absolute;
  top: 15px;
  right: 25px;
  color: #ffd700;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.close-text-modal:hover {
  color: #fff;
  text-shadow: 0 0 15px #ffd700;
}

/* --- CONTAINER VOOR LINKSE KNOPPEN (Desktop Subpagina's) --- */
.top-buttons-container {
  position: fixed;
  top: 25px;
  left: 25px;
  display: flex;
  align-items: center;
  gap: 15px; /* Nette vaste ruimte tussen terugknop en muziekknop */
  z-index: 200;
}

/* Zorg dat de knoppen binnen de container losse flex-items worden */
.top-buttons-container .back-button,
.top-buttons-container .music-btn {
  position: static !important;
  top: auto !important;
  left: auto !important;
}

/* Voor de homepage waar alleen de muziekknop los staat */
.music-floater-home {
  position: fixed;
  top: 25px;
  left: 25px;
  z-index: 200;
}

.music-btn {
  background: rgba(20, 0, 40, 0.8);
  backdrop-filter: blur(10px);
  border: 2px solid #ffd700;
  color: #ffd700;
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 14px; /* Zelfde formaat als de terugknop */
  padding: 10px 18px; /* Zelfde padding */
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  /* Maakt hem lekker 'excited' met een subtiele pulse-animatie */
  animation: vibePulse 2s infinite ease-in-out;
}

.music-btn:hover {
  background: #ffd700;
  color: #000;
  box-shadow: 0 0 25px rgba(255, 215, 0, 1);
  transform: scale(1.08);
}

/* Speelse pulse-animatie voor de muziekknop */
@keyframes vibePulse {
  0% { box-shadow: 0 0 8px rgba(255, 215, 0, 0.4); }
  50% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.9), inset 0 0 8px rgba(255, 215, 0, 0.4); }
  100% { box-shadow: 0 0 8px rgba(255, 215, 0, 0.4); }
}

.video-banner-track, .audio-banner-track {
  cursor: grab;
  user-select: none; /* Voorkomt dat tekst/afbeeldingen geselecteerd worden tijdens het slepen */
}

.video-banner-track:active, .audio-banner-track:active {
  cursor: grabbing;
}

/* =========================================
   PORTFOLIO TRACKER PAGINA
   ========================================= */
.tracker-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 100px 20px 50px 20px;
    box-sizing: border-box;
}

.tracker-box {
    width: 100%;
    max-width: 400px;
    background: rgba(10, 10, 15, 0.90);
    backdrop-filter: blur(12px);
    border: 2px solid #00ff88;
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.4), inset 0 0 15px rgba(0, 255, 136, 0.1);
    padding: 30px 20px;
    text-align: center;
}

.tracker-logo {
    width: 100px;
    border-radius: 50%;
    box-shadow: 0 0 15px #00ff88;
    margin-bottom: 15px;
    border: 2px solid #00ff88;
}

.tracker-box h2 {
    color: #fff;
    margin-bottom: 20px;
}

.neon-text {
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
}

.input-section {
    margin: 25px 0;
    text-align: left;
}

.input-section label {
    display: block;
    color: #aaa;
    font-size: 14px;
    margin-bottom: 8px;
}

.input-section input {
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid #00ff88;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    outline: none;
    box-sizing: border-box;
}

.input-section input:focus {
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.total-value-box {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 12px;
    padding: 15px;
    margin-top: 20px;
}

/* =========================================
   MOBIELE VERSIE (Alleen voor telefoons)
   ========================================= */
@media (max-width: 768px) {

  /* 1. Algemene fix voor scrollen en achtergrond */
  html, body {
    min-height: 100vh !important;
    height: auto !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  /* 2. Startscherm knoppen */
  .main-container {
    justify-content: flex-end !important;
    padding-bottom: 85px !important;
  }
  
  .nav-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px !important;
    padding: 0 15px;
  }
  
  .vibe-button {
    width: 45% !important; /* Dit geldt nu écht alleen voor mobiel */
    max-width: none !important;
    margin: 0 !important;
    padding: 10px 8px !important;
    font-size: 12px !important;
    border-width: 1px !important;
  }

  /* 3. De Lore Box */
  .lore-scroll-container {
    left: 10% !important;
    width: 80% !important;
    top: 18% !important;
    bottom: 15% !important;
    border-radius: 12px !important;
  }
  .lore-scroller {
    padding: 15px !important;
  }
  .lore-text-block h2 { font-size: 16px !important; margin-top: 5px !important; }
  .lore-text-block p { font-size: 12px !important; line-height: 1.4 !important; margin-bottom: 10px !important; }

  /* 4. Buy Room, Token Info & Live Chart */
  .buy-wrapper, .token-wrapper, .chart-wrapper {
    padding: 110px 0 60px 0 !important; 
    justify-content: flex-start !important; 
  }
  .buy-box, .token-box, .gold-chart-box {
    width: 80% !important;
    max-width: 80% !important;
    padding: 15px !important;
    margin: 0 auto !important; 
    border-radius: 12px !important;
  }
  .buy-header h2, .token-header h2 { font-size: 18px !important; margin-bottom: 5px !important; }
  
  /* 5. Iframe voor de chart */
  .iframe-container {
    height: 380px !important;
  }

  /* 6. Bovenste knoppen */
  .top-buttons-container {
    top: 15px !important;
    left: 15px !important;
    gap: 10px !important; 
  }
  .back-button, .music-btn {
    padding: 6px 10px !important;
    font-size: 11px !important;
    border-width: 1px !important;
  }
  .gold-button {
    top: 15px !important;
    right: 15px !important;
    padding: 6px 10px !important;
    border-width: 1px !important;
  }
  .gold-button strong { font-size: 12px !important; }
  .gold-subtext { font-size: 8px !important; }

  /* 7. Overige media */
  .audio-card { width: 140px; padding: 10px; }
  .banner-item { width: 180px !important; height: 100px !important; }
  .vc-container { margin-top: 70px; }
  .vc-container h1 { font-size: 20px; }

} /* <-- Dit is het magische sluithaakje dat alles netjes oplost! */