li{
list-style: none;
}
ul {
list-style: none !important;
}


* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 
                 "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #222;
    background: #f7f8fa;
    -webkit-font-smoothing: antialiased;
}

/* ===============================
   WRAPPER
================================= */

#wrapper-fluid {
    width: 100%;
    min-height: 100vh;
    background: #ffffff;
    position: relative;
}
/* ===============================
   SKIP TO CONTENT
================================= */

.sr-only {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.sr-only-focusable:focus {
    position: fixed;
    top: 15px;
    left: 15px;
    width: auto;
    height: auto;
    padding: 10px 16px;
    background: #e60023;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    z-index: 99999;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.navbar-nav,
.navbar-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-nav li {
    position: relative;
}

/* =====================================
   HEADER
===================================== */

#header {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 4px 25px rgba(0,0,0,0.05);
}

#navigation .container {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

/* =====================================
   LOGO
===================================== */

.navbar-brand {
    padding: 15px 0;
}

.navbar-brand img {
    max-height: 52px;
    width: auto;
}

/* =====================================
   MAIN MENU
===================================== */

.navbar-collapse {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 28px;
  list-style: none;
}

.navbar-nav > li > a {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    padding: 25px 0;
    text-decoration: none;
    transition: 0.3s ease;
}

/* Hover underline effect */
.navbar-nav > li > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 18px;
    width: 0;
    height: 2px;
    background: #e60023;
    transition: 0.3s ease;
}

.navbar-nav > li > a:hover {
    color: #e60023;
}

.navbar-nav > li > a:hover::after {
    width: 100%;
}

/* Active link */
.navbar-nav > .current-menu-item > a {
    color: #e60023;
}

.navbar-nav > .current-menu-item > a::after {
    width: 100%;
}
/* burher hide */
.navbar-toggle {
    display: none;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 10px;
}

/* show */
@media (max-width: 991px) {
    .navbar-toggle {
        display: block;
    }
}
.navbar-toggle .icon-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: #222;
    margin: 5px 0;
    transition: 0.3s ease;
}


/* =====================================
   DROPDOWN (HOVER ONLY)
===================================== */

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    max-width: 220px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    padding: 12px 0;
    
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
  
}
.navbar-nav > li:last-of-type > .dropdown-menu {
    max-width: 50px;
}

/* Hover show submenu */
@media (min-width: 992px) {
    .navbar-nav > li.dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: 0.2s ease;
}

.dropdown-menu li a:hover {
    background: #f5f5f5;
    color: #e60023;
}

/* Hide extra-toggle on desktop */
@media (min-width: 992px) {
    .extra-toggle {
        display: none;
    }
}

/* =====================================
   BURGER
===================================== */

.navbar-toggle {
    border: none;
    background: transparent;
}

.navbar-toggle .icon-bar {
    background: #222;
    height: 2px;
    width: 22px;
}

/* =====================================
   MOBILE
===================================== */

@media (max-width: 991px) {

    .navbar-collapse {
        display: none !important;
        flex-direction: column;
        width: 100%;
        padding: 15px;
        background: #fff;
        border-top: 1px solid #eee;
    }
  
  .navbar-header {
  padding: 0 10px;display: flex;justify-content: space-between;width: 100%;
  }

    .navbar-collapse.open {
        display: flex !important;
    }

    .navbar-nav {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .navbar-nav > li > a {
        padding: 12px 0;
        border-bottom: 1px solid #eee;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding-left: 15px;
    }

    .navbar-nav > li.open > .dropdown-menu {
        display: block;
    }

    .extra-toggle {
        position: absolute;
        right: 0;
        top: 12px;
    }
}
h1 {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 25px;
}

h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 40px 0 20px;
    position: relative;
    padding-left: 15px;
}

            /* =========================
   PREMIUM INTRO BLOCK
========================= */

.hide_me {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 30px 30px 30px;
    margin: 25px 0 35px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    border: 1px solid #f1f1f1;
    overflow: hidden;
}

/* subtle gradient border effect */
.hide_me:before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg,#ff512f,#dd2476,#ff512f);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}

/* layout */

.hide_me {
    display: flex;
    align-items: center;
    gap: 25px;
  width: 95%;
}

/* image styling */

.hide_me img {
    width: 130px;
    height: 130px;
    object-fit: contain;
    border-radius: 18px;
    padding: 10px;
    background: #f8f9ff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform .3s ease;
}

.hide_me:hover img {
    transform: scale(1.05);
}

/* text styling */

.hide_me strong {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    display: block;
}

/* highlight keywords look */

.hide_me strong::first-line {
    font-weight: 700;
    font-size: 18px;
    color: #111;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 768px) {

    .hide_me {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .hide_me img {
        width: 100px;
        height: 100px;
        margin-bottom: 10px;
    }

    .hide_me strong {
        font-size: 15px;
    }

}
            /* ===============================
   GEO TABLE → REAL CARDS
================================ */

/* ===============================
   CASINO GRID CONTAINER
================================ */

.geo-table-12342 {
    display: grid;
    gap: 20px;
    position: relative;
}

/* ===============================
   SHOW ONLY FIRST 10
================================ */

.geo-table-12342 .geo-one-table:nth-child(n+11) {
    display: none;
}

.geo-table-12342.show-all .geo-one-table {
    display: block;
}

/* ===============================
   CARD STYLE
================================ */

.geo-one-table {
    background: #ffffff;
    border-radius: 20px;
    padding: 12px 22px;
    border: 1px solid #ececec;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all .3s ease;
    float: none !important;
    width: 95%;
}

.geo-one-table:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.10);
}

/* ===============================
   INTERNAL GRID
================================ */

.geo-row {
    display: grid;
    grid-template-columns: 80px 170px 1fr 170px;
    align-items: center;
    gap: 20px;
}

/* ===============================
   RANK BADGE
================================ */

.geo-col-1 div {
    background: linear-gradient(135deg,#ff512f,#dd2476);
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    border-radius: 50px;
    padding: 10px 0;
    width: 60px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(221,36,118,0.4);
}

/* TOP 3 COLORS */





/* ===============================
   LOGO
================================ */

.geo-col-2 img {
    max-height: 65px;
    width: auto;
    object-fit: contain;
    transition: transform .3s ease;
}

.geo-one-table:hover .geo-col-2 img {
    transform: scale(1.05);
}

/* ===============================
   BONUS BOX
================================ */

.casino-bonus {
    display: inline-block;
    background: #f4f6ff;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 8px;
}

/* ===============================
   STATS
================================ */

.geo-bonus-2,
.geo-bonus-3 {
    font-size: 14px;
    color: #666;
    margin: 2px 0;
  display: none;
}
            .geo-bonus-line{
            display: none;
            }

/* REMOVE DUPLICATE COLUMN */

.geo-col-4 {
    display: none;
}

/* ===============================
   PLAY BUTTON
================================ */

.geo-button-play {
    background: linear-gradient(135deg,#00c853,#00e676);
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #fff !important;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(0,200,83,0.4);
    transition: all .3s ease;
    text-align: center;
}

.geo-button-play:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0,200,83,0.6);
}

/* ===============================
   REVIEW LINK
================================ */

.geo-read-review {
    border-radius: 50px;
    padding: 7px 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff !important;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(0, 200, 83, 0.4);
    transition: all .3s ease;
    text-align: center;
    text-decoration: none;
    background: lightblue;
}

.geo-read-review:hover {
    color: #000;
}

/* ===============================
   BUTTON (More Casinos)
================================ */

#myBtn {
    display: inline-block;
    margin: 30px 0;
    padding: 14px 36px;
    background: linear-gradient(135deg,#ff512f,#dd2476);
    color: #fff;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: all .3s ease;
}

#myBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(221,36,118,0.5);
}

/* ===============================
   MOBILE VERSION
================================ */

@media (max-width: 992px) {

    .geo-row {
        grid-template-columns: 70px 120px 1fr;
        gap: 15px;
    }

    .geo-col-6 {
        grid-column: 1 / -1;
        text-align: center;
        margin-top: 10px;
    }

    .geo-button-play {
        width: 100%;
    }
}

@media (max-width: 600px) {

    .geo-one-table {
        padding: 18px;
    }

    .geo-row {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .geo-col-1 {
        order: -1;
    }

    .geo-col-2 img {
        max-height: 55px;
        margin-bottom: 10px;
    }

    .casino-bonus {
        font-size: 14px;
    }

}

/* Виправлення перекриття */

/* ВАЖЛИВО: дозволяємо grid нормально рости */
.geo-table-12342 {
    align-items: start;
}

/* #demo має займати весь ряд grid */
.geo-table-12342 > #demo {
    grid-column: 1 / -1;
}

/* Ховаємо додаткові казино */
#demo {
    display: none;
    position: relative;      /* прибираємо будь-який overlay */
    width: 100%;
}

/* Коли відкрито */
#demo.show-more {
    display: block;
}

/* Гарантія що нічого не absolute */
#demo,
#demo * {
    position: static !important;
}