* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Balthazar", serif;
}

body {
    height: 100vh; /* Fixed typo: 0140vh → 100vh */
    background: url() no-repeat center center/cover fixed; /* Fixed syntax: ur() → url() */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

body::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center,
        rgba(0,0,0,0.2) 40%,
        rgba(0,0,0,0.8) 100%);
    z-index: 0;
}

.container {
  position: relative;
  z-index: 99;
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  gap: 15px;
  width: 120%;
  max-width: 1200px;
  margin: 170px auto 20px; /* Increased top margin to avoid overlap */
  justify-items: center;
}


.bubble {
  padding:08px;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  box-shadow: 0 0 0px rgba(0,0,0,0.0);
  text-align: center;
  transition: all 0.4s ease;
  /* Ensure border and background stay continuous across lines */
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  
}   

.bubble:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: rgb(255, 255, 255);
    box-shadow: 0 0 40px rgb(0, 0, 0);
}

.bubble h2 {
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #ffffff;
    text-shadow: 
        0 0 5px rgba(255,255,255,0.6),
        0 0 10px rgba(255,255,255,0.4); /* Added missing semicolon */
}

.bubble p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 25px;
    line-height: 1.6;
    color: #ffffff;
    text-shadow:
        0 0 4px rgba(255, 255, 255, 0.4); /* Added missing semicolon */
}

.instagram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 22px;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, 0);
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: 0.3s ease;
    background: rgba(255, 255, 255, 0);
}

.telegram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 50px;
    border: 1.5px solid rgb(255, 255, 255, 0);
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: 0.3s ease;
    background: rgb(255, 255, 255, 0);
}

.telegram:hover {
    background: rgba(255,255,255,0.2);
    box-shadow: 0 0 15px rgba(255,255,255,0.3);
}

@media (max-width: 900px) {
    .container {
        grid-template-columns: 1fr;
    }
}

.pfp {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
    transition: 0.3s ease;
}

.bubble:hover .pfp {
    transform: scale(1.08);
    box-shadow: 0 0 30px rgba(255,255,255,0.4);
    border-color: rgba(255, 255, 255, 0.8);
}

video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}

.ascii-art {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  font-family: 'Courier New', Courier, monospace;
  white-space: pre;
  color: #ffffff;
  font-weight: bold;
  text-shadow: 
    0 0 5px #fff,
    0 0 10px #fff,
    0 0 20px #ffffff,
    0 0 30px #ffffff;
  background: transparent;
  padding: 10px 20px;
  border-radius: 8px;
  max-width: 90%;
  text-align: center;
  font-size: 14px;
  opacity: 0.9;
  pointer-events: none;
  animation: blinker 1.5s ease-in-out infinite;
}

@keyframes smooth-blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}   

body {
  overflow: hidden; /* Stops background scroll */
}

.blink {
  animation: smooth-blink 2.5s ease-in-out infinite;
}

@keyframes smooth-blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
} 

body {
  background-color: #0b0b0b; /* Dark background like your image */
  overflow: hidden; /* Prevents scrollbars from the animation */
}

.money-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Allows users to click through the money */
}

.money {
  position: absolute;
  top: -50px;
  color: #fff; /* White dollar signs */
  font-size: 2rem;
  font-family: serif;
  opacity: 0;
  animation: fall 5s linear infinite;
}

/* Individual positioning and delays for variety */
.money:nth-child(1) { left: 10%; animation-delay: 0s; }
.money:nth-child(2) { left: 30%; animation-delay: 2s; }
.money:nth-child(3) { left: 55%; animation-delay: 1s; }
.money:nth-child(4) { left: 75%; animation-delay: 3s; }
.money:nth-child(5) { left: 90%; animation-delay: 0.5s; }

@keyframes fall {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  90% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(110vh) rotate(360deg);
    opacity: 0;
  }
}
  