/* Lumina Forge — base layout (navbar, preloader, minecraft font, buttons) */
    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      background-color: #000;
      color: #f1c40f;
      font-family: 'MinecraftTen', sans-serif;
    }
/* Preloader */
    #preloader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #000;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      opacity: 1;
      transition: opacity 1s ease;
    }

    #preloader.fade-out {
      opacity: 0;
      pointer-events: none;
    }

    #loader {
      width: 60px;
      height: 60px;
      border: 6px solid #f1c40f;
      border-top: 6px solid transparent;
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
/* Header */
    header {
      background-color: #000;
      padding: 1rem 2rem;
      border-bottom: 2px solid #f1c40f;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .logo {
      position: relative;
      display: inline-block;
    }

    .logo img {
      height: 50px;
      padding-left: 40%;
      display: block;
      animation: subtleGlow 2s ease-in-out infinite;
    }

    @keyframes subtleGlow {
      0%, 100% {
        filter: drop-shadow(0 0 5px rgba(241, 196, 15, 0.3));
      }
      50% {
        filter: drop-shadow(0 0 15px rgba(241, 196, 15, 0.6));
      }
    }
/* Navigation Bar */
    .navbar-nav {
      gap: 2rem;
      align-items: center;
    }

    .nav-link {
      color: #f1c40f !important;
      font-weight: 500;
      transition: background-color 0.3s ease, color 0.3s ease;
    }

    .nav-link:hover {
      background-color: #fff;
      color: #000 !important;
      border-radius: 5px;
      padding: 0.3rem 0.7rem;
    }

    .dropdown-menu {
      background-color: #111;
      border: none;
      animation: slideDown 0.5s ease-in-out;
    }

    .dropdown-item {
      color: #f1c40f;
      transition: background-color 0.3s ease, color 0.3s ease;
    }

    .dropdown-item:hover {
      background-color: #fff;
      color: #000;
    }

    @keyframes slideDown {
      from { opacity: 0; transform: translateY(-15px); }
      to { opacity: 1; transform: translateY(0); }
    }

/* Section 1 */
    .hero-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      color: #f1c40f;
    }

    .hero-content h1 {
      font-size: 4rem;
      font-weight: 900;
    }

    .hero-content h1 span:last-child {
      color: #000;
    }

    .hero-content .play-btn {
      background-color: #f1c40f;
      border: none;
      color: #000;
      padding: 0.5rem 2.5rem;
      font-size: 1.5rem;
      font-weight: bold;
      border-radius: 5px;
      margin-top: 1.5rem;
      text-decoration: none;
      display: inline-block;
      transition: background-color 0.3s ease, color 0.3s ease;
    }

    .hero-content .play-btn:hover {
      background-color: #fff;
      color: #000;
    }
/* Section 2 */
    .section-title {
      text-align: center;
      margin: 3rem 0 2rem;
      font-size: 2rem;
      color: #f1c40f;
      font-weight: bold;
    }

    .danger-bar {
      background-color: #f1c40f;
      font-size: larger;
      color: #000;
      padding: 0.5rem;
      font-weight: bold;
      text-align: center;
      letter-spacing: 2px;
    }

    .carousel-wrapper {
      padding: 7rem 2rem;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 3rem;
      flex-wrap: wrap;
    }

    .carousel.slide {
      width: 640px;
      border: 3px solid #f1c40f;
      border-radius: 12px;
    }

    .carousel-inner {
      border-radius: 12px;
      overflow: hidden;
    }

    .carousel-inner img {
      width: 100%;
      height: 360px;
      object-fit: cover;
    }

    .carousel-caption {
      padding: 1rem;
      border-radius: 10px;
      left: 5%;
      right: 5%;
      bottom: 10%;
      background: none;
      animation: fadeInUp 1s ease-in-out;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .carousel-caption h5 {
      color: #696969;
      font-size: 1.25rem;
      text-shadow: #000;
    }

    .carousel-caption p {
      font-size: 0.9rem;
      color: #606060;
      text-shadow: #000;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-color: #222;
      border-radius: 50%;
      padding: 1rem;
      border: 2px solid #333;
      color: #f1c40f;
    }

    .carousel-indicators [data-bs-target] {
      background-color: #f1c40f;
    }

    @media (max-width: 768px) {
      .carousel.slide {
        width: 100%;
      }
      .carousel-inner img {
        height: auto;
      }
    }
/* Footer */
.footer-container {
  color: gold;
  font-weight: 400 !important;
  letter-spacing: 1px;
}
.footer-link {
  color: rgba(108, 108, 108, 0.8);
  text-decoration: none;
  transition: color .2s;
  font-weight: 400 !important;
}
.footer-link:hover {
  color: gold;
}

/* Cookie banner */
.cookie-banner {
  backdrop-filter: blur(4px);
  color: rgb(255, 255, 255);
  font-weight: 400 !important;
  letter-spacing: 1px;
}
.cookie-banner a {
  color: gold;
  text-decoration: underline;
  font-weight: 400 !important;
  letter-spacing: 1px;
}
.btn-outline-info {
  border-color: #f1c40f !important;
  color: #f1c40f !important;
}
.btn-outline-info:hover {
  background-color: #f1c40f !important;
  color: #000 !important;
}