/* FONT */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

body {
  margin: 0;
  font-family: 'Press Start 2P', cursive;
  background: #fff8cc; /* soft yellow */
  color: #333;
  overflow-x: hidden;
}

/* BACKGROUND DOTS */
.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#ffd966 1px, transparent 1px);
  background-size: 20px 20px;
  animation: twinkle 6s infinite alternate;
  z-index: -1;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* HEADER */
.header {
  text-align: center;
  padding: 20px;
  background: #ffcc66;
  border-bottom: 4px solid #ffa500;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* CONTAINER GRID */
.container {
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  gap: 15px;
  padding: 20px;
  max-width: 1000px;
  margin: auto;
  align-items: start;
}

/* LEFT SIDEBAR */
.sidebar {
  background: #fff2cc;
  border: 2px dotted #ff9900;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
}

.sidebar h2 {
  margin-top: 0;
  color: #ff6600;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar li {
  margin: 8px 0;
  padding: 5px;
  background: #ffd966;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
}

.sidebar li:hover {
  background: #ffcc66;
}

.sidebar-img {
  margin-top: 10px;
  border-radius: 10px;
}

/* CENTER CONTENT */
.content {
  background: #fff9e0;
  border: 2px dotted #ff9900;
  border-radius: 12px;
  padding: 15px;
}

.main-box {
  background: #fff4cc;
  border: 2px solid #ff9900;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  margin-bottom: 15px;
}

.main-box img {
  max-width: 100%;
  border-radius: 10px;
}

/* FLOATY ANIMATIONS */
.floaty-left {
  animation: floaty-left 3s ease-in-out infinite alternate;
}

.floaty-right {
  animation: floaty-right 4s ease-in-out infinite alternate;
}

@keyframes floaty-left {
  from { transform: translateY(0) translateX(0); }
  to { transform: translateY(-15px) translateX(5px); }
}

@keyframes floaty-right {
  from { transform: translateY(0) translateX(0); }
  to { transform: translateY(-15px) translateX(-5px); }
}

/* EMPTY CHAT BOX */
.chat-box {
  height: 150px;
  background: #fff4cc;
  border: 2px solid #ff9900;
  border-radius: 10px;
}

/* RIGHT SIDEBAR */
.sidebar-right .widget {
  background: #fff2cc;
  border: 2px dotted #ff9900;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 15px;
  text-align: center;
}

.sidebar-right .widget img {
  border-radius: 8px;
  max-width: 80px;
}
/* BOTTOM BADGE FIXED AT BOTTOM */
.bottom-badge {
  position: fixed;   /* stick to bottom */
  bottom: 10px;      /* distance from bottom */
  left: 50%;         /* center horizontally */
  transform: translateX(-50%);
  z-index: 10;
}

.bottom-badge img {
  width: 80px;       /* adjust size if needed */
  cursor: pointer;
  transition: transform 0.3s;
}

.bottom-badge img:hover {
  transform: scale(1.2);
}
