:root {
  /* Colors */
  --color-bg-dark: #121212;
  --color-bg-card: #1E1E1E;
  --color-bg-lighter: #252525;
  --color-primary: #D4AF37;
  /* Gold */
  --color-primary-hover: #B59020;
  --color-secondary: #E53935;
  /* Poker Red */
  --color-text-main: #E0E0E0;
  --color-text-muted: #A0A0A0;
  --color-white: #FFFFFF;
  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Roboto', sans-serif;
  /* Spacing & Layout */
  --container-width: 1200px;
  --radius-card: 8px;
  --radius-btn: 4px;
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-dark);
  color: var(--color-text-main);
  line-height: 1.6;
  font-size: 16px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--color-white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  line-height: 1.1;
}

h2 {
  font-size: 2.2rem;
  color: var(--color-primary);
}

h3 {
  font-size: 1.5rem;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

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

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-delay-1 {
  transition-delay: 0.1s;
}

.stagger-delay-2 {
  transition-delay: 0.2s;
}

.stagger-delay-3 {
  transition-delay: 0.3s;
}

/* Header */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  padding: 15px 0;
}

.header-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-white);
  text-transform: uppercase;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}
@media (max-width: 768px) {
  .main-nav ul {
    display: none;
  }
}

.main-nav a {
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--color-text-main);
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--color-primary);
}
.main-nav a:hover::after, .main-nav a.active::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 90vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 60px;
  /* Offset fixed header */
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(18, 18, 18, 0.7), var(--color-bg-dark));
}

.hero-content {
  max-width: 800px;
  padding: 20px;
  z-index: 1;
}
.hero-content h1 {
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.2rem;
  color: var(--color-text-main);
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}
@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
  }
}

/* Sections */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

/* Grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* Advanced Section */
.section-advanced {
  background: var(--color-bg-lighter);
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 768px) {
  .split-layout {
    grid-template-columns: 1fr;
  }
}

.split-image img {
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.feature-list {
  list-style: none;
  margin: 30px 0;
}
.feature-list li {
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: var(--color-text-main);
}

/* Footer */
.main-footer {
  background: #000;
  margin-top: 30px;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 30px;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    gap: 15px;
  }
}
.footer-links a {
  color: var(--color-text-muted);
}
.footer-links a:hover {
  color: var(--color-primary);
}

.copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

/* Buttons */
.btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
  color: #000;
  padding: 12px 30px;
  border-radius: var(--radius-card);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-outline, .btn-outline-small {
  display: inline-block;
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  padding: 12px 30px;
  border-radius: var(--radius-card);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.btn-outline:hover, .btn-outline-small:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--color-white);
}

.btn-outline-small {
  padding: 8px 20px;
  font-size: 0.8rem;
}

.btn-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 26px;
  border-radius: var(--radius-btn);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(181, 144, 32, 0.15));
  border: 1px solid rgba(212, 175, 55, 0.6);
  color: var(--color-primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn-card:hover {
  transform: translateY(-2px);
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
}

.link-gold {
  color: var(--color-primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.link-gold:hover {
  color: var(--color-white);
}

/* Cards */
.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-10px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-card);
}
.card.large {
  height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.card.large .card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-content h3 {
  color: var(--color-white);
  margin-bottom: 10px;
}

.card-content .btn-card {
  margin-top: auto;
  align-self: center;
}

/* Poker Cards */
.poker-card {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 6px;
  border-radius: 4px;
  background: #f8f8f8;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-weight: 700;
  line-height: 1;
  vertical-align: middle;
  margin: 0 2px;
  font-size: 0.95em;
  aspect-ratio: 0.7;
}
.poker-card__value {
  font-size: 1.1em;
  min-width: 1.2em;
  align-self: flex-start;
}
.poker-card__suit {
  font-size: 1em;
  align-self: flex-end;
}
.poker-card--hearts,
.poker-card--diamonds {
  color: #d60000;
}
.poker-card--clubs,
.poker-card--spades {
  color: #111111;
}

/* Article Page Content */
.article-content {
  max-width: 800px;
  margin: 0 auto;
}

.article-body h2 {
  color: var(--color-primary);
  margin-top: 40px;
  margin-bottom: 20px;
}
.article-body h3 {
  color: var(--color-white);
  margin-bottom: 15px;
}
.article-body p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}
.article-body ul {
  margin-bottom: 30px;
  padding-left: 20px;
}
.article-body ul li {
  margin-bottom: 10px;
  color: var(--color-text-main);
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 30px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}
th,
td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
thead th {
  background: rgba(212, 175, 55, 0.12);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
}
tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}
tbody tr:hover {
  background: rgba(255, 255, 255, 0.06);
}
tbody tr:last-child td {
  border-bottom: none;
}
table caption {
  caption-side: top;
  text-align: left;
  margin-bottom: 10px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* Badges */
.badge-red {
  display: inline-block;
  background: var(--color-secondary);
  color: var(--color-white);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}

/*# sourceMappingURL=styles.css.map */


/* === Added for 2026 SEO/UX modules === */
.brand { display:flex; align-items:center; gap:10px; text-decoration:none; }
.logo-img { height:34px; width:auto; display:block; }
.logo-text { font-weight:900; letter-spacing:0.5px; }
.breadcrumb { font-size:0.95rem; color:#c7c7c7; margin-top:120px; }
.breadcrumb a { color:#c7c7c7; text-decoration:none; }
.breadcrumb a:hover { text-decoration:underline; }
.breadcrumb .sep { margin:0 8px; opacity:0.7; }

.hero-search { display:flex; gap:10px; justify-content:center; margin:22px auto 0; max-width:720px; }
.hero-search input[type="search"] {
  flex:1; padding:14px 16px; border-radius:10px; border:1px solid rgba(255,255,255,0.18);
  background:rgba(17,17,17,0.35); color:#fff; outline:none;
}
.hero-search input[type="search"]::placeholder { color:rgba(255,255,255,0.65); }
.hero-search .btn-gold { white-space:nowrap; }

.toc-wrapper { margin-top: -30px; }
.toc {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 18px 18px;
  backdrop-filter: blur(6px);
}
.toc strong { display:block; margin-bottom:10px; }
.toc ul { display:flex; flex-wrap:wrap; gap:10px 14px; padding-left:0; list-style:none; margin:0; }
.toc a { color:#D4AF37; text-decoration:none; font-weight:700; }
.toc a:hover { text-decoration:underline; }

.tip-box {
  background: rgba(212,175,55,0.10);
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 14px;
  padding: 18px;
  margin: 22px auto 30px;
  max-width:800px;
}
.tip-box strong { color:#D4AF37; }
.warning-box{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-left: 4px solid #D4AF37;
  border-radius: 14px;
  padding: 18px 18px;
  margin: 34px auto;

}

.warning-box h3 { margin-top:0; }

.faq { margin-top: 36px; }
.faq h2 { margin-top: 10px; }
.faq details{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 14px 16px;
  margin: 12px 0;
}
.faq summary{ cursor:pointer; font-weight:800; color:#fff;   }
.faq summary h3 { font-size:1.2rem; display:inline-block; margin-bottom:0; }
.faq p{ margin: 12px 0 0; color:#d8d8d8; }

.lead { font-size: 1.1rem; color: #d8d8d8; }

/* responsive tweaks */
@media (max-width: 768px){
  .hero-search{ flex-direction:column; }
  .hero-search .btn-gold{ width:100%; }
  .toc ul { flex-direction:column; }
}
