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

body {
  font-family: "Segoe UI", Tahoma, sans-serif;
  line-height: 1.6;
  background: linear-gradient(to bottom, #f0f4f8, #d9e4ea);
  color: #333;
}

/* Header */
header {
  background: linear-gradient(to right, #2c3e50, #34495e);
  color: #fff;
  padding: 1.5em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logo */
header .logo span {
  font-weight: 700;
}

/* Nav (desktop) */
header nav ul {
  display: flex;
  gap: 1rem;
  list-style: none;
}

header nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 0.5em 1em;
  border-radius: 5px;
  transition: background 0.3s;
}

header nav ul li a:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Burger button (hidden on desktop) */
.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.burger span {
  display: block;
  height: 2px;
  width: 24px;         /* KEY FIX: щоб лінії не були 0px */
  background: #fff;
  border-radius: 2px;
}

/* Main Content Block */
main {
  max-width: 960px;
  margin: 0 auto;
  padding: 2em 1em;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 2em 1em;
  background: linear-gradient(to bottom, #3498db, #2980b9);
  color: #fff;
  border-radius: 12px;
  margin-bottom: 2em;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5em;
}

/* Bonus Cards */
.bonus-section {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
  margin-top: 1em;
}

.bonus-card {
  flex: 1;
  min-width: 280px;
  padding: 1.5em;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.bonus-card:hover {
  transform: scale(1.05);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}

.bonus-card h3 {
  margin-bottom: 0.5em;
  color: #2980b9;
}

/* Custom Pros and Cons Blocks */
.pros-cons {
  display: flex;
  gap: 1.5em;
  margin-top: 2em;
}

.pros,
.cons {
  flex: 1;
  padding: 1.5em;
  border-radius: 12px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
}

.pros {
  background: linear-gradient(to right, #4caf50, #66bb6a);
  color: #fff;
}

.cons {
  background: linear-gradient(to right, #880808, #a52626);
  color: #fff;
}

.pros h3,
.cons h3 {
  margin-bottom: 1em;
  font-size: 1.2rem;
}

.pros ul,
.cons ul {
  list-style: none;
  padding: 0;
}

.pros ul li,
.cons ul li {
  display: flex;
  align-items: center;
  margin-bottom: 0.8em;
}

.pros ul li::before {
  content: "✔";
  margin-right: 0.5em;
  color: #fff;
  font-weight: bold;
}

.cons ul li::before {
  content: "✖";
  margin-right: 0.5em;
  color: #fff;
  font-weight: bold;
}

/* Custom Bullet List */
.custom-ul {
  list-style: none;
  margin: 1.5em 0;
  padding: 0;
}

.custom-ul li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.5em;
}

.custom-ul li::before {
  content: "●";
  position: absolute;
  left: 0;
  font-size: 1.1em;
  line-height: 1.6; 
  color: #2c3e50;
}

/* Custom Numbered List */
.custom-ol {
  list-style: none;
  margin: 1.5em 0;
  padding: 0;
  counter-reset: custom-counter;
}

.custom-ol li {
  position: relative;
  padding-left: 2em;
  margin-bottom: 0.5em;
  counter-increment: custom-counter;
}

.custom-ol li::before {
  content: counter(custom-counter) ".";
  position: absolute;
  left: 0;
  font-size: 1.1em;
  font-weight: bold;
  color: #2c3e50;
}

/* Footer */
footer {
  background: #2c3e50;
  color: #fff;
  text-align: center;
  padding: 1.5em 1em;
  margin-top: 2em;
}

footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 1em 0;
  display: flex;
  justify-content: center;
  gap: 1.5em;
}

footer .footer-links ul li a {
  color: #1abc9c;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

footer .footer-links ul li a:hover {
  color: #16a085;
}

footer .logos {
  display: flex;
  justify-content: center;
  gap: 2em;
  margin: 1em 0;
}

footer .logos img {
  width: 120px;
  height: auto;
  transition: transform 0.3s;
}

footer .logos img:hover {
  transform: scale(1.1);
}

/* Responsive + Burger menu */
@media (max-width: 768px) {
  header {
    position: sticky;
  }

  .burger {
    display: flex;
  }

  /* робимо місце під кнопку справа */
  header .logo {
    flex: 1;
  }

  /* випадаюче меню */
  header nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #111;
    padding: 12px 16px;
    z-index: 999;
  }

  header nav.is-open {
    display: block;
  }

  header nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  header nav ul li a {
    display: block;
    width: 100%;
    padding: 10px 8px;
    border-radius: 6px;
  }

  .pros-cons {
    flex-direction: column;
  }
}

/* FIX: correct selectors for your HTML (.site-header / .site-nav) */
.site-header{
  background: linear-gradient(to right, #2c3e50, #34495e);
  color:#fff;
  padding: 1.5em;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header .header-inner{
  display:flex;
  align-items:center;
  gap: 12px;
}

/* logo left */
.site-header .logo{
  flex: 0 0 auto;
}

/* menu RIGHT on desktop */
.site-header .site-nav{
  margin-left: auto;
}

.site-header .site-nav ul{
  display:flex;
  gap: 1rem;
  list-style:none;
}

.site-header .site-nav ul li a{
  color:#fff;
  text-decoration:none;
  font-weight:bold;
  padding:0.5em 1em;
  border-radius:5px;
  transition: background 0.3s;
}

.site-header .site-nav ul li a:hover{
  background: rgba(255,255,255,0.2);
}

/* burger (hidden desktop) */
.site-header .burger{
  display:none;
  width:44px;
  height:44px;
  border:0;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius:10px;
  cursor:pointer;
  padding:10px;
  flex-direction:column;
  justify-content:center;
  gap:6px;
}

.site-header .burger span{
  display:block;
  height:2px;
  width:24px;
  background:#fff;
  border-radius:2px;
}

/* Mobile */
@media (max-width: 768px){
  /* burger RIGHT */
  .site-header .burger{
    display:flex;
    margin-left: auto; /* key: pushes it to the right */
  }

  /* hide dropdown by default */
  .site-header .site-nav{
    display:none;
    position:absolute;
    left:0;
    right:0;
    top:100%;
    background:#111;
    padding:12px 16px;
    z-index:999;
    margin-left: 0;
  }

  .site-header .site-nav.is-open{
    display:block;
  }

  .site-header .site-nav ul{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }

  .site-header .site-nav ul li a{
    display:block;
    width:100%;
    padding:10px 8px;
    border-radius:6px;
  }
}

header{
  display: block;              /* override old: display:flex */
}

header .header-inner{
  display:flex;
  align-items:center;
  justify-content: space-between; 
  width:100%;
  position: relative;          
}

/* на десктопі nav справа */
header .site-nav{
  margin-left: auto;
}

@media (max-width: 768px){
  .burger{
    display:flex;
    margin-left: auto;
  }

  header .site-nav{
    display:none;
    position:absolute;
    left:0;
    right:0;
    top:100%;
    background:#111;
    padding:12px 16px;
    z-index:999;
    margin-left: 0;
  }

  header .site-nav.is-open{
    display:block;
  }

  header .site-nav ul{
    flex-direction:column;
    gap:10px;
  }
}

.casino-table {
    width: 100%;
    table-layout: fixed;
    margin: 1em 0;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.casino-table th,
.casino-table td {
    padding: 0.8em;
    text-align: left;
    border-bottom: 1px solid #ddd;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.casino-table th {
    background: #2c3e50;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.casino-table tr:hover td {
    background: #ecf0f1;
}

.casino-table th:nth-child(1),
.casino-table td:nth-child(1) { width: 30%; }

.casino-table th:nth-child(2),
.casino-table td:nth-child(2) { width: 20%; }

.casino-table th:nth-child(3),
.casino-table td:nth-child(3) { width: 25%; }

.casino-table th:nth-child(4),
.casino-table td:nth-child(4) { width: 25%; }

@media (max-width: 768px) {
    .casino-table th,
    .casino-table td {
        padding: 0.6em;
        font-size: 0.8rem;
    }
}

/* FAQ Cards */
.faq-list {
    margin: 1.5em 0;
}

.faq-item {
    background: #fff;
    border-left: 4px solid #2980b9;
    border-radius: 0 8px 8px 0;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.08);
    padding: 1.2em 1.5em;
    margin-bottom: 1em;
}

.faq-item h3 {
    color: #2c3e50;
    font-size: 1rem;
    margin-bottom: 0.4em;
}

.faq-item p {
    color: #555;
    margin: 0;
}
