/* ================= Base ================= */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #0c0c0c;
  color: #fff;
}

/* ================= Logo in Header ================= */
header .logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

header .logo-img {
  width: 40px;      /* slightly smaller for compactness */
  height: 40px;
  object-fit: contain;
}

header .logo-text {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ff3d00;
}

/* ================= Header ================= */
header {
  padding: 15px;             /* smaller padding */
  text-align: center;
  background-color: #111;
  font-size: 2rem;
  font-weight: bold;
  color: #ff3d00;
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

/* ================= Main Disclaimer ================= */
#disclaimer {
  max-width: 700px;           /* slightly narrower */
  margin: 30px auto;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  gap: 16px;                  /* closer spacing */
}

.disclaimer-card {
  background-color: #1a1a1a;
  padding: 14px 16px;         /* smaller padding */
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);  /* lighter shadow */
}

.disclaimer-card h1,
.disclaimer-card h2 {
  color: #ff3d00;
  margin-bottom: 6px;         /* tighter spacing */
  font-size: 1.4rem;
}

.disclaimer-card p {
  line-height: 1.4;           /* more compact */
  font-size: 0.95rem;
  margin-bottom: 6px;
}

/* ================= Buttons ================= */
button, .header-btn {
  background-color: #ff3d00;
  color: #fff;
  border: none;
  padding: 10px 16px;        /* slightly smaller */
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

button:hover, .header-btn:hover {
  transform: scale(1.05);
  background-color: #e63600;
}

.enter-section {
  display: flex;
  justify-content: center;
  margin-top: 16px;          /* smaller top margin */
}

/* ================= Footer ================= */
footer {
  text-align: center;
  padding: 16px;              /* smaller padding */
  background-color: #111;
  color: #888;
  margin-top: 30px;
}

footer a {
  color: #ff3d00;
  text-decoration: none;
  margin: 0 4px;
}

footer a:hover {
  text-decoration: underline;
}

/* ================= Responsive ================= */
@media (max-width: 640px) {
  #disclaimer {
    padding: 0 12px;
  }

  .disclaimer-card h1, .disclaimer-card h2 {
    font-size: 1.2rem;
  }

  .disclaimer-card p {
    font-size: 0.9rem;
  }

  button, .header-btn {
    padding: 8px 14px;
    font-size: 0.9rem;
  }
}

/* ================= Optional Enhancements ================= */
/* Add subtle hover shadow to cards for clarity */
.disclaimer-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.7);
  transform: translateY(-1px);
  transition: all 0.2s ease;
}

/* Make all buttons full width on mobile for easier tapping */
@media (max-width: 480px) {
  button, .header-btn {
    width: 100%;
    text-align: center;
  }
}
