/* CSS reset and base styles */
:root {
  --fghs-bg: #0d0d0d;
  --fghs-surface: #1a1a1a;
  --fghs-surface-hover: #262626;
  --fghs-gold: #cfa858;
  --fghs-gold-hover: #e6c883;
  --fghs-ruby: #8a1324;
  --fghs-text-main: #f0f0f0;
  --fghs-text-muted: #a6a6a6;
  --fghs-font: 'Outfit', sans-serif;
  --fghs-radius: 12px;
  --fghs-transition: 0.3s ease;
}

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

body {
  font-family: var(--fghs-font);
  background-color: var(--fghs-bg);
  color: var(--fghs-text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a:hover {
  color: var(--fghs-gold-hover);
}

ul {
  list-style: none;
}

/* Header */
.fghs-top-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 1px solid var(--fghs-ruby);
}

.fghs-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fghs-logo-box {
  display: flex;
  flex-direction: column;
}

.fghs-logo-abbr {
  font-size: 28px;
  font-weight: 800;
  color: var(--fghs-gold);
  letter-spacing: 2px;
}

.fghs-logo-text {
  font-size: 12px;
  color: var(--fghs-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fghs-badge-18 {
  border: 1px solid var(--fghs-gold);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--fghs-gold);
}

/* Main Layout */
.fghs-wrapper {
  padding-top: 100px;
}

.fghs-section-box {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

/* Hero Section */
.fghs-hero-area {
  text-align: center;
  padding: 120px 20px 80px;
  background: radial-gradient(circle at center, var(--fghs-surface) 0%, var(--fghs-bg) 100%);
  border-bottom: 1px solid #222;
}

.fghs-hero-kicker {
  color: var(--fghs-ruby);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  display: inline-block;
}

.fghs-hero-title {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 30px;
  background: linear-gradient(to right, var(--fghs-gold), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fghs-hero-desc {
  font-size: 18px;
  color: var(--fghs-text-muted);
  max-width: 700px;
  margin: 0 auto 60px;
}

.fghs-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.fghs-hero-infocard {
  background: var(--fghs-surface);
  padding: 30px;
  border-radius: var(--fghs-radius);
  border: 1px solid #333;
  transition: transform var(--fghs-transition), border-color var(--fghs-transition);
}

.fghs-hero-infocard:hover {
  transform: translateY(-5px);
  border-color: var(--fghs-ruby);
}

.fghs-infocard-title {
  color: var(--fghs-gold);
  font-size: 18px;
  margin-bottom: 10px;
}

/* Standard Sections */
.fghs-sec-header {
  text-align: center;
  margin-bottom: 60px;
}

.fghs-sec-title {
  font-size: 36px;
  margin-bottom: 20px;
}

.fghs-sec-intro {
  color: var(--fghs-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.fghs-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.fghs-info-panel {
  background: var(--fghs-surface);
  padding: 40px;
  border-radius: var(--fghs-radius);
  border-top: 3px solid var(--fghs-ruby);
  transition: all var(--fghs-transition);
}

.fghs-info-panel:hover {
  background: var(--fghs-surface-hover);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.fghs-panel-kicker {
  font-size: 12px;
  color: var(--fghs-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
}

.fghs-panel-title {
  font-size: 24px;
  margin-bottom: 15px;
}

.fghs-panel-text {
  color: var(--fghs-text-muted);
  margin-bottom: 25px;
  font-size: 15px;
}

.fghs-panel-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  color: var(--fghs-text-main);
  font-size: 15px;
}

.fghs-panel-list li::before {
  content: '♦';
  position: absolute;
  left: 0;
  color: var(--fghs-ruby);
  font-size: 14px;
}

/* Footer */
.fghs-bot-footer {
  background: var(--fghs-surface);
  border-top: 1px solid #333;
  padding: 80px 20px 40px;
}

.fghs-footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.fghs-footer-slogan {
  font-size: 28px;
  color: var(--fghs-gold);
  text-align: center;
  margin-bottom: 60px;
}

.fghs-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.fghs-footer-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--fghs-text-main);
}

.fghs-footer-col p, 
.fghs-footer-col li {
  color: var(--fghs-text-muted);
  margin-bottom: 10px;
  font-size: 15px;
}

.fghs-footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #333;
  color: var(--fghs-text-muted);
  font-size: 14px;
}

@media (max-width: 768px) {
  .fghs-hero-title {
    font-size: 40px;
  }
  .fghs-nav-container {
    flex-direction: column;
    gap: 15px;
  }
}
