/* ============================================================
   ASIAN BIG WINNER — legal.css (shared for all legal pages)
   ============================================================ */

:root {
  --orange: #FF7700;
  --dark: #1A2A3A;
  --cream: #FDF8F0;
  --green: #1B5E20;
  --dust: #888888;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background: var(--dark);
  font-family: 'Inter', sans-serif;
  padding: 40px 24px;
  min-height: 100vh;
}

.wrap {
  max-width: 800px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: 8px;
  padding: 48px;
}

.top-line {
  height: 4px;
  background: var(--orange);
  border-radius: 4px;
  margin-bottom: 32px;
}

h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  color: #1A2A3A;
  margin-bottom: 6px;
}

.date {
  color: #888;
  font-size: 13px;
  margin-bottom: 24px;
}

h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #1A2A3A;
  margin: 24px 0 8px;
}

p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 12px;
}

a.back {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--orange);
  text-decoration: none;
  font-size: 14px;
}

a { color: var(--orange); }

/* Language switcher */
.lang-bar { display: flex; gap: 10px; margin-bottom: 24px; }
.lang-btn {
  background: none;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 4px 10px;
  font-size: 12px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
}
.lang-btn.active { border-color: var(--orange); color: var(--orange); }

/* Section visibility */
.section { display: none; }
.section.active { display: block; }

/* Tables (cookies page) */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
}
th {
  background: #eee;
  padding: 8px 12px;
  text-align: left;
  font-weight: 600;
}
td { padding: 8px 12px; border-top: 1px solid #ddd; }
.required { color: #1B5E20; font-weight: 600; }
.consent-req { color: #CC2200; font-weight: 600; }

/* Free badge (subscription-terms) */
.free-badge {
  display: inline-block;
  background: #1B5E20;
  color: #fff;
  border-radius: 4px;
  padding: 4px 12px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

/* Help boxes (responsible-play) */
.help-box {
  background: rgba(27,94,32,0.1);
  border-left: 4px solid var(--green);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  margin: 16px 0;
}
.help-box strong {
  color: var(--green);
  display: block;
  margin-bottom: 4px;
}
.help-box p { margin-bottom: 6px; color: #2a4a2a; }

/* Rush note */
.rush-note {
  background: #fffbea;
  border: 1px solid #FFCC00;
  border-radius: 6px;
  padding: 12px 16px;
  margin-top: 16px;
  font-size: 13px;
  color: #555;
}

/* Access denied page — body centering */
body.denied { display: flex; align-items: center; justify-content: center; min-height: 100vh; }

/* Access denied page */
.denied-card {
  background: var(--cream);
  border-radius: 10px;
  padding: 48px;
  max-width: 500px;
  width: 100%;
  text-align: center;
}
.denied-stripe {
  height: 6px;
  background: linear-gradient(90deg, #FF7700 33%, #FFCC00 33% 66%, #888 66%);
  border-radius: 4px;
  margin-bottom: 32px;
}
.denied-icon { font-size: 64px; display: block; margin-bottom: 20px; }
.denied-h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px; font-weight: 700; color: #CC2200;
  text-transform: uppercase; margin-bottom: 16px;
}
.denied-text { font-size: 15px; color: #555; line-height: 1.7; margin-bottom: 24px; }
.btn-back-denied {
  display: inline-block;
  background: var(--orange); color: #fff;
  border: none; border-radius: 6px; padding: 12px 28px;
  font-weight: 700; font-size: 15px; cursor: pointer; text-decoration: none;
}
