* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #000;
  color: #f5f5f5;
  line-height: 1.7;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.hero-content h1 {
  font-size: 64px;
  color: #d4af37;
  letter-spacing: 3px;
}

.hero-content p {
  margin-top: 10px;
  color: #ccc;
}

.hero-buttons {
  margin-top: 30px;
}

.btn {
  padding: 14px 36px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  margin: 0 10px;
}

.btn.gold {
  background: #d4af37;
  color: #000;
}

.btn.outline {
  border: 2px solid #d4af37;
  color: #d4af37;
}

/* SECTIONS */
.section {
  padding: 80px 10%;
  text-align: center;
}

.section.dark {
  background: #0f0f0f;
}

h2 {
  color: #d4af37;
  margin-bottom: 25px;
  font-size: 36px;
}

/* LIST */
.list {
  max-width: 700px;
  margin: auto;
  text-align: left;
}

.list li {
  padding: 10px 0;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 25px;
  margin-top: 40px;
}

.card {
  background: #151515;
  border: 1px solid #d4af37;
  padding: 25px;
  border-radius: 12px;
}

/* TABLE */
table {
  width: 100%;
  max-width: 700px;
  margin: auto;
  border-collapse: collapse;
}

th, td {
  padding: 12px;
  border: 1px solid #333;
}

th {
  background: #d4af37;
  color: #000;
}

/* FOOTER */
footer {
  padding: 30px;
  background: #000;
  text-align: center;
  color: #aaa;
}

.muted {
  color: #aaa;
  font-size: 14px;
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}
.subtitle {
  color: #ccc;
  margin-bottom: 25px;
  font-size: 15px;
}

.table-wrap {
  overflow-x: auto;
  margin-top: 30px;
}

.gold-table {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  border-collapse: collapse;
  background: #111;
  border: 1px solid #d4af37;
}

.gold-table th {
  background: linear-gradient(135deg, #d4af37, #b8962e);
  color: #000;
  padding: 14px;
  font-weight: 700;
}

.gold-table td {
  padding: 12px;
  border: 1px solid #333;
  color: #eee;
}

.gold-table tr:nth-child(even) {
  background: #151515;
}

.note {
  margin-top: 25px;
  font-size: 13px;
  color: #aaa;
  text-align: center;
}
