body {
  background-color: #111;
  margin: 0;
  font-family: 'Share Tech Mono', monospace;
  color: #fff;
}

.container {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

h1 {
  text-align: center;
  font-size: 2.5rem;
  color: #eee;
  margin-bottom: 40px;
}


.theme-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.theme-button {
  background-color: #222;
  border: 2px solid #444;
  color: #fff;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.theme-button.active,
.theme-button:hover {
  background-color: #444;
  border-color: #888;
}


.content-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}


.image-viewer {
  display: flex;
  align-items: center;
  gap: 20px;
}

.image-viewer img.main-img {
  max-width: 80vw;
  max-height: 60vh;
  border-radius: 10px;
  border: 2px solid #333;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.arrow-btn {
  font-size: 2rem;
  background: none;
  border: none;
  color: #ccc;
  cursor: pointer;
  transition: color 0.2s;
}

.arrow-btn:hover {
  color: #fff;
}


.preview-box {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.preview-box img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border: 2px solid #333;
  border-radius: 6px;
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.2s;
}

.preview-box img.active-preview,
.preview-box img:hover {
  opacity: 1;
  transform: scale(1.05);
}
.internal-buttons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-button {
  background-color: #222;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  font-size: 1rem;
  border: 2px solid #555;
  border-radius: 8px;
  transition: background-color 0.3s, color 0.3s, transform 0.2s;
}

.nav-button:hover {
  background-color: #444;
  color: #f8f8f8;
  transform: scale(1.05);
}
.gif-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.gif-item {
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}
.theme-description {
  margin-top: 1.5rem;
  font-size: 1.5rem;
  color: #ccc;
  text-align: center;
  font-style: italic;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}