body {
  font-family: 'Inter', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding: 70px 20px 20px;
  background: #FFFFF2;
  margin: 0;
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFFFF2;
  z-index: 15;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  padding: 0 10px;
}

.top-bar-inner {
  width: 100%;
  max-width: 600px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  padding: 0 20px;
}

.top-bar-logo { height: 30px; width: auto; }

#container {
  width: 100%;
  max-width: 600px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  padding: 15px;
  box-sizing: border-box;
  text-align: center;
}

.slider {
  position: relative;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  margin-top: 10px;
}

.slide-wrapper {
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  position: relative;
}

.slide-wrapper img {
  width: 100%;
  height: auto;
  display: none;
  border-radius: 10px;
}

.slide-wrapper img.active { display: block; }

.arrow {
  position: absolute;
  top: 10px;
  background: rgba(255,255,255,0.7);
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 50%;
  user-select: none;
  transition: background 0.2s, transform 0.1s;
  z-index: 5;
}

.arrow:hover { background: rgba(255,255,255,0.9); transform: scale(1.05); }
.arrow-left { left: 10px; }
.arrow-right { right: 10px; }

h2 { font-size: 1.2rem; color: #444; margin: -5px 0 8px; line-height: 1.4; }

.bottom-caption {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.4;
  min-height: 1.2em;
  text-align: left;
  padding-left: 5px;
  }