:root {
  --primary: #D4AF37; /* Gold */
  --primary-hover: #b8972e;
  --bg-color: #0B1410; /* Dark green/charcoal */
  --bg-card: #15251C; /* Lighter dark green */
  --text-main: #F4F1EA;
  --text-muted: #A8B2AC;
  --border-color: rgba(212, 175, 55, 0.2);
  --font-family: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.3s ease-in-out;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: color var(--transition);
}

a:hover {
  color: var(--primary-hover);
}

ul {
  list-style: none;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(11, 20, 16, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-family);
  font-size: 1.8rem;
  color: var(--primary);
  font-weight: bold;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-main);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.nav-links a:hover {
  color: var(--primary);
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--primary);
  color: var(--bg-color);
  font-weight: 600;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  appearance: none; /* Removes native OS styling */
  -webkit-appearance: none;
}

.btn:hover:not(:disabled) {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  color: var(--bg-color);
}

.btn:disabled {
  background: #2a3b32 !important; /* Muted green/gray */
  color: #7a8c82 !important; /* Muted text */
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  opacity: 1 !important;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover:not(:disabled) {
  background: var(--primary);
  color: var(--bg-color);
}

/* Footer */
.footer {
  background: #080E0B;
  padding: 4rem 5% 2rem;
  border-top: 1px solid var(--border-color);
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col a {
  color: var(--text-muted);
}

.footer-col a:hover {
  color: var(--primary);
}

.compliance-block {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin: 2rem 0;
}

.compliance-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.compliance-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.5;
}

.compliance-text strong {
  color: var(--primary);
}

.compliance-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
}

.compliance-logos img {
  height: 36px;
  opacity: 0.8;
  transition: opacity var(--transition);
}

.compliance-logos a:hover img {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  max-width: 500px;
  width: 90%;
  text-align: center;
  transform: translateY(20px);
  transition: all var(--transition);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-title {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.modal-text {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
  margin-bottom: 2rem;
}

.checkbox-group input {
  margin-top: 0.3rem;
  accent-color: var(--primary);
}

.checkbox-group label {
  color: var(--text-main);
  font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: var(--bg-card);
  padding: 1.5rem 5%;
  border-top: 1px solid var(--border-color);
  z-index: 1500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: bottom var(--transition);
}

.cookie-banner.active {
  bottom: 0;
}

.cookie-text {
  max-width: 70%;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Typography Pages */
.page-header {
  padding: 8rem 5% 4rem;
  background: linear-gradient(to bottom, #080E0B, var(--bg-color));
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 5%;
}

.page-content h2 {
  color: var(--primary);
  margin: 2rem 0 1rem;
}

.page-content p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

/* Mobile */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .cookie-text {
    max-width: 100%;
  }
}
