/* ===== KENT CASINO — PAGES CSS ===== */
/* Sub-page styles matching Kent's design system */

@font-face {
  font-family: 'Switzer';
  src: url('../fonts/Switzer-Regular.woff2') format('woff2'),
       url('../fonts/Switzer-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Switzer';
  src: url('../fonts/Switzer-Medium.woff2') format('woff2'),
       url('../fonts/Switzer-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Switzer';
  src: url('../fonts/Switzer-Semibold.woff2') format('woff2'),
       url('../fonts/Switzer-Semibold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Switzer';
  src: url('../fonts/Switzer-Bold.woff2') format('woff2'),
       url('../fonts/Switzer-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Switzer';
  src: url('../fonts/Switzer-Extrabold.woff2') format('woff2'),
       url('../fonts/Switzer-Extrabold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Switzer';
  src: url('../fonts/Switzer-Black.woff2') format('woff2'),
       url('../fonts/Switzer-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ===== ROOT VARIABLES ===== */
:root {
  --kent-bg: #250714;
  --kent-bg-dark: #1b000c;
  --kent-bg-card: #28121b;
  --kent-bg-modal: #370b1e;
  --kent-pink: #ff0066;
  --kent-pink-light: #ff3385;
  --kent-pink-dark: #cc0052;
  --kent-white: #ffffff;
  --kent-text: #c4c4c4;
  --kent-text-dim: #8d8d8d;
  --kent-text-footer: #7a7a7a;
  --kent-teal: #3fbeb7;
  --kent-divider: #321a25;
  --kent-burger: #74123a;
  --kent-gradient: linear-gradient(265deg, #00f0ff 0%, #6100ff 100%);
  --kent-font: 'Switzer', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --kent-radius: 12px;
  --kent-radius-sm: 8px;
  --kent-shadow: 0 4px 24px rgba(0,0,0,0.3);
  --kent-transition: all 0.3s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--kent-font);
  background: var(--kent-bg);
  color: var(--kent-white);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--kent-pink); text-decoration: none; transition: var(--kent-transition); }
a:hover { color: var(--kent-pink-light); }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
.page-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #18040d;
  padding: 0 20px;
  border-bottom: 1px solid var(--kent-divider);
}
.page-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}
.page-header__logo {
  display: flex;
  align-items: center;
}
.page-header__logo img,
.page-header__logo svg {
  height: 40px;
  width: auto;
}

/* Navigation */
.page-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.page-nav__link {
  color: var(--kent-text);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--kent-radius-sm);
  transition: var(--kent-transition);
  white-space: nowrap;
}
.page-nav__link:hover,
.page-nav__link--active {
  color: var(--kent-white);
  background: rgba(255, 0, 102, 0.15);
}
.page-nav__link--active {
  color: var(--kent-pink);
}

/* Header buttons */
.page-header__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Burger */
.page-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.page-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--kent-white);
  border-radius: 2px;
  transition: var(--kent-transition);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--kent-font);
  font-weight: 600;
  border: none;
  border-radius: var(--kent-radius-sm);
  cursor: pointer;
  transition: var(--kent-transition);
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
}
.btn--primary {
  background: var(--kent-pink);
  color: var(--kent-white);
  padding: 12px 28px;
  font-size: 14px;
}
.btn--primary:hover {
  background: var(--kent-pink-light);
  color: var(--kent-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255, 0, 102, 0.4);
}
.btn--outline {
  background: transparent;
  color: var(--kent-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 11px 24px;
  font-size: 14px;
}
.btn--outline:hover {
  border-color: var(--kent-pink);
  color: var(--kent-pink);
  background: rgba(255, 0, 102, 0.08);
}
.btn--sm {
  padding: 8px 16px;
  font-size: 12px;
}
.btn--lg {
  padding: 16px 36px;
  font-size: 16px;
}

/* ===== PAGE HERO ===== */
.page-hero {
  position: relative;
  padding: 80px 0 60px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27, 0, 12, 0.92) 0%, rgba(37, 7, 20, 0.85) 50%, rgba(55, 11, 30, 0.8) 100%);
  z-index: 1;
}
.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--kent-text-dim);
}
.page-hero__breadcrumb a {
  color: var(--kent-text-dim);
}
.page-hero__breadcrumb a:hover {
  color: var(--kent-pink);
}
.page-hero__breadcrumb span {
  color: var(--kent-text-dim);
}
.page-hero__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.page-hero__title .highlight {
  color: var(--kent-pink);
}
.page-hero__desc {
  font-size: 17px;
  color: var(--kent-text);
  max-width: 680px;
  line-height: 1.7;
}

/* ===== MAIN CONTENT AREA ===== */
.page-content {
  padding: 60px 0 80px;
}

/* Article styles */
.article {
  max-width: 900px;
  margin: 0 auto;
}
.article h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  margin: 48px 0 20px;
  color: var(--kent-white);
  line-height: 1.3;
}
.article h2:first-child {
  margin-top: 0;
}
.article h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 32px 0 14px;
  color: var(--kent-white);
}
.article p {
  color: var(--kent-text);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 18px;
}
.article .highlight {
  color: var(--kent-pink);
  font-weight: 600;
}
.article strong {
  color: var(--kent-white);
  font-weight: 600;
}
.article ul, .article ol {
  margin: 16px 0 24px 24px;
  color: var(--kent-text);
}
.article li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.7;
}
.article li strong {
  color: var(--kent-white);
}

/* Info cards */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 32px 0;
}
.info-card {
  background: var(--kent-bg-card);
  border: 1px solid var(--kent-divider);
  border-radius: var(--kent-radius);
  padding: 28px 24px;
  transition: var(--kent-transition);
}
.info-card:hover {
  border-color: rgba(255, 0, 102, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 0, 102, 0.1);
}
.info-card__icon {
  font-size: 32px;
  margin-bottom: 14px;
}
.info-card__title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--kent-white);
}
.info-card__text {
  font-size: 14px;
  color: var(--kent-text);
  line-height: 1.6;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin: 32px 0;
  counter-reset: step;
}
.step {
  background: var(--kent-bg-card);
  border: 1px solid var(--kent-divider);
  border-radius: var(--kent-radius);
  padding: 32px 24px;
  position: relative;
  counter-increment: step;
}
.step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--kent-pink);
  color: var(--kent-white);
  font-weight: 800;
  font-size: 18px;
  border-radius: 50%;
  margin-bottom: 16px;
}
.step__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--kent-white);
}
.step__text {
  font-size: 14px;
  color: var(--kent-text);
  line-height: 1.6;
}

/* FAQ section */
.faq-section {
  margin: 48px 0;
}
.faq-section__title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 24px;
}
.faq-item {
  background: var(--kent-bg-card);
  border: 1px solid var(--kent-divider);
  border-radius: var(--kent-radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--kent-transition);
}
.faq-item:hover {
  border-color: rgba(255, 0, 102, 0.2);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--kent-white);
  transition: var(--kent-transition);
}
.faq-question:hover {
  color: var(--kent-pink);
}
.faq-question::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--kent-pink);
  transition: var(--kent-transition);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 24px 20px;
  display: none;
}
.faq-item.active .faq-answer {
  display: block;
}
.faq-answer p {
  color: var(--kent-text);
  font-size: 14px;
  line-height: 1.7;
}

/* Promo banner inside pages */
.page-promo {
  background: linear-gradient(135deg, var(--kent-bg-modal), var(--kent-bg-card));
  border: 1px solid var(--kent-divider);
  border-radius: var(--kent-radius);
  padding: 40px;
  text-align: center;
  margin: 48px 0;
}
.page-promo__title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}
.page-promo__title .highlight {
  color: var(--kent-pink);
}
.page-promo__text {
  color: var(--kent-text);
  font-size: 15px;
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Table styles */
.kent-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}
.kent-table th {
  background: var(--kent-bg-card);
  color: var(--kent-pink);
  font-weight: 600;
  padding: 14px 16px;
  text-align: left;
  border-bottom: 2px solid var(--kent-divider);
}
.kent-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--kent-divider);
  color: var(--kent-text);
}
.kent-table tr:hover td {
  background: rgba(255, 0, 102, 0.04);
}

/* Page image */
.page-image {
  border-radius: var(--kent-radius);
  overflow: hidden;
  margin: 32px 0;
  border: 1px solid var(--kent-divider);
}
.page-image img {
  width: 100%;
  display: block;
}

/* ===== FOOTER ===== */
.page-footer {
  background: var(--kent-bg-dark);
  padding: 48px 0 32px;
  border-top: 1px solid var(--kent-divider);
}
.page-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.page-footer__col-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  color: var(--kent-white);
}
.page-footer__links {
  list-style: none;
}
.page-footer__links li {
  margin-bottom: 10px;
}
.page-footer__links a {
  color: var(--kent-text-footer);
  font-size: 13px;
  transition: var(--kent-transition);
}
.page-footer__links a:hover {
  color: var(--kent-pink);
}
.page-footer__about p {
  color: var(--kent-text-footer);
  font-size: 13px;
  line-height: 1.7;
}
.page-footer__bottom {
  border-top: 1px solid var(--kent-divider);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.page-footer__copy {
  color: var(--kent-text-footer);
  font-size: 12px;
}
.page-footer__badges {
  display: flex;
  gap: 16px;
  align-items: center;
}
.page-footer__badge {
  color: var(--kent-teal);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, #370b1e 0%, #250714 100%);
  padding: 64px 0;
  text-align: center;
}
.cta-section__title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  margin-bottom: 16px;
}
.cta-section__title .highlight {
  color: var(--kent-pink);
}
.cta-section__text {
  color: var(--kent-text);
  font-size: 16px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .page-nav {
    display: none;
  }
  .page-burger {
    display: flex;
  }
  .page-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 60px 0 40px;
    min-height: 260px;
  }
  .page-content {
    padding: 40px 0 60px;
  }
  .info-cards {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .page-promo {
    padding: 28px 20px;
  }
  .page-footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .page-footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  .kent-table {
    font-size: 12px;
  }
  .kent-table th, .kent-table td {
    padding: 10px 12px;
  }
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--kent-bg-dark);
  z-index: 99;
  padding: 20px;
  overflow-y: auto;
}
.mobile-menu.active {
  display: block;
}
.mobile-menu__link {
  display: block;
  padding: 14px 16px;
  color: var(--kent-text);
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid var(--kent-divider);
  transition: var(--kent-transition);
}
.mobile-menu__link:hover,
.mobile-menu__link--active {
  color: var(--kent-pink);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

/* ===== INDEX PAGE: SEO section overrides to match sub-page article styles ===== */
.seo-section .content.article {
  max-width: 100% !important;
}
.seo-section .content.article h1 {
  font-size: clamp(26px, 4vw, 38px) !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  margin-bottom: 20px !important;
  color: #fff !important;
}
.seo-section .content.article h2 {
  font-size: clamp(22px, 3vw, 30px) !important;
  font-weight: 700 !important;
  margin: 48px 0 20px !important;
  color: #fff !important;
  line-height: 1.3 !important;
}
.seo-section .content.article p {
  color: #c4c4c4 !important;
  font-size: 15px !important;
  line-height: 1.8 !important;
  margin-bottom: 18px !important;
}
.seo-section .content.article a {
  color: #ff0066;
  text-decoration: none;
  transition: all 0.3s;
}
.seo-section .content.article a:hover {
  color: #ff3385;
}
.seo-section .content.article .highlight {
  color: #ff0066 !important;
  font-weight: 600 !important;
}
.seo-section .content.article strong {
  color: #fff !important;
  font-weight: 600 !important;
}
.seo-section .content.article ul,
.seo-section .content.article ol {
  margin: 16px 0 24px 24px !important;
  color: #c4c4c4 !important;
}
.seo-section .content.article li {
  margin-bottom: 10px !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
}
.seo-section .content.article li strong {
  color: #fff !important;
}
.seo-section .content.article .faq-item {
  background: #28121b;
  border: 1px solid #321a25;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.seo-section .content.article .faq-question {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  cursor: pointer;
}
.seo-section .content.article .faq-item p {
  padding: 0 24px 20px;
}

/* ===== Main page nav bar responsive ===== */
@media (max-width: 1100px) {
  .kent-main-nav {
    display: none !important;
  }
}
