/* Digital Insight Zone – Casino Banner Theme (Complete Redesign) */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --bg: #0a1628;
  --bg-card: #0f2744;
  --bg-elevated: #152d4a;
  --border: #1e3a5f;
  --border-gold: rgba(255, 215, 0, 0.4);
  --text: #e8eef5;
  --text-muted: #8ba3c4;
  --accent: #ffd700;
  --accent-hover: #ffed4a;
  --accent-teal: #0d9488;
  --accent-red: #dc2626;
  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 0 20px rgba(255, 215, 0, 0.15);
  --transition: 0.25s ease;
  --content-max: 900px;
  --content-wide: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

/* ===== HOMEPAGE BANNER (under header) ===== */
.home-banner {
  max-width: var(--content-wide);
  margin: 0 auto 2rem;
  padding: 0 2rem;
  text-align: center;
}
.home-banner a { display: inline-block; }
.home-banner img {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 320px;
  display: block;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* ===== HEADER – Side-by-side with gold accent ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(10, 22, 40, 0.98) 0%, rgba(10, 22, 40, 0.95) 100%);
  backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--border-gold);
  padding: 0;
  box-shadow: var(--shadow-gold);
}
.site-header .inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.site-header .brand { display: flex; align-items: center; }
.site-header .logo {
  height: 38px;
  width: auto;
  display: block;
}
.site-header .logo-link { display: flex; align-items: center; text-decoration: none; color: inherit; }
.site-header nav { display: flex; align-items: center; gap: 0.25rem; flex-wrap: wrap; }
.site-header nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.site-header nav a:hover {
  color: var(--accent);
  background: rgba(255, 215, 0, 0.08);
}
.site-header nav a.nav-btn {
  color: var(--bg);
  background: linear-gradient(135deg, var(--accent) 0%, #e6c200 100%);
  margin-left: 0.5rem;
  box-shadow: 0 2px 12px rgba(255, 215, 0, 0.3);
}
.site-header nav a.nav-btn:hover {
  background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 100%);
  color: var(--bg);
  transform: translateY(-1px);
}

/* ===== MAIN LAYOUT – Wider, asymmetric ===== */
.main-wrapper {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 0 2rem 3rem;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  align-items: start;
}
.main-content { min-width: 0; }
.sidebar {
  position: sticky;
  top: 100px;
}

/* ===== HOMEPAGE – New structure ===== */
.home-layout .main-wrapper { padding-top: 2rem; }
.home-intro {
  margin-bottom: 2.5rem;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow);
}
.home-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.75;
  font-style: italic;
}
.home-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 1.5rem;
  color: var(--text);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ===== TYPOGRAPHY ===== */
.page-text { background: transparent; padding: 0; color: var(--text); }
h1 {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 400;
  margin: 0 0 1.25rem;
  color: var(--text);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  margin: 2.5rem 0 0.75rem;
  color: var(--accent);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border-gold);
  text-transform: uppercase;
}
p { margin: 0 0 1.25rem; color: var(--text); }
ul { margin: 0 0 1.25rem; padding-left: 1.5rem; }
li { margin-bottom: 0.5rem; color: var(--text); }
li::marker { color: var(--accent); }

/* ===== TABLES ===== */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.95rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
th, td { padding: 1rem 1.25rem; text-align: left; color: var(--text); border-bottom: 1px solid var(--border); }
th {
  background: var(--bg-elevated);
  color: var(--accent);
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(255, 215, 0, 0.05); }

/* ===== LINKS ===== */
.page-text a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}
.page-text a:hover {
  color: var(--accent-hover);
  border-bottom-color: var(--accent);
}

/* ===== SIDEBAR CARD ===== */
.sidebar-card {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}
.sidebar-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--accent);
  margin: 0 0 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.sidebar-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-card li {
  margin-bottom: 0.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.sidebar-card li:last-child { border-bottom: none; }
.sidebar-card a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
}
.sidebar-card a:hover { color: var(--accent); }

/* ===== FAQ BLOCK ===== */
.faq-block {
  margin: 3.5rem 0 0;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.faq-block-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid var(--border-gold);
}
.faq-block-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.faq-block-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  margin: 0 0 0.5rem;
  color: var(--text);
  letter-spacing: 0.02em;
}
.faq-block-intro { margin: 0; font-size: 0.95rem; color: var(--text-muted); }
.faq p {
  margin-bottom: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg);
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
}
.faq p:last-child { margin-bottom: 0; }
.faq strong { display: block; margin-bottom: 0.4rem; color: var(--accent); }

/* ===== FOOTER ===== */
.site-footer {
  margin-top: 4rem;
  padding: 2.5rem 0;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg) 100%);
  border-top: 2px solid var(--border-gold);
}
.site-footer .inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.site-footer .footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  width: 100%;
}
.site-footer .logo { height: 36px; width: auto; opacity: 0.9; }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2rem; }
.site-footer nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.site-footer nav a:hover { color: var(--accent); }
.site-footer .copy { font-size: 0.8rem; color: var(--text-muted); margin: 0; }

/* ===== INTERNAL PAGES – Single column, different width ===== */
.wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 2.5rem 2rem 3rem;
}
.inner-page .page-text h1 { margin-top: 0; }

/* ===== CONTACT PAGE ===== */
.cp-hero { text-align: left; padding: 0 0 1.5rem; }
.cp-hero h1 { font-size: 2.5rem; margin: 0 0 0.5rem; }
.cp-hero .tagline { font-size: 1.05rem; color: var(--text-muted); margin: 0; line-height: 1.65; }
.cp-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  padding: 2rem 0;
}
.cp-channel {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: left;
  transition: all var(--transition);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--accent);
}
.cp-channel:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}
.cp-channel .ico { font-size: 1.75rem; margin-bottom: 0.5rem; }
.cp-channel .title { color: var(--accent); font-weight: 700; font-size: 0.95rem; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.05em; }
.cp-channel .value a { color: var(--accent); text-decoration: none; font-weight: 600; }
.cp-channel .value a:hover { color: var(--accent-hover); text-decoration: underline; }
.cp-channel .extra { margin: 0; font-size: 0.9rem; color: var(--text-muted); }
.cp-section { padding: 1.5rem 0; border-top: 1px solid var(--border); }
.cp-section-first { border-top: none; padding-top: 0; }
.cp-section h2 { margin-top: 0; }
.cp-contacts { padding: 1.5rem 0; }
.cp-contacts h2 { margin-bottom: 1rem; }
.cp-list { margin: 0; }
.cp-list dt { color: var(--accent); font-weight: 700; font-size: 0.95rem; margin-top: 1.25rem; margin-bottom: 0.35rem; }
.cp-list dt:first-child { margin-top: 0; }
.cp-list dd { margin: 0 0 0 1rem; padding-left: 0; line-height: 1.6; color: var(--text-muted); }
.cp-list dd a { color: var(--accent); text-decoration: none; font-weight: 600; }
.cp-list dd a:hover { color: var(--accent-hover); text-decoration: underline; }
.cp-section a, .cp-note a { color: var(--accent); text-decoration: none; }
.cp-section a:hover, .cp-note a:hover { text-decoration: underline; color: var(--accent-hover); }
.cp-note {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent-teal);
  border-radius: var(--radius);
  font-size: 0.95rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .main-wrapper { grid-template-columns: 1fr; }
  .sidebar { position: static; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (max-width: 768px) {
  .site-header .inner { padding: 0.65rem 1rem; }
  .site-header .logo { height: 32px; }
  .site-header nav a { font-size: 0.75rem; padding: 0.5rem 0.75rem; }
  .main-wrapper, .wrap { padding: 1.5rem 1rem 2rem; }
  .home-title { font-size: 2.25rem; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .sidebar { grid-template-columns: 1fr; }
  .home-banner { padding: 0 1rem; margin-bottom: 1.5rem; }
  .home-banner img { max-height: 280px; }
}
@media (max-width: 480px) {
  .site-header nav a:not(.nav-btn) { display: none; }
  .cp-channels { grid-template-columns: 1fr; }
  .home-banner img { max-height: 200px; }
}

.page-text img, .home-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.5rem 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

/* Inner page accent */
.inner-page .wrap { padding-top: 2rem; }
.inner-page .page-text { padding-top: 1.5rem; border-top: 3px solid var(--border-gold); }


.help-box {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent-teal);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.help-box a { color: var(--accent); text-decoration: none; }
.help-box a:hover { color: var(--accent-hover); text-decoration: underline; }

