@font-face {
  font-family: 'Minecraft';
  src: url('minecraft_font.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --minecraft-brown: #593d29;
  --minecraft-dark-brown: #3a2921;
  --minecraft-green: #5fa82a;
  --minecraft-yellow: #ffb62f;
  --minecraft-red: #be4d25;
  --minecraft-stone: #7a7a7a;
  --minecraft-dark-stone: #2d2d2d;
}

body {
  background-color: #1f1f1f;
  color: #e0e0e0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

/* Typography */
.minecraft-title, .minecraft-heading, .minecraft-subheading {
  font-family: 'Minecraft', sans-serif;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
}

.minecraft-title {
  color: var(--minecraft-yellow);
  letter-spacing: 1px;
}

.font-geist-mono {
  font-family: 'Minecraft', monospace;
}

/* Minecraft Sections */
.minecraft-section {
  background-color: rgba(50, 50, 50, 0.6);
  border: 4px solid #3b3b3b;
  border-radius: 4px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
}

.minecraft-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, #3b3b3b, #5a5a5a, #3b3b3b);
}

.minecraft-block-header {
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.minecraft-heading {
  color: var(--minecraft-green);
}

.minecraft-content {
  font-size: 1rem;
}

.minecraft-content p {
  margin-bottom: 1rem;
}

/* Lists */
.minecraft-list {
  list-style-type: none;
  padding-left: 0;
}

.minecraft-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.minecraft-list li::before {
  content: '➤';
  position: absolute;
  left: 0;
  color: var(--minecraft-green);
}

/* Tables */
.minecraft-table th {
  background-color: #3b3b3b;
  font-family: 'Minecraft', sans-serif;
  color: var(--minecraft-yellow);
}

/* Collectibles */
.minecraft-collectible {
  background-color: #3b3b3b;
  border: 2px solid #2a2a2a;
  padding: 0.75rem;
  text-align: center;
  border-radius: 4px;
}

.minecraft-item-name {
  font-family: 'Minecraft', sans-serif;
  color: var(--minecraft-yellow);
  font-size: 0.9rem;
}

/* Feedback Panels */
.minecraft-feedback {
  background-color: #2d2d2d;
  border: 2px solid #3b3b3b;
  padding: 1rem;
  border-radius: 4px;
}

.minecraft-feedback-positive h3 {
  color: var(--minecraft-green);
}

.minecraft-feedback-negative h3 {
  color: var(--minecraft-red);
}

/* Stats */
.minecraft-stat-block {
  background-color: #3b3b3b;
  border: 2px solid #2a2a2a;
  padding: 1rem;
  text-align: center;
  border-radius: 4px;
}

.minecraft-stat-value {
  font-family: 'Minecraft', sans-serif;
  color: var(--minecraft-yellow);
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
}

.minecraft-stat-label {
  font-size: 0.9rem;
  color: #a0a0a0;
}

/* Takeaways */
.minecraft-takeaway {
  background-color: #3b3b3b;
  border: 2px solid #2a2a2a;
  padding: 1rem;
  border-radius: 4px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.minecraft-takeaway:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

/* Item Frames */
.minecraft-item-frame {
  background-color: #3b3b3b;
  border: 4px solid #5a5a5a;
  padding: 0.5rem;
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .minecraft-title {
    font-size: 1.75rem;
  }
  
  .minecraft-section {
    padding: 1rem;
  }
  
  .minecraft-stat-value {
    font-size: 1.5rem;
  }
}

/* Minecraft-style scrollbar */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #2d2d2d;
}

::-webkit-scrollbar-thumb {
  background-color: #5a5a5a;
  border: 2px solid #2d2d2d;
  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #6a6a6a;
}
