body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #fceabb, #f8b500);
  color: #333;
  text-align: center;
}

header {
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.6);
  border-bottom: 3px solid #f8b500;
}

h1 {
  margin: 0;
  font-size: 2.5rem;
}

.container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem;
}

.intro {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.image-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.boba-image img {
  width: 200px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.animate-bounce {
  animation: bounce 1s infinite alternate;
}

@keyframes bounce {
  from { transform: translateY(0); }
  to { transform: translateY(-15px); }
}

footer {
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}


.rickroll-scroll {
  margin: 2rem 0;
  padding: 1rem;
  background: #fff5f5;
  border-radius: 12px;
}

.rickroll-scroll h2 {
  margin-bottom: 1rem;
  text-align: center;
  font-size: 1.5rem;
}

.rickroll-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}


.rickroll-container {
  display: flex;
  gap: 1rem;
  animation: scrollRickroll 20s linear infinite;
  width: max-content;
}

@keyframes scrollRickroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.rickroll-container iframe {
  width: 300px;
  height: 169px;
  flex-shrink: 0;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* ts is suppose to help with mobile shi */
@media (max-width: 768px) {
  .container {
    grid-template-columns: 1fr;
  }
}
