html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
  background: url('/webpage1080x1920.jpg.png') no-repeat center center fixed;
  background-size: cover;
  color: white;
  overflow: auto;
}

/* Global reset */
*, *::before, *::after {
  box-sizing: border-box;
  z-index: auto !important;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  position: sticky;
  top: 0;
  z-index: 10;
}

.account-info {
  text-align: right;
}

/* TAGLINE */
.tagline {
  text-align: center;
  padding: 10px 20px;
  font-size: 1.1rem;
  background: rgba(0, 0, 0, 0.6);
}

/* MAIN CONTAINER */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

/* SECTION BOXES */
.section {
  width: 100%;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.2);
  margin: 20px 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
}

/* SECTION HEADERS */
.section h2 {
  text-align: center;
  font-style: italic;
  text-decoration: underline;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

/* GRID LAYOUT */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  text-align: center;
}

/* BUTTONS */
.menu-btn {
  display: inline-block;
  padding: 12px 20px;
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1px solid white;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.menu-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/* FOOTER STYLES */
.site-footer {
  background: rgba(0, 0, 0, 0.6);
  color: white;
  text-align: center;
  padding: 20px 10px;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 40px;
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-links {
  margin: 10px 0;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: white;
  text-decoration: underline;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: #aaa;
  margin-top: 8px;
}

/* DELETE ACCOUNT POPUPS */

.popup-overlay {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
}

.popup-box {
  background: rgba(20, 20, 20, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.25);
  padding: 24px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  color: white;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.popup-box h3 {
  margin-bottom: 16px;
  font-size: 1.4em;
  color: #ff6666;
}

.popup-box input {
  display: block;
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  background: #222;
  color: #fff;
  border: 1px solid #555;
  border-radius: 6px;
  font-size: 1em;
}

.popup-box button {
  padding: 10px 20px;
  margin: 8px 4px;
  border: none;
  background: #cc0000;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.popup-box button:hover {
  background: #ff3333;
}

.status-msg {
  margin-top: 12px;
  font-size: 0.95em;
  font-weight: bold;
}
