body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #111;
  color: #eee;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #000, #FF0000);
  color: #FFFF00;
  text-align: center;
  padding: 60px 20px;
}
.hero h1 { font-size: 32px; margin-bottom: 15px; }
.hero p { font-size: 18px; max-width: 800px; margin: 0 auto 20px; }
.cta-btn { background: #FF0000; color: #FFFF00; padding: 12px 24px; border-radius: 8px; text-decoration: none; font-weight: bold; transition: 0.2s; }
.cta-btn:hover { background: #d97706; color: #000; }

/* Header Navigation */
header { background: #000; padding: 10px 20px; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; }
.logo { font-size: 22px; font-weight: bold; color: #FF0000; }
nav { margin-left: auto; }
nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 10px; flex-wrap: wrap; }
nav ul li a { display: block; background: #FF0000; color: #FFFF00; padding: 8px 14px; border-radius: 6px; font-weight: bold; text-decoration: none; transition: 0.2s; white-space: nowrap; }
nav ul li a:hover { background: #d97706; color: #000; }
.menu-toggle { display: none; flex-direction: column; cursor: pointer; margin-left: auto; }
.menu-toggle span { height: 3px; width: 25px; background: #FFFF00; margin-bottom: 5px; border-radius: 5px; }
@media (max-width: 1000px) {
  nav ul { display: none; flex-direction: column; background: #000; position: absolute; top: 60px; left: 0; width: 100%; padding: 20px 0; }
  nav ul.showing { display: flex; }
  .menu-toggle { display: flex; }
}

/* Tabs */
.tabs { margin: 30px auto; max-width: 1200px; background: #222; border-radius: 8px; padding: 20px; }
.tab-buttons { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.tab-buttons button { background: #FF0000; color: #FFFF00; border: none; padding: 10px 16px; border-radius: 6px; cursor: pointer; font-weight: bold; transition: 0.2s; }
.tab-buttons button.active, .tab-buttons button:hover { background: #d97706; color: #000; }
.tab-content { display: none; }
.tab-content.active { display: block; }
iframe { width: 100%; border: none; min-height: 600px; }

/* Content Sections */
section { max-width: 1200px; margin: 40px auto; padding: 20px; background: #1a1a1a; border-radius: 8px; }
section h2 { color: #FF0000; }
section h3 { color: #FFFF00; }
ul { padding-left: 20px; }

/* Footer */
footer { background: #000; color: #ccc; text-align: center; padding: 20px; font-size: 14px; }
footer nav a { color: #FFFF00; margin: 0 5px; text-decoration: none; }
footer nav a:hover { color: #FF0000; }

/* Table Header */
.table-header { text-align: center; margin-bottom: 20px; }
.table-header h2 { color: #FFFF00; }
.table-header p { color: #eee; font-size: 16px; }