html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* 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 {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    background: linear-gradient(to right, #2c3e50, #34495e);
    color: #fff;
    padding: 1.5em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo h1 {
    font-size: 1.8rem;
}

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);
}

/* 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);
}

/* 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;
     margin: 0;
}

.pros ul li, .cons ul li {
    display: flex;
    align-items: center;
    gap: 0.6em;
    margin-bottom: 0.6em;
    line-height: 1.5;

}

.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;
  line-height: 1.4;
}

.custom-ul li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1em; /* або 1.2em, якщо хочеш трохи більший */
  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: 1.8em;
  margin-bottom: 0.5em;
  counter-increment: custom-counter;
  line-height: 1.5;
}

.custom-ol li::before {
  content: counter(custom-counter) ".";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1em; /* зменшено з 1.5em */
  font-weight: 600;
  color: #2c3e50;
}


/* Tables */

.table--small table {
  font-size: 14px;
  border-collapse: collapse;
  width: 100%;
}

.table--alt thead {
  background-color: #f5f5f5;
}

.table--alt td, .table--alt th {
  border: 1px solid #ddd;
  padding: 8px;
}


/* Footer */
/* 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 Design */
@media (max-width: 768px) {
    header nav ul {
        flex-direction: column;
        align-items: center;
    }

    .pros-cons {
        flex-direction: column;
    }
}


/* 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;
}

/* Table */
.casino-table {
    width: 100%;
    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: 1em;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.casino-table th {
    background: #2c3e50;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.casino-table tr:hover td {
    background: #ecf0f1;
}

/* 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;
}
/* MOBILE MENU FIX */
.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  width: 25px;
  height: 3px;
  background: #fff;
  display: block;
}

/* mobile */
@media (max-width: 768px) {

  .burger {
    display: flex;
  }

  header nav {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: #2c3e50;
    display: none;
  }

  header nav ul {
    flex-direction: column;
    align-items: center;
    padding: 15px 0;
  }

  header nav.is-open {
    display: block;
  }
}


/* Beautiful Horizontal White Footer Topic Navigation (Home, Reviews, Slots, Bonuses) */
footer nav.footer-nav, footer nav#site-nav, .site-footer nav, footer nav {
    margin: 1rem 0 !important;
    text-align: center !important;
    width: 100% !important;
}

footer nav.footer-nav ul, footer nav#site-nav ul, .site-footer nav ul, footer nav ul {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 1.5rem !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 auto 1rem auto !important;
}

footer nav.footer-nav ul li, footer nav#site-nav ul li, .site-footer nav ul li, footer nav ul li {
    display: inline-block !important;
    margin: 0 !important;
    padding: 0 !important;
}

footer nav.footer-nav ul li a, footer nav#site-nav ul li a, .site-footer nav ul li a, footer nav ul li a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 1.05rem !important;
    padding: 0.4rem 0.8rem !important;
    border-radius: 4px !important;
    transition: color 0.3s ease, background-color 0.3s ease !important;
    display: inline-block !important;
}

footer nav.footer-nav ul li a:hover, footer nav#site-nav ul li a:hover, .site-footer nav ul li a:hover, footer nav ul li a:hover {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.2) !important;
    text-decoration: underline !important;
}

/* Original Template Footer Links (Kontakt, O nas, Privacy Policy) - Green */
footer .footer-links ul {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    gap: 1.5rem !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 1rem 0 !important;
}

footer .footer-links ul li a {
    color: #1abc9c !important;
    text-decoration: none !important;
    font-weight: bold !important;
    font-size: 1rem !important;
    transition: color 0.3s ease !important;
    background-color: transparent !important;
    padding: 0 !important;
}

footer .footer-links ul li a:hover {
    color: #16a085 !important;
    background-color: transparent !important;
    text-decoration: underline !important;
}


/* Ensure Footer Content, Logo, Nav and Copyright are Centered */
footer, .custom-footer, .site-footer {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

footer p, .footer-copy, .footer-text, .footer-disclaimer, .site-footer p {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
}

footer .footer-logo, .footer-logo-img, footer .logo {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0.5rem auto !important;
}


/* Scroll To Top Button Styling */
#upToTop, .to-top {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 45px !important;
    height: 45px !important;
    background-color: #2c3e50 !important;
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
    border-radius: 50% !important;
    font-size: 22px !important;
    font-weight: bold !important;
    line-height: 1 !important;
    cursor: pointer !important;
    display: none;
    justify-content: center !important;
    align-items: center !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3) !important;
    transition: transform 0.3s ease, background-color 0.3s ease !important;
    z-index: 9999 !important;
}

#upToTop:hover, .to-top:hover {
    background-color: #1abc9c !important;
    color: #ffffff !important;
    transform: translateY(-3px) scale(1.1) !important;
}
