/* Main */

body {
  line-height: 1.6;
  background: linear-gradient(to bottom right, #f5f7fa 0%, #e4e8ec 100%);
  color: #333;
  margin: 30px;
  padding: 0;
  min-height: 100vh;
}

.side-by-side {
  display: flex;
  
  div {
    margin: 5px;
  }
}

.sub-one {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  
  h2 {
    width: 100%;
  }
}

.sub-two {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  
  h3 {
    width: 100%;
  }
}

.sub-three {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  
  h4 {
    width: 100%;
  }
}

/* Headers */

h1, h2, h3, h4 {
  font-family: sans-serif;
  border: 1px solid lightblue;
  text-align: center;
  background-color: teal;
  background: linear-gradient(to bottom, teal, blue, teal);
  color: white;
  
  a {
    color: white;
    text-decoration: none;
  }
}

h2 {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(to right, teal, blue, teal);
}

h3 {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(to right, teal, blue, teal);
}

/* Tables */
table {
  width: 100%;
  border-collapse: separate; /* Lets our shadows breathe */
  border-spacing: 0;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); /* Soft floating effect */
}

th {
  border: 1px solid;
  background: linear-gradient(135deg, green 50%, blue);
  color: white;
  padding: 16px;
  text-align: left;
  font-weight: 600;
  letter-spacing: 0.5px;
}

td {
  border: 1px solid;
  padding: 14px 16px;
  border-bottom: 1px solid #e2e8f0;
  transition: all 0.2s ease; /* For smooth hover effects */
}

tr:hover td {
  background-color: #f8fafc;
  transform: translateX(4px); /* Subtle nudge on hover */
}

tr:nth-child(even) {
  background-color: #f9f9f9;
}

@media (max-width: 768px) {
  table {
    box-shadow: none;
    border-radius: 0;
  }
  
  th {
    padding: 12px;
  }
  
  td {
    padding: 10px 12px;
  }
}

/* Lists */

/* Navigation */

ul {
  list-style: none;
  padding: 0;
  margin: 2rem auto;
  font-family: 'Segoe UI', sans-serif;
}

li {
  padding: 1.2rem 1.8rem;
  margin: 0.8rem 0;
  border: 1px solid green;
  background: rgba(255, 255, 255, 0.9);
  border-left: 5px solid green;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

li:hover {
  border-left-width: 8px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.2);
}

.directory {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 10px;
  margin: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  
  .directory-section li {
    padding: 0;
    list-style: none;
    position: relative;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    margin: 0px;
    border-top: 0px;
    border-bottom: 0px;
  }
  
  .directory-section a {
    display: block;
    padding: 5px 24px;
    font-weight: 500;
    position: relative;
    z-index: 2;
  }

  .directory-section li:hover {
    transform: translateX(8px);
  }
}

/* Age Verification Popup */

.textAreaContent {
  width: 100%;
}

.age-verification {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  h2 {
    margin: 0px;
  }
}

.age-check-popup {
  background-color: white;
  position: relative;
}

.age-check-popup-content {
   padding: 0px 10px 20px 10px;
   border: 1px solid black;
}

.blocking-layer {
  backdrop-filter: blur(10px);
  position: absolute;
  width: 100%;
  height: 100%;
}