/* Dungeon Troll Styling – Dong Gambling Ring, LLC™ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700&family=Titillium+Web:wght@400;600&display=swap');

html, body {
  background: #1a1a1a url('https://www.transparenttextures.com/patterns/asfalt-dark.png');
  color: #e0e0e0;
  font-family: 'Titillium Web', sans-serif;
  margin: 0;
  padding: 0;
  overflow: visible;
}

h1, h2, h3 {
  font-family: 'Cinzel', serif;
  color: #bfa75c;
  text-shadow: 0 0 5px #000;
}

.tagline {
  font-size: 1.2em;
  font-style: italic;
  color: #cc3333;
  margin-bottom: 30px;
  text-shadow: 0 0 3px #000;
}

.lol-nav {
  background-color: #111;
  padding: 10px 0;
  border-bottom: 2px solid #bfa75c;
  box-shadow: 0 2px 6px #000;
}

.nav-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  overflow: visible;
}

.nav-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  width: 100%;
  padding: 0 1rem;
}

.nav-items::-webkit-scrollbar {
  display: none;
}

.nav-tab {
  font-family: 'Cinzel', serif;
  font-size: 1.1em;
  color: #bfa75c;
  background-color: #1a1a1a;
  padding: 10px 20px;
  border: 1px solid #444;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  box-shadow: inset 0 0 0 0 #bfa75c;
  white-space: nowrap;
  flex: 0 0 auto;
}

.nav-tab:hover {
  background-color: #2a2a2a;
  color: #fff;
  box-shadow: inset 0 -3px 0 #bfa75c;
}

.nav-tab.active {
  background-color: #333;
  box-shadow: inset 0 -3px 0 #cc3333;
  color: #fff;
}

.dropdown-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dropdown {
  display: none;
  position: absolute;
  flex-direction: column;
  background-color: #111;
  top: 100%;
  left: 0;
  border: 1px solid #444;
  z-index: 9999;
  min-width: 200px;
  padding: 4px 0;
}

.dropdown-container:hover > .dropdown {
  display: flex;
}

.dropdown .nav-tab,
.dropdown-link {
  width: 100%;
  margin: 0;
  border-left: none;
  border-right: none;
  border-radius: 0;
  text-align: left;
  font-size: 0.95em;
}

/* Mobile Styles */
@media (max-width: 1000px) {
  .nav-wrapper {
    flex-direction: column;
  }

  .nav-items {
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 1rem;
  }

  .nav-tab {
    width: 100%;
    margin: 4px 0;
    text-align: left;
  }

  .dropdown {
    position: static;
    border: none;
    padding-left: 1rem;
    box-shadow: none;
  }

  .dropdown-container {
    align-items: flex-start;
  }

  .dropdown-container.open .dropdown {
    display: flex;
  }
}

/* Main Page Styling */
.page-content {
  max-width: 800px;
  width: 100%;
  padding: 20px 20px 40px;
  margin: 0 auto;
  text-align: center;
}

.main-button {
  display: inline-block;
  background-color: #cc3333;
  color: #fff;
  font-family: 'Cinzel', serif;
  font-size: 1.3em;
  padding: 15px 30px;
  margin-top: 30px;
  text-decoration: none;
  border: 2px solid #bfa75c;
  border-radius: 10px;
  box-shadow: 0 0 12px #000;
  transition: all 0.2s ease-in-out;
}

.main-button:hover {
  background-color: #ff4444;
  color: #fff;
  box-shadow: 0 0 20px #cc3333;
  transform: scale(1.05);
}
