
/* Universal Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* HTML and Body Styles */
html {
    font-size: 110%; /* Default 16px */
}

/* ensure Cookiebot stays visible above age-gate overlays */
#CybotCookiebotDialog { z-index: 2147483647 !important; }
.sister-block { display: inline-block; }
.site-type-badge {
    position: absolute;
    top: 2px;
    left: 8px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 12px;
    transform: skew(-15deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.83);
    z-index: 2;
    cursor: pointer;
}
.site-type-badge.sister {
    background: #bd23ee; /* Blue tone for Sister Site */
}
.site-type-badge.similar {
    background: #d55204 /* Red tone for Alternative Site */
}
.site-type-badge.official 
{  background: #0f2782}


.visit-btn:hover {
  background: linear-gradient(to bottom, #f51c9c, #a0065f);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 3px 5px rgba(0,0,0,0.3);
}

.visit-btn::after {
  content: " »";  /* simple arrow */
  font-weight: light;
  margin-left: 4px;
}
.anchor-adjust {
  display: inline-block;
  position: relative;
  top: -180px;  /* Adjust to match your sticky header */
  height: 0;
  visibility: hidden;
  pointer-events: none;
}

/* For H1 elements */
.first-letter-wrapper {
  display: inline-flex;
  align-items: baseline;
}

.star-icon {font-size:55%}
.gbsparkleheader {
  font-weight: 100 !important;
  text-rendering: optimizeLegibility;
  font-family: 'Segoe UI Symbol', sans-serif;
  color: gold;
  margin: 0 3px; /* Adjust spacing as needed */
}

.first-letter {
  /* Style your first letter if necessary */
}
#popupOverlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.4s ease forwards;
}

.popupBox {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  max-width: 320px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  animation: popIn 0.3s ease forwards;
}

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

.popupCloseTop {
  position: absolute;
  top: 5px;
  right: 8px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

.popupCloseBottom {
  margin-top: 10px;
  padding: 8px 16px;
  background: #444;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.popupCloseBottom:hover {
  background: #000;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes popIn {
  from {transform: scale(0.9); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}

jump-link-cta {
  text-align: center;
  margin: 5px 0;
}

.jump-link-cta a {
  display: inline-block;
  font-size: 1rem;
  text-decoration: underline !important;
  text-decoration-color: currentColor !important; /* resets transparent */
  text-decoration-thickness: 1px; /* optional for consistency */
}

.jump-link-cta a:hover {
  text-decoration: underline !important;
  text-decoration-color: #aa0662 !important; /* or currentColor */
}

#exitPopup {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.exitPopupBox {
  background: white;
  padding: 20px;
  max-width: 320px;
  text-align: center;
  border-radius: 10px;
  position: relative;
}
.exitPopupClose {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  background: none;
  border: none;
  cursor: pointer;
}
.exitPopupButton {
  margin-top: 15px;
}
.icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

/* For H2 elements */
.first-letter-wrapper-h2 {
  display: inline-flex;
  align-items: center;
}

.altBanner-wrapper {
  position: relative;
  width: 100%;
  margin: 5px auto;
  border-top: 1px dashed #ffccd5;
  border-bottom: 1px dashed #ffccd5;
  padding: 5px;
  background-color: #fff8f9;
  display: block;
  box-sizing: border-box;
}

@keyframes altBannerSlideIn {
  0% {
    transform: translateY(-120%);
    opacity: 0;
  }
  70% {
    transform: translateY(10%);
    opacity: 1;
  }
  85% {
    transform: translateY(-3%);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

#altBanner {
  margin: 0 auto;
  position: relative;
  text-align: center;
  background: linear-gradient(135deg, #fff 40%, #f9f9f9 100%);
  border: 2px dashed #ff3366;
  border-radius: 12px;
  box-shadow: inset 0 0 8px rgba(0,0,0,0.05), 0 3px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  max-width: 500px;
  width: 95%;
  padding: 2px 0;
  display: none;
}

#altBanner.initial-load {
  animation: altBannerSlideIn 0.8s ease forwards;
}

#altBanner span {
  position: absolute;
  top: 6px;
  left: 8px;
  background: #ff3366;
  color: #fff;
  font-size: 10px;
  padding: 2px 4px;
  border-radius: 3px;
  line-height: 1;
  font-weight: bold;
  letter-spacing: 0.5px;
}

#altBanner button {
  position: absolute;
  top: 4px;
  right: 6px;
  background: #ff3366;
  color: #fff;
  border: none;
  font-size: 16px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  line-height: 1;
}

#altBannerContent iframe {
  display: block;
  margin: 0 auto;
}

  /* Fade out animation */
  .fade-out {
    animation: fadeOut 0.4s ease forwards;
  }
  @keyframes fadeOut {
    to {
      opacity: 0;
      visibility: hidden;
    }
  }


  /* Fade out animation */
  .fade-out {
    animation: fadeOut 0.4s ease forwards;
  }
  @keyframes fadeOut {
    to {
      opacity: 0;
      visibility: hidden;
    }
  }


.visit-btn {
display: block;
margin-top: 0;
padding: 5px 5px;
background: #c2077b!important;
color: #fff!important;
font-size: 105%;
font-weight: 600;
text-decoration: none;
border-radius: 0;
transition: background .2s ease;
}


.dmca-badge img {
  max-width: 120px;   /* or any size you like */
  height: auto;       /* keeps proportions correct */
  display: block;     /* avoids inline spacing */
  margin: 10px auto;  /* centers it in footer */
}

#altBanner {
  animation: altBannerSlideIn 0.7s ease-out forwards;
}

.first-letter-h2 {
  /* Additional styling for the h2 first letter, if required */
}
.slot-item.animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.slot-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.sister-blurb {
margin: 20px 0 ;
padding: 15px 0 0 0;
background-color: #fff0f6;
border: 1px solid #ffb3d9;
border-radius: 5px;
font-size: 90%;
line-height: 1.5;
text-align: center;
}
.sister-blurb a {
    color: #c2077b;
    font-weight: 600;
    text-decoration: none;
}

.sister-blurb a:hover {
    text-decoration: underline;
}
.sister-block { display: inline-block; }


.sister-block h4 a {
padding: 0;
margin: 10px 0 0 0!important;
line-height: 1;
font-weight: 600!important;
display: block;
font-size: 115%;}


.sister-block {
flex-direction: row;
padding: 10px!important;
margin: 3px 0 10px 0;
}


.sister-block p {
line-height: 1.8rem;
font-size: 115%;
padding: 0 90px 0 20px;
margin-block-end: .8rem;
margin-block-start: 0;
min-height: 1.75em;
}

.sister-block h4 {
padding: 0 90px 0 20px; margin:0}


.sister-block {
    flex-direction: row; /* keep two columns even on mobile */
  }


#toggleSitesViewBtn, 
#toggleViewBtn, #toggleAltViewBtn,
#toggleAltViewBtn, #toggleViewBtn {
color: #436f94;
border:1px solid #436f94;
background-color: #fff;
font-weight: 600;
font-size: .95rem;
padding: 5px 10px;
border-radius: 6px;
cursor: pointer;
transition: background-color .3s ease,transform .15s ease;
}

#toggleSitesViewBtn:hover, 
#toggleViewBtn:hover, #toggleAltViewBtn:hover {
background-color: #fff;
color: #ff007a;
border: 1px solid #ff007a;
}

#toggleSitesViewBtn:active, 
#toggleViewBtn:active, #toggleAltViewBtn:active {
  transform: translateY(0); /* Reset on click */
}

#toggleSitesViewBtn:focus, 
#toggleViewBtn:focus, #toggleAltViewBtn:focus {
  outline: 2px solid #ff80b3;
  outline-offset: 2px;
}

.featured-badge {
position: absolute;
top: 2px;
left: 8px;
background: #258c11;
border: 1px solid #fff;
color: #fff;
font-size: 15px;
font-weight: 600;
padding: 3px 8px;
border-radius: 12px;
transform: skew(-15deg);
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.83);
z-index: 1//////;
  cursor: pointer; /* 👈 Add this */

}


/* Shared base for both developer badges */
.developer-badge,
.mini-developer-badge {
  position: absolute;
  left: 0;
  background: rgba(154, 12, 140, 1);
  color: #fff;
  font-weight: 700;
  border-radius: 4px;
  z-index: 5;
  pointer-events: none;
  max-width: 70%;
  white-space: nowrap;
  display: inline-block;

  /* skew effect */
  transform: skew(-14deg);
  transform-origin: left center;
}

.developer-badge {
  font-size: .8em;
  padding: 4px 12px;
  bottom: 90px;
    z-index:1

}

.mini-developer-badge {
  padding: 4px 5px;
bottom: 55px;
  font-size: .7em;
    z-index:1


}
/* unskew the text inside */
.developer-badge span,
.mini-developer-badge span {
  display: inline-block;
  transform: skew(14deg);
    z-index:1

  
}



.featured-badge::first-letter {
  text-transform: uppercase;
}

h2::before {
  content: '✨';
  display: inline-block;
  min-width: 0.6em;
}


.first-letter-h2 {
  display: inline-block;
  font-weight: bold;
  color: inherit; /* Inherit h2 colour */
  white-space: nowrap;
}

h1 {
  display: block;
  position: relative;
  font-size: clamp(1.64rem, 1.6vw + 0.5rem, 2rem); /* max now 32px */
  font-weight: 700;
  line-height: 1.3;
}

h2 {
  position: relative;
  font-size: clamp(1.17rem, 1.5vw + 0.4rem, 1.7rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.2px;
}

h2 span.headline {
  display: block;
  margin-top: 4px;
  font-size: 90%; /* Optional: slightly smaller */
  color: #666;     /* Optional: lighter text */
}

h3 {
  position: relative;
  font-size: clamp(1.33rem, 1.4vw + 0.4rem, 1.6rem); /* ~17.6px to 25.6px */
  font-weight: 700;
  color: #b10996;
  line-height: 1.4;
  margin-top: 2rem;
  margin-bottom: 1.2rem;
}

h4 {
  position: relative;
  font-size: clamp(1.28rem, 1vw + 0.4rem, 1.35rem); /* ~18.4px to 21.6px */
  font-weight: 700;
  line-height: 1.4;
  margin-top: 2rem;
  margin-bottom: 1.2rem;
}

h5 {
    font-size: clamp(1rem, 2.5vw, 1.5rem); /* Scales from 16px to 24px */
    font-weight: 600;
    color: #ad0570;
}

.visit-banner {
  position: fixed;
  top: -200px; /* Start hidden */
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.96);
  border: 2px solid #aa0662;
  border-radius: 10px;
  padding: 10px;
  z-index: 5500;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
  transition: top 0.6s ease, opacity 0.6s ease;
  opacity: 0;
}

.visit-banner.show {
  top: 240px; /* Slides down */
  opacity: 1;
}

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

.close-banner {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #aa0662;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  cursor: pointer;
  font-size: 18px;
  line-height: 20px;
}






.center {text-align:center}
.line {
border-top: 2px dashed #e318b6;
width: 100%;
margin: 30px 0 20px 0;
height: 0;
}

body {
font-display: optional;
background: url(https://www.glitzybingo.co.uk/assets-file/assets-images/glitzybingo/css/glitzy-bingo-bg-original-main.webp);
padding: 0;
font-family: "Josefin+Sans",sans-serif;
background-position: 10px 3px;
background-attachment: fixed;
margin:0 0 150px 0!important
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}



/*xmasbody { 
    font-family: 'Outfit', Arial, sans-serif;
    overflow-x: hidden;
    background: url(https://www.glitzybingo.co.uk/images/essentials/seasons/xmas/xmas-bg.webp);
    padding: 0;
}*/


.demo-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.demo-header {
width: 90%; padding:10px 10px; 
display: flex;
justify-content: space-between;
align-items: center;
padding: 0;
text-align:center; 
background: #000;
border-radius: 8px 8px 0 0;
box-shadow: 0 -4px 10px rgba(0,0,0,.2);
margin: 0px 0 0 0;
}


.demo-header h2 {font-size:88%; line-height:1!important}

a.moredemos {
text-decoration: underline!important;
color: #fff!important;margin:10px;
padding: 20px;
font-size: 95%;
}

.button-container {
    display: inline-table;
    justify-content: center;
    gap: 15px; /* Add some space between the buttons */
    align-items: center; /* Ensure vertical alignment */
    margin-top: 20px; /* Adjust as necessary for spacing */
}


.iframe-wrapper {
    display: block;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 80vh;
    margin: 0 auto;
}

.iframe-wrapper iframe {
    width: 100%;
    height: 100%;
}

/* Styling for the toggle switch */
.switch {
position: relative;
display: inline-block;
width: 45px;
height: 24px;
}
.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
position: absolute;
cursor: pointer;
top: 0;
    background-color: #2196F3;

left: 0;
right: 0;
bottom: 0;
transition: .4s;
border-radius: 34px;
}

.slider:before {
position: absolute;
content: "";
height: 16px;
width: 16px;
left: 2px;
bottom: 4px;
background-color: #fff;
transition: .4s;
border-radius: 50%;
}

.megaways-label {font-size:80%}
input:checked + .slider {
    background-color: #c10f8e;

}

.games-dropdowns {display:block}
.provider-dropdown, .theme-dropdown {
margin: 0 10px;
display: inline-flex;
color: #c10f8e;
font-weight: 600;
border-radius: 100px;
width: 30%;
margin: 10px 0 10px 0;
}


input:checked + .slider:before {
    transform: translateX(26px);
}




.iframe-wrapper iframe {
    width: 100%;
    height: 100%; /* Ensure it occupies full height */
    border: none;
}

/* Link Styles */
/* Base Link Styles */



/* Desktop Paragraph Styling */
p {
  font-size: 19px; /* Modern base size */
  line-height: 1.6;
  font-weight: 400;
  color: #333;
}


.review-border-box p {
  margin-bottom: 1em!important;

}

/* Bold Text */
b, strong {
  font-weight: 600;
  font-size: 1.05em;
}

a {
    text-decoration: underline;
    text-decoration-color: transparent;
    text-decoration-thickness: 1px;
    transition: text-decoration-color 0.3s ease, color 0.3s ease;
    color: #aa0662;
}

a:hover,
a:focus {
    text-decoration-color: #aa0662;
    color: #077bb4;
}

a {
    font-weight: 400;
    text-decoration-skip-ink: auto;
    text-underline-offset: 2px;
}

p a {
    color: #aa0662!important;
    font-size: 98%;
    font-weight: 400;
}


a img, a:active a img, a:link a img, a:visited a img {
    text-decoration: none !important;
}


article a {
    z-index: 1; /* Lower z-index unless explicitly needed */
}


.hidden-review {
  display: none;
}


.editorial-box {
background: #f9f9f9;
border: 1px solid #ddd;
border-left: 5px solid #dd1c7c;
border-radius: 6px;
padding: 16px;
margin: 20px 0;
font-size: 10px;
line-height: 1.6;
max-width: 100%;
display: inline-block;
}

.editorial-flex {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.editorial-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.editorial-text {
  flex: 1;
}

.editorial-label {
  font-weight: bold;
  color: #8a6d3b;
  margin-bottom: 8px;
  font-size: 16px;
}

.editorial-link {
font-size: 100%;
color: #8a6d3b;
text-decoration: underline!important;
}

.editorial-link:hover {
  color: #5e4a1f;
}

.review-cta-button {
font-weight:600;
display:block; 
margin:0;
font-size:115%
}





.review-show-more-button {
  background: #f6a400;
  color: #fff;
  font-weight: bold;
  padding: 10px 16px;
  border: none;
  border-radius: 5px;
  margin-top: 15px;
  cursor: pointer;
}

.review-bubble-block {
  margin: 40px auto;
  padding: 25px;
  max-width: 750px;
  background: #f8f9fa;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-family: 'Segoe UI', sans-serif;
}

.review-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.review-form textarea {
  width: 100%;
  padding: 12px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  resize: vertical;
  background: #fff;
}

.review-form button {
  background-color: #007f5f;
  color: #fff;
  padding: 10px 18px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
  align-self: flex-start;
}

.review-form button:hover {
  background-color: #00694c;
}

.star-select label {
  display: inline-block;
  font-size: 18px;
  color: #f6a400;
  margin-right: 15px;
  cursor: pointer;
}

.star-select input[type="radio"] {
  margin-right: 6px;
  transform: scale(1.2);
}

.thank-you {
  background: #e6ffed;
  border-left: 5px solid #28a745;
  padding: 12px 15px;
  border-radius: 5px;
  color: #155724;
  font-weight: 500;
}

.bubble-review-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.review-bubble {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
  max-width: 380px;
  flex: 1 1 250px;
  animation: fadeIn 0.4s ease-in;
}

.bubble-stars {
  color: #f6a400;
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: bold;
}

.bubble-comment {
  font-size: 15px;
  color: #333;
  font-style: italic;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

#star-rating span,
#star-rating-readonly span {
  font-size: 1.6rem;
  color: #ccc;
  cursor: pointer;
}

#star-rating span.selected,
#star-rating-readonly span.selected {
  color: #ffc107;
}

#star-rating span.hover {
  color: #ffdb58;
}

#star-rating.voted span {
  cursor: default;
}

.rating-thanks {
  margin-left: 10px;
  font-weight: bold;
  color: green;
  transition: opacity 0.5s;
}

.rating-thanks.fade-out {
  opacity: 0;
}
.rating-label {padding:20px; margin:10px 0}

nav#breadcrumbs {
background-color: #ecf1f6;
padding: 25px 5px;
font-size: .95rem;
font-weight: 500;
margin: 0;
display: flex;
align-items: center;
width: 100%;
}






.clock-emoji {
  font-size: 16px;
}
ol.breadcrumb {
  list-style: none;
  margin: 0;
  display: flex;
  flex-wrap: nowrap;      /* prevent wrapping */
  align-items: center;
  overflow-x: auto;       /* enable horizontal scroll if needed */
  white-space: nowrap;    /* prevent text wrap */
  -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
}


ol.breadcrumb::-webkit-scrollbar {
  display: none;
}
ol.breadcrumb {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;     /* Firefox */
}

.breadcrumb-item {
  color: #555;
  font-size: inherit;
  display: flex;
  align-items: center;
}

.breadcrumb a {
  color: #0074a2;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.breadcrumb a:hover,
.breadcrumb a:focus {
  color: #005f87;
  text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: #aaa;
  padding: 0 3px; /* was 6px — now tighter */
  font-weight: 400;
}

.breadcrumb-item.active {
  color: #333;
  font-weight: 500;
}



i.glyphicon {
    font-size: 80%;
}

i.glyphicon-star-empty {
    color: #bb0e94;
    font-weight: 500;
}

i.glyphicon-star {
    color: #e70e6c;
    font-weight: 400;
}

i.glyphicon-home {
    color: #fca4cb;
    font-weight: 600; /* Corrected from 606 to 600 */
}

.colourchange {
  background: linear-gradient(45deg, #c20a47, #c20a99, #fe4e4e, #634490, #ee5397);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 400% 400%; /* Larger background for smooth animation */
  display: inline-block;
  padding: 2px 0;
  position: relative;
  animation: bgMove 20s infinite linear; /* Adjust timing as needed */
}

/* Keyframes for animated background */
@keyframes bgMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Ensure full text inside H2 gets the effect */
h2 .colourchange {
  display: inline;
}



.ticker-container {
    max-width: 1100px; /* Limit the maximum width */
    overflow: hidden; /* Hide anything outside this container */
    background-color: #370129; /* Dark background for the ticker */
    color: #fff; /* White text */
    position: relative; /* For positioning internal elements absolutely */
    height: 40px; /* Fixed height */
    display: flex; /* Use flex to align children */
    align-items: center; /* Center items vertically */
    border: 1px solid transparent; /* Border setup for consistency */
    border-color: transparent transparent transparent #370129; /* Just bottom border */
}

.ticker {
  display: flex;
  white-space: nowrap;
}


@keyframes slide {
  0%   { transform: translateX(10%); }
  100% { transform: translateX(-100%); }
}

.ticker-item, .more-promotions-button {
    display: inline-flex; /* Flex display to align text within links */
    align-items: center; /* Align items vertically for consistent height */
    justify-content: center; /* Center content horizontally within each item */
    padding: 0 30px; /* Spacing around the text */
    font-size: 115%; /* Slightly larger text for readability */
    color: white; /* White text for visibility */
    text-decoration: underline dotted rgba(255, 255, 255, 0.5); /* Subtle underlining */
}

.ticker-item:hover, .more-promotions-button:hover {
    color: cyan; /* Change text color on hover */
    text-decoration-color: cyan; /* Matching underline color on hover */
}

.more-promotions-button {
    background: linear-gradient(122deg, #d90488, #f509e3); /* Stylish gradient background */
    border-radius: 20px; /* Rounded corners */
    margin: 0 50px; /* Space before and after the button */
    font-size: 18px; /* Font size for the button */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Subtle shadow for depth */
    cursor: pointer; /* Indicate the button is clickable */
    transition: background-color 0.3s, color 0.3s; /* Smooth transition for hover effects */
}

.more-promotions-button:hover {
    background-color: #f06; /* Darker pink background on hover */
}


/* Header and Navbar Styles */
header, .navbar-default {
    display: flex;
    flex-direction: column;
    min-height: 50px;
    min-width: 320px;
}

/* Fixed header that respects container width */
header.header-fixed {
  position: fixed;
  top: 0;
  left: 50%;             /* Center in viewport */
  transform: translateX(-50%);
  width: 100%;
  max-width: 1100px;     /* Match container */
  z-index: 6000;
  border: 1px solid #000;
  background: #fff;      /* Stops bleed from behind */
}

header.header-fixed {
  position: fixed; /* Fix the header to the viewport */
  width: 94%; /* Ensure it spans the full width */
  z-index: 6000; /* Ensure it's above other content */
  border:1px solid #000
}


/* Keep the logo container structured */
.glitzy-logo {
  position: relative;
  display: inline-block;
}

/* Real logo visible */
.glitzy-logo .logo-real {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Bait logo hidden on your real site */
.glitzy-logo .logo-bait {
  display: none !important;
}

/* Breadcrumb opacity fix – don’t block nav clicks */
#header-nav .opacity {
  pointer-events: auto;  /* make nav & dropdowns clickable */
}

/* Make sure links are fully clickable */
.glitzy-logo a {
  display: block;
}


.notice-box {
  border: 2px solid #800080;
  background: #fdf5ff;
  padding: 15px;
  border-radius: 10px;
  max-width: 600px;
  margin: 20px auto;
  text-align: center;
  transition: opacity 0.3s ease;
}

#closeNotice:checked + .notice-box {
  display: none;
}

.close-link {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 16px;
  background: #800080;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}

/* Make sure the logo/link can receive clicks */
.glitzy-logo a,
.glitzy-logo img {
  pointer-events: auto;
}
/* Make sure the anchor is a solid hit-area */
.glitzy-logo { position: relative; }
.glitzy-logo a { display:block; }

/* Keep your existing pass-through */
#header-nav .opacity { pointer-events: none; }
.glitzy-logo a, .glitzy-logo img { pointer-events: auto; }

#header-nav {
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
  background-position: 0 0!important;
  background-repeat: repeat-x;
  background: url(https://www.glitzybingo.co.uk/assets-file/assets-images/glitzybingo/css/glitzy-bingo-header2025-main.webp) 0 0!important;
  overflow: hidden;
  width: 100%;
  height: 90px;
  z-index: 3000;
  max-width: 1100px;
  padding: 0;
  position: fixed;
  position: relative!important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


/* Only render in app modes so it won’t appear in normal browser */
@media (display-mode: standalone),(display-mode: fullscreen),(display-mode: window-controls-overlay){
  #appBackBtn {
    position: fixed;
    bottom: 100px;
    left: 20px;
    z-index: 9999;
    padding: 10px 14px;
    background: #fff;
    border: 2px solid #ccc;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    cursor: pointer;
    opacity: 0.9;
    transition: background .2s, opacity .2s;
  }
  #appBackBtn:hover { background: #f0f0f0; opacity: 1; }
}


.slots-guide {max-width:200px; height: auto; float:left; margin: 0 25px 5px 0}


#header-nav a {
    border-bottom: 0 !important;
}

.navbar {
    height: 40px;
    background-color: #000;
}

.navbar a {
    color: #fff;
}

.navbar-default {
    border: 1px solid #fff;
    z-index: 3000 !important;
    max-width: 1100px;
    height: 47px !important;
    width: 94%;
    margin: 104px auto;
    background-color: #000;
}

.navbar-collapse {
flex-basis: 100%!important;
margin: 0;
flex-grow: 0!important;
align-items: center;
max-width: 1100px;
height: 40px;
}

/* Logo Styles */
.glitzy-logo {
    margin: -5px 0 0 40px;
    width: 80%;
    height: auto;
}

.glitzy-logo img {
    width: 100%;
    height: auto;
}
.glitzy-logo a { position: relative; }
.glitzy-logo a {

    display: block;
    z-index: 9000;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
    -webkit-appearance: none;
}

::-webkit-scrollbar:vertical {
    width: 12px;
}

::-webkit-scrollbar:horizontal {
    height: 12px;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(71, 4, 37, 0.5) !important;
    border-radius: 10px;
    border: 2px solid #ffffff !important;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #ffffff !important;
}

/* Scrolling Box Styles */
.scrolling_box, .scrolling_box-main {
    margin: 0 0 10px 5px;
    max-width: 100%;
    background-color: #fff;
    border: 2px dashed #7fc7eb;
    overflow-y: scroll !important;
    border-radius: 10px;
    padding: 0 6px;
    overflow-x: hidden;
    display: inline-block;
}

.scrolling_box {
    max-height: 130px;
}

.scrolling_box-main {
    max-height: 100px;
}

/* Link Styles */
a:active, a:focus {
    outline: none !important;
    border: none !important;
}

/* Image Styles */
img {
    width: 100%;
    height: auto;
}

/* Clearfix Styles */
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.clearfix {
    display: block;
}
* html .clearfix {
    height: 1px;
}

/* Wrapper Styles */
#wrapper {
padding: 0 0 10px 0;
border-top: 1px solid #000;
}


/* Section Styles */
section {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Container and Page Styles */
#container2 {
margin: 0 auto 0 auto;
position: block;
max-width: 1100px;
width: 94%;
background-color: #fff;
display: flex;
flex-direction: column;
min-height: 500px;
min-width: 320px;
}


article {
    margin: 0 auto;
    max-width: 1100px;
}

.ticker-bar {
background: #000;
color: #fff;
font-size: 15px;
font-weight: 600;
padding: 6px 0;
overflow: hidden;
white-space: nowrap;
position: relative;
border: 1px solid #fff;
}

#page {
    margin: 130px auto 0 auto;
    padding: 0;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    min-height: 500px;
    min-width: 320px;
}


.pagination-controls button {
  background-color: #4a90e2;
  color: white;
  border: none;
  padding: 8px 14px;
  margin: 0 5px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}
.pagination-controls button:disabled {
  background-color: #a0a0a0;
  cursor: not-allowed;
}

.spacer {
display: inline-block;
width: 100%;
height: 33px;
}


.opacity {
max-width: 430px;
height: auto;
background: 0 0!important;
margin: 0 auto;
position: block;
z-index: 9000;
}


/* Sparkle Animation Styles */
.sparkle {
    position: absolute;
    width: 10px; /* Adjust size as needed */
    height: 10px; /* Adjust size as needed */
    background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    opacity: 0;
    animation: sparkle-animation 1s ease-out forwards;
}

@keyframes sparkle-animation {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(2); /* Flare out effect */
    }
}


/* Breadcrumb Navigation Styles */



 /* Text Boxes */
.disclaimerbody {font-size:80%}
.disclaimer {font-size:80%}


.featured-row {padding:0 0 50px 0}



.h-box {
display: inline-block;
text-align: center;
min-height: 40px;
position: relative;
background-color: #f6fefe;
border-top: 2px solid #c1e5f7;
border-bottom: 2px solid #c1e5f7;
width: 100%;
padding: 10px 140px;
margin: 6px 0;
box-sizing: border-box;
}
.featured-row p, .h-box p {font-weight:500!important; padding:5px 0; font-size:115%; line-height:1.37em}
.h-box p strong {font-weight:600!important}


.light p b, .light p strong {
font-weight: 500!important;
font-size: 97%;
}

#relatedContainer, #slotsContainer {padding:10px 0 0 0}

.published_date {
font-size: 95%;
border-bottom: 2px dashed #c1e5f7;
margin: 10px 0 10px 0;
line-height: 2;
font-weight: 500;
}

.pinkbg, .yellowbg { display: flex; flex-direction: column;}

.pinkbg
 {

    border-top: 1px dashed rgba(201, 52, 210, 0.42) !important;
    border-bottom: 1px dashed rgba(201, 52, 210, 0.42) !important;

    background-color: rgba(255, 241, 251, 0.53) !important;
}

.yellowbg {
    border-top: 1px dashed rgba(225, 238, 147, 1) !important;

    border-bottom: 1px dashed rgba(225, 238, 147, 1) !important;
    background-color: rgba(253, 255, 251, 0.53) !important;
}


.review-border-box ol, .review-border-box ul {
width: 100%;
display: block;
font-size: 115%;
margin: 30px auto;
background-color: #fff;
border: 2px dashed #701294;
border-radius: 10px;
padding: 12px 9px 12px 10px;
}

.review-border-box li {
display: block;
padding: 0;
margin: 15px 10px;
text-align: left;
list-style-type: square;
list-style-position: outside;
list-style-image: none;
line-height: 1.3rem;
}

.review-border-box li::before {
    content: '\2605'; /* Unicode star character */
    display: inline;
    position: relative;
    font-size: 18px;
    color: #eb9110; /* Final colour used */
    margin: 0;
    padding: 0 10px 0 0;
}

/* Image styling inside .game-preview blocks */
.review-border-box .game-preview img {
    max-height: 250px;
    width: auto;
    float: left;
    margin: 30px 30px 0 0;
    border-radius: 50px;
    border: 5px solid #bb1cbf;
}

/* Highlight bold or strong tags inside list items */
.review-border-box li b,
.review-border-box li strong {
    color: #810264;
    margin:0
}

.game-preview {
float: left;
margin: 0 30px 10px 0;
max-width: 240px;
text-align: center;
}





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

.slot-rating-wrapper {
  margin-top: 10px;
  width: 100%;
  text-align: center;
}

.simplify-float {
  position: fixed;
  bottom: 200px;       /* Adjust height as needed */
  left: 50%;
  transform: translateX(-50%);
  z-index: 11000;
}

/* Heading - Network Background Box */
#network-background-box {
background: url(https://www.glitzybingo.co.uk/assets-file/assets-images/glitzybingo/css/glitzybingo-stars-background-main.webp) center center/cover no-repeat;
}





#network-background-box .gradient-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(-45deg, #a206a4, #bc0ab2, #23bed5, #d55e23, #f9a708);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    opacity: 0.7;
    z-index: 1;
} 

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Content Wrapper */
#network-background-box .content-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.network-image-main {
position: absolute;
border-radius: 50%;
overflow: hidden;
border: 5px solid rgba(111,5,110,.82);
box-shadow: 0 0 6px rgba(0,0,0,.3),inset 0 0 10px rgba(0,0,0,.3);
}

/* Fade-in animation */
.slot-item {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.slot-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Slot image */
.slot-item img {
  display: block;
  width: 100%;
  height: auto;
}

/* Hover overlay */
.slot-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(17, 17, 17, 0.75);
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.slot-item:hover .slot-overlay,
.slot-item:focus-within .slot-overlay {
  opacity: 1;
}

.slot-overlay-inner {
  text-align: center;
}

/* White label above Play button (only visible in overlay) */
.slot-title {
font-size: 18px;
font-weight: 600;
/* background: rgba(255,255,255,.95); */
color: #fff;
padding: 4px 10px;
margin-bottom: 10px;
display: block;
}

/* Play button styling */
.slot-overlay-button {
  display: inline-block;
  padding: 6px 12px;
  background-color: #c10f8e;
  color: white;
  border-radius: 50px;
  font-size: 18px;
  font-weight:bold
}

.disclaimer-content {
  display: none;
  padding-top: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.disclaimer-toggle {
  background-color: #ff66b2; /* Bright pink */
  color: white; /* Black text */
  border: 2px solid #ff3399; /* Slightly darker pink border */
  padding: 12px 20px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  width: 100%;
  text-align: center;
  border-radius: 5px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.disclaimer-toggle:hover {
  background-color: #ff3399; /* Darker pink on hover */
  border-color: #ff66b2; /* Lighter pink border on hover */
}

.disclaimer-toggle:focus {
  outline: none; /* Remove outline on focus */
}

.disclaimer-toggle:active {
  background-color: #e60073; /* Even darker pink when clicked */
  border-color: #e60073;
}




@keyframes zoom-out-bounce {
    0% {
        transform: scale(2.5);
    }
    50% {
        transform: scale(0.85);
    }
    70% {
        transform: scale(1.2);
    }
    80% {
        transform: scale(0.95);
    }
    90% {
        transform: scale(1.1);
    }
    95% {
        transform: scale(0.98);
    }
    100% {
        transform: scale(1);
    }
}








.wide-sister-network-img-related-2{
    position: relative; /* Ensures child elements are positioned relative to this container */
}

.star-container {
    position: absolute;
    top: 10px; /* Adjust to your desired position */
    left: 10px; /* Adjust to your desired position */
    z-index: 10; /* Ensures the star is on top of the image */
}

.star-shape {
    position: relative;
    display: inline-block;
    color: #d50e64;
    background: rgb(254, 238, 156);
    clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    width: 52px;
    height: 52px;
    text-align: center;
    line-height: 52px;
    font-weight: 900;
    font-size: 17px;
    box-sizing: border-box;
    box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.5); /* Adds a subtle shadow around the star */
}
/* A-Z Styles */
.text-border-box {
position: relative;
width: 100%;
margin: 0 auto;
padding: 0 20px!important;
border-top: 1px dashed #c1e5f7;
border-bottom: 1px dashed #c1e5f7;
background-color: #f6fefe;
}

#searchResultsContainer{
    position: relative;
    background-color: #f6fefe;
    padding: 0 
}

p.tcs-offer {font-size: 94%; color: rgba(0, 0, 0, 0.65)!important; line-height:1.2}
p.tcs-offer strong, p.tcs-offer b {font-size: 94%; color: rgba(0, 0, 0, 0.65)!important; line-height:1.2}






/* Brand Container Styles */
.brand-container {
    display: inline-flex!important;
    padding: 3px 0;
}

.brand-container .txt {
    padding: 25px 10px;
    text-align: left;
    width: 100%;
    margin: 0 10px 0 0;
}

.brand-container .txt b {
    color: #2e012e;
    font-weight: 600 !important;
}

.brand-container .txt .offer b {
    color: #f10070;
    font-size: 121%;
}

.brand-container .txt .tcs p {
    font-size: 100%;
    color: rgba(45, 44, 44, 0.91) !important;
    line-height: 1.3;
    padding: 2px 0 10px;
}

.brand-container .txt .tcs a {
    color: #463b45 !important;
    font-size: 80%;
    text-decoration: none !important;
}

.brand-container .txt .readreview,
.brand-container .operatedby {
    font-size: 95% !important;
}


.readreview a {
font-weight: 400;
color: #735f67!important;
}


.brand-container p {
    margin: 0 0 15px 0;
}

.brand-container span a {
    display: block;
    margin: 0;
    font-weight: 600;
    font-size: 130%;
}

.brand-container .date,
.brand-container strong p {
    line-height: 1;
    color: #7b057e;
    display: block;
    padding: 10px 0;
}

/* Image Styles */
.brand-container .img.round-logo-brand {
    position: relative;
    justify-content: center;
    padding-bottom: 0;
    width: 180px;
    height: 180px;
    margin: 20px auto 5px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid rgba(249, 249, 249, 0.82);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3), inset 0 0 10px rgba(0, 0, 0, 0.3);
}

.brand-container .img.round-logo-brand img {
    width: 130%;
    height: 130%;
    object-fit: cover;
    border-radius: 50%;
    margin: -20px -25px;
}
.full-text {
    display: none; /* Ensure the full text is hidden by default */
}


.toggledescription p {
    margin: 0; /* Ensure consistent spacing for paragraphs */
}

.toggleread-more {
    background: none; /* No background to keep it simple */
    border: none; /* Remove button border */
    color: blue; /* Optional: Set button text colour */
    cursor: pointer; /* Change cursor to pointer for better UX */
    text-decoration: underline; /* Make it look like a link */
    font-size: inherit; /* Match the surrounding text size */
    margin-top: 5px; /* Add a small gap above the button */
}



.brand-container .img.round-logo-brand .glossy-button-brand {
position: absolute;
bottom: 10px;
left: -85px;
transform: translateX(-50%);
padding: 3px 15px;
background: linear-gradient(122deg,#d90488,#f509e3);
border: 2px solid #fff;
border-radius: 50px;
text-align: center;
font-size: 22px;
font-weight: 700;
color: #fff;
box-shadow: 0 4px 10px rgba(0,0,0,.3);
text-shadow: 2px 2px 1px rgba(0,0,0,.3);
letter-spacing: 1px;
text-transform: uppercase;
cursor: pointer;
overflow: hidden;
z-index: 5000;
}


.brand-container .img.round-logo-brand .glossy-button-brand:hover {
    background: linear-gradient(122deg, rgba(156, 0, 191, 1), rgba(0, 255, 231, 1));
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.brand-container .img.round-logo-brand .glossy-button-brand::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    z-index: -1;
}

/* Gradient Shadow */
.brand-container .img.round-logo-brand::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 20px 10px rgba(245, 9, 227, 0.5);
    pointer-events: none;
    z-index: -2;
}

/* Mini Carousel */

.offer-container {
    position: relative;
    width: 97%;
    margin: 0 auto 5px auto;
    border: 2px solid #c1e5f7;
    border-radius: 5px;
    padding: 3px 10px;
    background-color: #f6fefe;
    display: inline-block;
}



.offer-container .txt .tcs p {
    font-size: 102%;
    color: rgba(45, 44, 44, 0.91);
}

.offer-container .txt .tcs a {
    text-decoration: underline dotted rgb(232, 201, 209) !important;
    font-size: 90%;
    color: #463b45 !important;
}

.offer-container .txt .tcs a:hover {
    color: #ccc !important;
}

.offer-container .img.round-logo {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(249, 249, 249, 0.82);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3), inset 0 0 10px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    padding-bottom: 0;
}


.offer-container .img.round-logo img {
width: 130%;
height: 130%;
border-radius: 50%;
margin: -20px 0 0 0;
}


.offer-container .img.round-logo a {
    position: relative;
    z-index: 0;
}

.offer-container .img.round-logo .glossy-button {
position: absolute;
bottom: 5px;
transform: translateX(-165%);
padding: 2px 10px;
background: linear-gradient(122deg,#d90488,#f509e3);
border: 2px solid #fff;
border-radius: 50px;
text-align: center;
font-size: 16px;
font-weight: 700;
color: #fff;
box-shadow: 0 4px 10px rgba(0,0,0,.3);
text-shadow: 2px 2px 1px rgba(0,0,0,.3);
letter-spacing: 1px;
text-transform: uppercase;
cursor: pointer;
overflow: hidden;
z-index: 300;
box-sizing: border-box;
display: inline-block;
width: max-content;
}


/* Vendor prefixes */
.offer-container .img.round-logo .glossy-button {
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);

    -webkit-text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.3);
    -moz-text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.3);
    text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.3);
}


.offer-container {padding:0}
.offer-container .img.round-logo .glossy-button:hover {
    background: linear-gradient(122deg, rgba(156, 0, 191, 1), rgba(0, 255, 231, 1));
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.offer-container .img.round-logo .glossy-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    z-index: -1;
}

.offer-container .img.round-logo::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 20px 10px rgba(245, 9, 227, 0.5);
    pointer-events: none;
    z-index: -2;
}

/* Button Styles */
.view-offer-button {
    padding: 6px 10px;
    margin: 5px auto 10px auto;
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
    background-color: #043f80; /* Change to your desired color */
    border: 2px solid #fff;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 10px; /* Adds some space between the button and the content above */
}

.view-offer-button:hover {
    background-color: #0056b3; /* Change to your desired hover color */
    transform: translateY(-2px);
}

.view-offer-button:active {
    background-color: #043f80; /* Change to your desired active color */
    transform: translateY(0);
}

.view-offer-button:focus {
    outline: none;
}


/* Casino / Games Table */

.table-blue {
--bs-table-color: #000!important;
--bs-table-bg: #f6fefe!important;
--bs-table-border-color: #bdd2e4!important;
--bs-table-striped-bg: #f6fefe!important;
--bs-table-striped-color: #000!important;
--bs-table-active-bg: #f6fefe!important;
--bs-table-active-color: #000!important;
--bs-table-hover-bg: #f6fefe!important;
--bs-table-hover-color: #000!important;
color: var(--bs-table-color)!important;
border-color: var(--bs-table-border-color)!important;
}

.casino-details-table td.key-features-cell {
  font-size: 100%;
}

.review-border-box .casino-details-table {
  border: 2px dashed #1d8da4; /* Teal dashed border */
    border-collapse: collapse;
    margin:10px 0

}

  /* Fallback 80px; JS below sets --header-offset dynamically */
  .jump-target { scroll-margin-top: var(--header-offset, 160px); }
  html { scroll-behavior: smooth; }

.auto-dismiss {
  animation: fadeOut 5s ease-in-out forwards;
  opacity: 1;
}

.toc{margin:0!important}

@keyframes fadeOut {
  0%   { opacity: 1; }
  80%  { opacity: 1; }
  100% { opacity: 0; display: none; }
}

.casino-table-container {
  width: 100%;
  margin: 5px auto;
  border-radius: 12px;
  overflow-x: auto; /* Allows horizontal scroll on smaller screens */
}

.casino-details-table {
width: 100%;
border-collapse: collapse;
background-color: #f8f8f8;
display: block;
overflow-x: auto;
white-space: nowrap;
-webkit-overflow-scrolling: touch;
min-width: 350px;
}



.casino-details-table th,
.casino-details-table td {
  padding: 8px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.casino-details-table th,
.casino-details-table td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0; /* Light gray border for separation */
}

.casino-details-table th {
  color: #dd1c7c; /* Dark text for contrast */
  font-weight: 700;
}

.casino-details-table td {
  color: #616161; /* Grey text color for table data */
  background-color: #fff; /* White background for data cells */
}

.casino-details-table a {
  color: #007BFF;
  text-decoration: none;
}

.casino-details-table a:hover {
  color: #0056b3;
  text-decoration: underline;
}


/* General styling for the FAQ section */
dl {
  margin: 20px auto;
  padding: 0;
  max-width: 100%; /* Control the width of the FAQ section */
}

/* Style for each question (dt) */
dt {
font-size: 1.2em;
font-weight: 700;
margin: 15px 0 5px;
padding: 10px;
border: 1px dashed #cb0ba6;
border-radius: 5px;
background-color: #fff;
cursor: pointer;
transition: all .3s ease;
}

/* Style for the answers (dd) */
dd {
  font-size: 1em;
  padding: 10px;
  margin: 0 0 15px 20px;
  background-color: #fafafa; /* Light background for answers */
  border-left: 4px solid #cb0ba6; /* Blue border on the left side */
  border-radius: 5px;
  line-height: 1.5;
  display: none; /* Answers hidden by default for collapsible effect */
  transition: all 0.3s ease; /* Smooth transition for expanding/collapsing */
}

/* Hover effect for the questions */
dt:hover {
  background-color: #e6f7ff; /* Change background on hover */
  color: #0056b3; /* Change text color on hover */
  border-color: #0056b3; /* Change border color on hover */
}

/* Active question with answer visible (for collapsible FAQ) */
dt.active {
  background-color: #e6f7ff; /* Light background for active state */
  color: #0056b3; /* Change text color when question is clicked */
  border-color: #0056b3; /* Border color for active state */
}

dd.active {
  display: block; /* Show answer when active */
}

.unique-slot-item {
  display: none;
  opacity: 0;
  transform: scale(0.9) translateY(20px) rotate(-2deg);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.unique-slot-item.visible {
  display: inline-block;
  opacity: 1;
  transform: scale(1) translateY(0) rotate(0);
}


.review-button-wrapper {
    display: block;
    margin-top: 1rem;
    text-align: center; /* or center, or right depending on your design */
}

.visit-button {
    display: inline-block;
    position: relative; /* For pseudo-elements */
    padding: 12px 24px;
    min-width: 200px; /* Reserves width */
    min-height: 50px; /* Reserves height */
    background: linear-gradient(122deg, #d90488, #f509e3);
    border: 2px solid #fff;
    border-radius: 100px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.visit-button:hover {
    background: linear-gradient(122deg, rgba(156, 0, 191, 1), rgba(0, 255, 231, 1));
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    color:#fff;
    text-decoration:none
}

.visit-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    z-index: 2;
    pointer-events: none;
}

.visit-button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 20px 10px rgba(245, 9, 227, 0.5);
    z-index: 0;
    pointer-events: none;
}


.show-more-button, .show-more-related-button {
display: block;
background-color: #f1f1f1;
border-radius: 100px;
color: #c10f8e;
font-weight: 700;
padding: 10px 20px;
border: 2px solid #c10f8e;
cursor: pointer;
margin: 10px auto;
}





.terms-toggle-button:hover,
.show-more-related-button:hover, 
        .show-more-button:hover {
			background-color: #f1f1f1;
        }

#scroll-to-top {
    position: fixed;
bottom: 142px;
left: calc(50% + 105px);
    transform: translateX(-50%);
    background-color: #c10f8e;
    border-radius: 100px;
    font-weight: 700;
    padding: 8px;
    border: 2px solid #c10f8e;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

/* Default state: Below search input */
.toggle-panel-button {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: auto; /* Let it naturally position under the search */
    margin-top: 53px; /* Space between search and button */
    background-color: #c10f8e;
    border-radius: 100px;
    color: #fff;
    font-weight: 700;
    padding: 10px 20px;
    border: 2px solid #c10f8e;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, bottom 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

/* Sticky behavior when scrolling */





.mini-footer-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  flex: 1;
}

.mini-footer-nav img {
  display: block;
  margin: 0 auto 0;
}

.icon-white {
}






.toggle-panel-button.fixed {
    position: fixed;
bottom: 140px;    
left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
}



.toggle-panel-button:hover,
        .show-more-button:hover {
        color:#c10f8e;
			background-color: #f1f1f1;
        }




/* Default state: Below search input */
.toggle-offer-button {
    background-color: #c10f8e;
    border-radius: 100px;
    color: #fff!important;
    font-weight: 700;
    padding: 8px 10px;
    border: 2px solid #c10f8e;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, bottom 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    margin:10px 0 10px 0
}

.toggle-offer-button a { color: #fff!important; text-decoration:none}

.toggle-offer-button:hover,
        .show-more-button:hover {
        color:#c10f8e!important;
			background-color: #f1f1f1;
        }



.number-circle {
display: inline-block;
background-color: #fbb34d;
color: #fff;
font-size: 24px;
font-weight: 700;
border-radius: 50%;
width: 38px;
height: 38px;
line-height: 38px;
text-align: center;
margin-right: 10px;
}

/* General Styling */
.category-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0;
}



.glossy-button-offer {
  position: absolute;
  left: 50%;
  bottom: 60px; /* anchors it near the bottom */
  transform: translateX(-50%);
  padding: 5px 15px;
  background: linear-gradient(122deg,#d90488,#f509e3);
  border: 2px solid #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,.3);
  text-shadow: 2px 2px 1px rgba(0,0,0,.2);
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 2;
  width: auto;
  display: inline-block;
}
.glossy-button-offer::before{
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 50%;
background: rgba(255,255,255,.3);
border-radius: 50px;
z-index: -1;
}


#CookiebotWidget {
    display: none;
}    

.ticker-bar {
  background: #000; /* purple theme */
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 6px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.ticker-bar a {
  color: #fff;
  text-decoration: underline;
}

.ticker-bar a:hover {
  text-decoration: none;
}

.ticker-content {
  display: inline-block;
  padding-left: 100%; /* start off-screen */
  animation: ticker 15s linear infinite;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}
    
/* Hide Cookiebot reopen padlock */
#CybotCookiebotDialogBodyUnderlay,
#CybotCookiebotDialogBodyButtonDetails,
#CybotCookiebotDialogBodyLevelButtonDetails,
#CybotCookiebotDialogNav .CybotCookiebotDialogNavItemLink,
#CybotCookiebotDialogPoweredbyLink,
#CybotCookiebotDialogDetailBodyContentControls,
#CybotCookiebotDialogDetailBodyContentTextAbout,
#CybotCookiebotDialogDetailBodyContentTextIABv2,
#CybotCookiebotDialogDetailFooter {
  display: none !important;
}

/* Hover effect */
.glossy-button-offer:hover {
    background: linear-gradient(122deg, #f509e3, #d90488); /* Reverse gradient on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5); /* Enhance shadow on hover */
}

.tc-welcome-offer  {width:100%}

.tc-post-item {
width:98%;
margin:10px auto 40px auto!important; 
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    border: 1px dashed #ca43d7;
    border-radius: 10px;
    padding: 35px 30px 0 30px;
    align-items: flex-start;
    background-color: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Base badge styling is already handled by .site-type-badge */

.site-type-badge.bingo {
  background-color: #e91e63; /* pink */
  color: #fff;              /* white text */
}

.site-type-badge.casino {
  background-color: #4caf50; /* green */
  color: #fff;               /* white text */
}

.tc-offer.bingopot {
  position: absolute;
  left: -9999px; /* push off-screen */
  height: 0;
  width: 0;
  overflow: hidden;
  visibility: hidden; /* extra belt + braces */
}


.tc-offer.honeypot .smart-link {
  position: absolute;
  left: -9999px;   /* push it off-screen */
  height: 0;
  width: 0;
  overflow: hidden;
  visibility: hidden;
}

.tc-post-item-header {
    display: flex;
    align-items: flex-start; /* or center if you want vertical centering */
    gap: 20px;               /* space between logo and text */
}

/* Hover effect */
.tc-post-item:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Header section containing image and offer */
.tc-post-item-
 {
    display: flex;
    align-items: start;
    gap: 15px;
    width: 100%; /* Ensures proper alignment */
}

.tc-post-item-img {
    position: relative; /* Make this the reference for absolutely positioned children */
    flex: 0 0 auto;
    max-width: 160px;
        text-align: center;
        margin:10px 0 0 0;

}

/* Image remains styled as before */
.tc-post-item-img img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    border: 2px solid #bd097e;
}

.tc-welcome-offer h4 {
margin:0; 
font-weight:700!important;
font-size: 180%!important;
}

.tc-welcome-offer h4 a{
margin:0; 
font-weight:700!important;
}

.tc-offer-tcs {
text-align: center;
width: 100%;
margin-top: 8px;
border-top: 1px dashed #cb47d8;
}

.tc-offer {
font-size: 100%;
line-height: 1.3;
margin: 0;
color: rgba(0, 0, 0, 0.71);
min-height: 1em!important;
padding:10px

}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.related-caption {
  margin-top: 8px;
  font-size: 90%;
  text-align: center;
}
.related-caption a {
  color: #aa0662;
  font-weight: 500;
  text-decoration: underline;
}

.tc-welcome-offer p span {
font-size: 150%;
margin: 15px 0;
font-weight: 600;
color: #3e004a
}

.tc-welcome-offer p {
  margin: 1.25rem auto;
  color: #3e004a;
  font-weight: 500;
  font-size: 1.12rem; /* Slightly less than 120%, clearer */
  line-height: 1.6;     /* Add line-height for breathing room */
  max-width: 700px;     /* Prevent too-wide lines on desktop */
  padding: 0 3px;      /* Mobile safe padding */
  text-align: center;   /* Optional: looks neater for offer copy */
}

.tc-offer a {
font-size: 96%;
color: rgba(0,0,0,.62);
text-decoration: none;
color: #787878!important;
}

.tc-offer a:hover {
    color: #005fa3;
}


.fallback-grid {
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between; /* Ensure spacing works */
}

.fallback-suggestion-item {
  flex: 1 1 calc(50% - 20px); /* Two columns with gap */
  box-sizing: border-box;
  border: 1px solid #ddd;
  border-left: 5px solid #cd0348;
  padding: 15px;
  margin-bottom: 20px;
  background: #fff;
  display: flex;
  flex-direction: row;
  gap: 15px;
  border-radius: 8px;
  align-items: flex-start;
}



.fallback-grid .tc-post-item {
  flex: 1 1 300px;
}


.fallback-header {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 15px;
  width: 100%;
}

.fallback-image img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 5px;
  background: #f8f8f8;
  border: 1px solid #eee;
}

.fallback-content {
  flex: 1;
  min-width: 150px;
}

.fallback-content h4 {
margin: 0 0 5px;
line-height: 1.3;
font-weight: 600!important;
font-size: 150%!important;
}

.fallback-content p a {
  margin: 0;
  color: #555!important;
}


.fallback-badge {
  background: #cd0348;
  color: #fff;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 5px;
  font-size:100%!important;
  z-index:1
}

/* Sort button to open the panel */
.sort-button {
    padding: 10px 15px;
    font-size: 16px;
    background-color: #ff2260;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.sort-button:hover {
    background-color: #e71d57;
}

.sort-options label {
color: #b01c61;
}


.sort-options select {
color: #b01c61;
border: 1px solid #a6a2a5;
border-radius: 100px;
padding: 3px;
height: 30px;
}


.sort-options {padding:10px}
.sort-label {
    font-weight: 700 !important;
    color: #8f1c59 !important;
}

/* Panel header with title and close button */
.sort-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #ddd;
    background-color: #f7f7f7;
}

.sort-panel-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.close-button {
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #ff2260;
}

/* Panel content (scrollable area) */
#sort-panel-content {
    flex-grow: 1;
    overflow-y: auto;
    padding: 15px;
    max-height: calc(100% - 120px); /* Reduce height to ensure Done button is visible */
}




/* Labels inside the checkbox container */
#brand-comparison label {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 10px;
    color: #444;
    cursor: pointer;
}

#brand-comparison input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    margin-right: 10px;
    cursor: pointer;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

#brand-comparison input[type="checkbox"]:checked {
    background-color: #ff2260;
    border-color: #ff2260;
}

#brand-comparison input[type="checkbox"]:checked::after {
    font-size: 12px;
    color: #fff;
    position: relative;
    left: 5px;
    top: 2px;
}

/* Panel footer with Done button (fixed position at the bottom) */
.sort-panel-footer {
    position: sticky;
    bottom: 0; /* Stick to the bottom of the panel */
    background-color: #f7f7f7;
    padding: 15px;
    border-top: 1px solid #ddd;
    text-align: center;
    z-index: 10;
}

/* Done button */
.done-button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #ff2260;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.done-button:hover {
    background-color: #e71d57;
}




.post-item {
    display: flex;
    flex-direction: row;
    gap: 20px;
	border: 1px dashed #ca43d7;    
	border-radius: 10px;
    padding: 15px;
    align-items: flex-start;
    background-color: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
}

.post-item:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Image Section */
.post-item-img {
flex: 0 0 200px;
max-width: 150px;
}

.post-item-img img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    border: 2px solid #bd097e;
}

/* Text Section */
.post-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


/* Text Section */
.post-content .offer {
font-size:100%; margin:0
}

.post-content .offer a {
color: rgba(0, 0, 0, 0.62)!important;}


.post-content .offer {
font-size: 90%;
line-height: clamp(1.4,1.4,1.4)!important;
}



.post-content h3 {
font-size:110%; margin:0
}

.post-content h4 {
font-size:140%; margin:0
}





.post-content h4 span {
color: #620565;
font-size: 85%;
line-height: 1.4rem!important;
font-weight: 600;
margin: 0;
margin-block-start: 0.5rem;
display: block;
}

.post-content p {
margin: 10px 0!important;
font-size: 100%;
line-height: 1.4em;
}
.read-more,
.post-content .read-more {
    text-decoration: underline!important;
    font-weight: bold;
    font-size: 1.1em;
    transition: color 0.3s;
}
.read-more:hover,
.post-content .read-more:hover {
    color: #005fa3;
}
/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.pagination a {
    color: #0077cc;
    text-decoration: none;
    font-size: 0.9em;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.pagination a:hover {
    background-color: #0077cc;
    color: #fff;
}
.desc-scroll {
  max-height: 200px;
  overflow-y: auto;
}
.badge-official {
z-index:1;
display: block;
background-color: #fa4e00;
color: #fff;
font-size: 15px;
font-weight: 700;
padding: 5px 10px;
border-radius: 15px;
margin-left: 8px;
margin: -30px 4px;
position: absolute;
text-transform: uppercase;
z-index: 4000;
}



.badge-official a{

color: #fff;
font-size: 15px;
font-weight: 700;
text-decoration:none
}


/* Base badge style */
.badge-h1 {
font-size: 12px;
font-weight: 700;
padding: 4px 10px;
border-radius: 5px;
margin: 0;
z-index:1;
text-transform: uppercase;
color: #fff;
display: inline-block;
}

/* Guide version (purple) */
.badge-h1.guide {
    background-color: #6c0e71;
    position:absolute
}

/* Sister version (blue) */
.badge-h1.sister {
    background-color: #005fa3;
}




.badge-h1 a{

color: #fff;
font-size: 15px;
font-weight: 700;
text-decoration:none
}


  /* Top-right badge on image (detailed cards) */
  .type-chip{
    position:absolute; top:6px; right:6px;
    font-size:.75rem; border-radius:4px; padding:2px 6px; font-weight:600;
    border:1px solid transparent;
  }


.type-chip.bingo {
background: #f146b0;
color: #ffffff;
border-color: #e9d5ff;
}

  .type-chip.casino { background:#e8420c; color:#ffffff; border-color:#A7F3D0; } /* mint / teal  */

  /* Inline chip in the text column (detail) and compact row */
  .meta-chip{
    padding:0 20px 0 20px; margin:0; background:#E6FFFA; color:#065F46; display:inline-block; font-size:.85rem; border-radius:4px;  font-weight:600;
  }

.badge-official-alt {
display: block;
background-color: #070599;
color: #fff;
font-size: 15px;
font-weight: 700;
padding: 5px 10px;
border-radius: 15px;
margin-left: 8px;
margin: -30px 3px;
position: absolute;
text-transform: uppercase;
z-index: 4000;
}

.sisterdesc {font-size:120%}

.rank-badge {
    position: absolute;

    border:2px solid #f7b306;
    position: absolute;

    background: #bd097e;
    color: white;
    font-size: 18px;
    font-weight: bold;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index:4000;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

.tag-cloud {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.tag-cloud h4 {
    width: 100%;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.tag-cloud a {
    display: inline-block;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: calc(12px + (36 - 12) * (var(--popularity, 0.5))); /* Adjust size dynamically */
    font-weight: 500;
    color: #555;
    background: #f7f7f7;
    transition: all 0.3s ease;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.tag-cloud a:hover {
    background: #007bff;
    color: white;
    box-shadow: 4px 4px 10px rgba(0, 123, 255, 0.2);
    transform: translateY(-2px);
}


/* White Border Box Styles */
.white-border-box {
  position: relative;
  width: 98%;
  margin: 0 auto 5px auto;
  border-radius: 5px;
  padding: 5px;
  display: flex;
  min-height: 250px; /* Default height for larger screens */
}

/* Ad Disclaimer */
.hidden { display: none !important; }
.site-card { display: none; }
.site-card.visible { display: inline-block; }



#popupBackground {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.74);
display: none;
justify-content: center;
align-items: center;
z-index: 4000;
font-size: 90%;
}
#popup {
background: #fff;
padding: 20px;
border-radius: 10px;
text-align: center;
position: relative;
width: 80%;
z-index: 700;
max-width: 400px;
border: 4px solid #df1a9b;
}

#popup p, #popup p a {color: #cd0348!important}

        #popup h4 {
            margin-top: 0;
        }

#closePopup {
position: absolute;
top: -2px;
right: 10px;
cursor: pointer;
font-size: 38px;
}
        .info-icon {
            font-size: 16px;
            vertical-align: middle;
        }
.ad-disclosure {display:block; width:100%; text-align:center}

.info-icon {font-size:90%; font-weight:300; color:#ffffff!important}
.ad-disclosure b {padding: 0 6px 10px 6px}

.info-icon svg {vertical-align: top; margin: 3px 0 0 0}

/* Owl Advert Item Styles */
#owl-advert .item img {
  display: block;
  width: 100%;
  height: auto;
}

/* Owl Advert Container Styles */
#owl-advert {
  width: 98%;
  min-height: 250px;
  height: 500px;
  margin: 10px auto;
}

/* Adtop TCS Home and TCS Styles */
.adtop-tcs-home,
.adtop-tcs {
  min-height: 120%;
  padding: 15px 20px;
  width: 100%;
  background-color: #1b011f;
  text-align: center;
  font-size: 85%!important;
  margin: 0;
}

/* Adtop TCS Home and TCS Anchor Styles */
.adtop-tcs-home a,
.adtop-tcs a {
  line-height: 18px!important;
  color: #FFE2DA!important;
  text-decoration: none!important;
}



/* Networks Search Large Images on Main Page */
.wide-sister-network-img-related-2 {
margin: 7px 7px;
border: 2px solid #7e0654;
max-width: 220px;
display: inline-table;
border-radius: 20px;
overflow: hidden;
}


.wide-sister-network-img-related, 
.wide-sister-network-img {
position:relative;width:200px;
  margin: 7px;
  border: 2px solid #7e0654;
  height: 270px; /* Ensure consistent total box height */
  display: inline-block;
  vertical-align: top;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  text-align: center;
  box-sizing: border-box;
}


.wide-sister-network-img-related img,
.wide-sister-network-img img {
  display: block;
  max-width: 100%;
  height: auto;
}


.wide-sister-network-img-related .label, 
.wide-sister-network-img .label {
font-weight: 700;
font-size: 13px;
text-align: center;
padding: 6px 20px;
display: block;
background: 0 0;
line-height: 1.3em;
min-height: 40px;
}


.wide-sister-network-img-related .label a,
.wide-sister-network-img .label a {
  font-weight: bold;
  text-decoration: none;
  font-family: inherit; /* force inherit to avoid browser default */
  display: inline-block;
  width: 100%;
}



.hover-visit-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none; /* So label below is clickable */
}


.tc-post-item-img:hover .hover-visit-overlay, 
.wide-sister-network-img-related:hover .hover-visit-overlay, 
.wide-sister-network-img:hover .hover-visit-overlay {
  opacity: 1;
  pointer-events: auto; /* Optional: allow clicking if needed */
}

.tc-post-item-img {
  position: relative;
}

.tc-post-item-img a {
  display: block;
  position: relative;
}

.glossy-button-offer {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
background: linear-gradient(122deg,#d90488,#f509e3);
  color: white;
  padding: 10px 15px;
border-radius: 100px;
  font-weight: 600;
text-align: center;
font-size: 22px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  box-shadow: 0 4px 10px rgba(0,0,0,.3);
text-shadow: 2px 2px 1px rgba(0,0,0,.3);
letter-spacing: 1px;
text-transform: uppercase;
border: 2px solid #fff;
line-height: 1;
}



.tc-post-item-img:hover .glossy-button-offer {
  opacity: 1;
  pointer-events: auto;
}

.wide-sister-network-img-related-2 .glossy-button-brand, 
.wide-sister-network-img-related .glossy-button-brand, 
.wide-sister-network-img .glossy-button-brand {
position: absolute;
bottom: -85px;
left: 50%;
transform: translateX(-50%);
padding: 10px 15px;
background: linear-gradient(122deg,#d90488,#f509e3);
border: 2px solid #fff;
border-radius: 100px;
text-align: center;
font-size: 22px;
font-weight: 700;
color: #fff;
box-shadow: 0 4px 10px rgba(0,0,0,.3);
text-shadow: 2px 2px 1px rgba(0,0,0,.3);
letter-spacing: 1px;
text-transform: uppercase;
cursor: pointer;
overflow: hidden;
z-index: 5000;
width: 2;
line-height: 1;}




.tc-post-item-img .glossy-button-brand {
position: absolute;
bottom: 50px;
left: 50%;
transform: translateX(-50%);
padding: 10px 15px;
background: linear-gradient(122deg,#d90488,#f509e3);
border: 2px solid #fff;
border-radius: 100px;
text-align: center;
font-size: 22px;
font-weight: 700;
color: #fff;
box-shadow: 0 4px 10px rgba(0,0,0,.3);
text-shadow: 2px 2px 1px rgba(0,0,0,.3);
letter-spacing: 1px;
text-transform: uppercase;
cursor: pointer;
overflow: hidden;
z-index: 5000;
width: 2;
line-height: 1;}


.tc-post-item-img .glossy-button-brand:hover,
.wide-sister-network-img-related-2 .glossy-button-brand:hover,
.wide-sister-network-img-related .glossy-button-brand:hover,
.wide-sister-network-img .glossy-button-brand::hover 
.wide-sister-network-img .glossy-button-brand:hover {
    background: linear-gradient(122deg, rgba(156, 0, 191, 1), rgba(0, 255, 231, 1));
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}


.tc-post-item-img .glossy-button-brand::before,
.wide-sister-network-img-related-2 .glossy-button-brand::before,
.wide-sister-network-img-related .glossy-button-brand::before,
.wide-sister-network-img .glossy-button-brand::before {    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    z-index: -1;
}



.tc-post-item-img .glossy-button-brand::after,
.wide-sister-network-img-related-2 .glossy-button-brand::after,
.wide-sister-network-img-related .glossy-button-brand::after,
.wide-sister-network-img .glossy-button-brand::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 20px 10px rgba(245, 9, 227, 0.5);
    pointer-events: none;
    z-index: -2;
}

/* Slots / Games Search Large Images on Main Page */
.wide-sister-featured {min-height:250px; display: block}
.wide-sister-featured-img {margin:7px 7px; max-width:250px; display:inline-table}
.wide-sister-featured-img img.border {margin:10px 0 0 0; padding:0; border-radius: 15px;border: 3px solid #0fb9d6; padding: 2px}

#slotsContainer,
.simplified-view {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* or space-between / flex-start */
  gap: 10px; /* optional spacing between items */
}




.hidden-item {
    display: none;
}


/* Quicklinks Container */
.quicklinks {
    margin: 0;
    padding: 5px 0;
    width: 100%;
    height: 43px;
    border-bottom: 2px solid #c1e5f7;
    background-color: #e7f8fb;
    display: block;
}

/* Quicklinks Input */
.quicklinksinput {
    z-index: 1000;
    width: 200px;
    height: 30px;
    border: 2px solid #64d2db;
    font-size: 90%;
    font-weight: 600;
    margin: 0!important;
}






/* Footer */
footer {
  width: 100%;
  background-color: #000;
  height: auto;
  float: left;
}

footer a, footer h5, footer p b, footer p{
  color: #fff !important;
}



.footer {
  position: relative;
  padding: 20px 30px;
  width: 100%;
  color: #fff;
}

.responsible, .networks, .disclaimer {
  border-top: 2px solid #fff;
}

.responsible {
  background-color: #0a2c50;
}

.networks {
  background-color: #561260;
}

.disclaimer {
  background-color: #0a2c50;
}

.footer img {
  max-height: 30px;
  width: auto;
}

.footer h4 {
  font-size: 105%;
  padding: 6px 10px;
  margin: 25px 0 5px;
}

.footer p {
  font-size: 98%;
}

.footer a {
  font-size: 105%;
}

#footer-copyright {
  width: 100%;
  text-align: center;
  margin: 10px;
  padding: 0 5px;
  font-size: 95%;
  font-weight: 500;
  color: #fff;
  float: left;
  display: block;
}

/* Sticky container */
.bingo-sticky-container {
    display: none; /* Initially hidden */
    padding: 3px;
    width: 100%;
    margin: 0 auto;
    position: fixed;
    bottom: 40px;
    left: 0;
    border-top: 3px solid #c30e84;
    right: 0;
    background-color: rgba(0, 0, 0, 0.82);
    max-width: 1100px;
    transform: translateY(100%); /* Start off-screen */
    opacity: 0; /* Invisible initially */
    transition: transform 1s ease-in-out, opacity 1s ease-in-out; /* Smooth slide */
    z-index: 9998;
    box-sizing: border-box;
}

.bingo-sticky-container.show {
    display: block; /* Make visible */
    transform: translateY(0); /* Slide up */
    opacity: 1; /* Fully visible */
}

.bingo-sticky-banner {
    display: none; /* Initially hide all banners */
}

.bingo-sticky-container.show .bingo-sticky-banner {
    display: block; /* Show only when container has 'show' class */
}



/* Sticky icons */
.sticky-icons {
    position: fixed;
    bottom: 0;
    z-index: 9999;
    background-color: #000;
    width: 100%;
    padding: 10px;
}






/* Fix for desktop sticky footer */


/* Ensure icons align horizontally */
/* Fix icon alignment in sticky desktop footer */
.sticky-desktop-only .footer-icon-wrapper {
  flex: 1 1 auto !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 5px;
  width: auto !important; /* override previous width */
  box-sizing: border-box;
}



/* Sticky icons styling */
.sticky-icons img {
    margin: 3px 0;
    width: auto;
    max-height: 23px;
}

.sticky-footer-links {
    max-width: 1100px;
    width: 80%;
    margin: 0 auto;
    display: inline-table;
}

/* Close button */
.close-footer-button {
    display: inline-table; /* Ensure button is visible */
    position: absolute;
    bottom: 0;
    margin: 0 0 12px 250px; /* Original position */
    right: 1;
    width: 80px;
    height: 25px;
    background: #fff;
    border: none;
    border-radius: 50%;
    z-index: 10000;
    color: #ed419c;
    font-size: 13px;
    font-weight: 800;
    line-height: 25px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,.2);
    transition: background .3s, color .3s, transform .3s;
    position: relative; /* Needed for pseudo-element */
}

/* Arrow pseudo-element only in toggled (closed) state */
.close-footer-button.toggled::after {
    content: ''; /* Empty content for arrow */
    position: absolute;
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%) rotate(-90deg); /* Point arrow upwards */
    border: solid #ed419c; /* Arrow color matching text */
    border-width: 2px 2px 0 0; /* Arrow styling */
    width: 8px; /* Arrow size */
    height: 8px;
    transform-origin: center;
}

/* No arrow in default (open) state */
.close-footer-button:not(.toggled)::after {
    content: none; /* Remove pseudo-element */
}

/* Hover state */
.close-footer-button:hover {
    background: #cf0382; /* Background on hover */
    color: #fff; /* Text color on hover */
}

.close-footer-button.toggled:hover::after {
    border-color: #fff; /* Arrow color matches hover text */
}

.main-banner {

margin: 8px auto;
max-width: 728px;
height: 105px;
text-align: center;
display: flex;
}


.bingo-sticky-banner {
    margin: 0 auto;
    max-width: 728px;
    height: 90px; /* Consistent height for all banners */
    text-align: center; /* Align content inside */
}

.bingo-sticky-banner img, .main-banner img {width: 85%; height:auto;  }

/* Contact Styles */
.red { color: red; }
.green { color: green; }
.whitebg {
  border: 2px solid #c1e5f7 !important;
  background-color: #fff !important;
}

/* Input Field Styles */
.whitebg label input, .whitebg label .textarea, .whitebg label .dropdown {
  border-radius: 7px;
  font-size: 1.2em;
  padding: 0.9em;
  margin: 20px auto 0.25em;
  width: 70% !important;
  min-width: 70% !important;
  box-sizing: border-box;
  display: block;
  border: double 5px transparent;
  background-image: linear-gradient(white, white), linear-gradient(to right, #eb33b5, #8b0373);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.whitebg label .textarea {
  font-size: 1.3em;
  padding: 0.25em;
  height: 200px;
  max-height: 800px;
}

.whitebg label option {
  color: #8b0373 !important;
}

/* Button Styles */
.whitebg .btn {
  border: 3px solid #d1078b;
  border-radius: 100px;
  padding: 10px 20px;
  background-color: #a700b1;
  font-weight: 700;
  color: #fff;
}

/* Recapture Styles */
.recapture {
  width: 304px !important;
  margin: 0 auto 20px !important;
}

/* Consent Styles */
.whitebg .consent {
  width: 100%;
}

.whitebg .simple-consent-checkbox {
  margin: 0 10px;
  float: left;
}

/* Checkbox Styles */
[type=checkbox] {
  width: 2rem;
  height: 2rem;
  color: dodgerblue;
  vertical-align: middle;
  appearance: none;
  background: none;
  border: 0;
  outline: 0;
  flex-grow: 0;
  border-radius: 50%;
  background-color: #fff;
  transition: background 300ms;
  cursor: pointer;
}

/* Pseudo element for check styling */
[type=checkbox]::before {
  content: "";
  display: block;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  background-color: transparent;
  background-size: contain;
  box-shadow: inset 0 0 0 1px #CCD3D8;
}

/* Checked State */
[type=checkbox]:checked {
  background-color: currentcolor;
}

[type=checkbox]:checked::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E %3Cpath d='M15.88 8.29L10 14.17l-1.88-1.88a.996.996 0 1 0-1.41 1.41l2.59 2.59c.39.39 1.02.39 1.41 0L17.3 9.7a.996.996 0 0 0 0-1.41c-.39-.39-1.03-.39-1.42 0z' fill='%23fff'/%3E %3C/svg%3E");
}

/* Disabled State */
[type=checkbox]:disabled {
  background-color: #CCD3D8;
  opacity: 0.84;
  cursor: not-allowed;
}

/* IE Compatibility */
[type=checkbox]::-ms-check {
  content: "";
  display: block;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  background-color: transparent;
  background-size: contain;
  box-shadow: inset 0 0 0 1px #CCD3D8;
}

[type=checkbox]:checked::-ms-check {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E %3Cpath d='M15.88 8.29L10 14.17l-1.88-1.88a.996.996 0 1 0-1.41 1.41l2.59 2.59c.39.39 1.02.39 1.41 0L17.3 9.7a.996.996 0 0 0 0-1.41c-.39-.39-1.03-.39-1.42 0z' fill='%23fff'/%3E %3C/svg%3E");
}



.container-fluid {
margin: 0!important;
max-width:1100px
}

.navbar-collapse {
background-color: #24001f;
border: 1px solid #fff;

}


.nav-link {
padding: 5px 10px!important;
text-decoration: none!important;
display: block;
padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
font-size: var(--bs-nav-link-font-size);
font-weight: var(--bs-nav-link-font-weight);
color: var(--bs-nav-link-color);
text-decoration: none;
background: none;
color: #fff!important;
font-weight: bold!important;
border: 0;
transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
}

.navbar-toggler {
width: 12%;
padding: 0!important;
background-color: #fff!important;
border: 2px solid #e32f83!important;
margin: 0px 0 0 17px!important;
}


.navbar-toggler-icon {
display: inline-block;
width: 1.1em!important;
height: 1.5em;
vertical-align: middle;
background-image: var(--bs-navbar-toggler-icon-bg);
background-repeat: no-repeat;
background-position: center;
background-size: 100%;
}

.nav {
  --bs-nav-link-padding-x: 1rem;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-link-color);
  --bs-nav-link-hover-color: var(--bs-link-hover-color);
  --bs-nav-link-disabled-color: #6c757d;
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  font-size: var(--bs-nav-link-font-size);
  font-weight: var(--bs-nav-link-font-weight);
  color: var(--bs-nav-link-color);
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}
.nav-link:hover, .nav-link:focus {
  color: var(--bs-nav-link-hover-color);
}
.nav-link.disabled {
  color: var(--bs-nav-link-disabled-color);
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  --bs-nav-tabs-border-width: 1px;
  --bs-nav-tabs-border-color: #dee2e6;
  --bs-nav-tabs-border-radius: 0.375rem;
  --bs-nav-tabs-link-hover-border-color: #e9ecef #e9ecef #dee2e6;
  --bs-nav-tabs-link-active-color: #495057;
  --bs-nav-tabs-link-active-bg: #fff;
  --bs-nav-tabs-link-active-border-color: #dee2e6 #dee2e6 #fff;
  border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
}
.nav-tabs .nav-link {
  margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
  background: none;
  border: var(--bs-nav-tabs-border-width) solid transparent;
  border-top-left-radius: var(--bs-nav-tabs-border-radius);
  border-top-right-radius: var(--bs-nav-tabs-border-radius);
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  isolation: isolate;
  border-color: var(--bs-nav-tabs-link-hover-border-color);
}
.nav-tabs .nav-link.disabled, .nav-tabs .nav-link:disabled {
  color: var(--bs-nav-link-disabled-color);
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: var(--bs-nav-tabs-link-active-color);
  background-color: var(--bs-nav-tabs-link-active-bg);
  border-color: var(--bs-nav-tabs-link-active-border-color);
}
.nav-tabs .dropdown-menu {
  margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills {
  --bs-nav-pills-border-radius: 0.375rem;
  --bs-nav-pills-link-active-color: #fff;
  --bs-nav-pills-link-active-bg: #0d6efd;
}
.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: var(--bs-nav-pills-border-radius);
}
.nav-pills .nav-link:disabled {
  color: var(--bs-nav-link-disabled-color);
  background-color: transparent;
  border-color: transparent;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: var(--bs-nav-pills-link-active-color);
  background-color: var(--bs-nav-pills-link-active-bg);
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
 
 
 
 
 
.main-banner img {
    max-width: 100%; /* Ensures image scales with the container */
    height: auto;    /* Maintains aspect ratio */
    display: block;  /* Removes any inline spacing */
}



/* Container for the input and the icon */
.search-container-custom {
position: relative;
width: 85%;
text-align: center;
margin: 0 auto;
display: inline-block;
}


.search-slots-custom {
padding: 10px 10px 10px 50px;
border: 4px solid #cf0382;
border-radius: 50px;
outline: 0;
transition: all .3s ease;
font-size: 20px;
font-weight: 700;
width: 100%;
position: relative;
float: left;
}


/* Icon positioning */
.mainsearchicon {
    position: absolute;
    top: 50%;
    left: 10px; /* Position the icon inside the input on the left */
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #cb089e;
    border-radius: 50%;
    pointer-events: none; /* Prevents the icon from blocking input interactions */
    z-index: 1; /* Keeps the icon above the input */
}

/* Icon SVG adjustments */
.searchicon2 svg {
    width: 20px;
    height: 20px;
    fill: #FFFFFF; /* Icon colour */
}
        



.review-border-box {
    position: relative;
    width: 100%;
    max-width:1100px;
    margin: 0 auto;
    border-top: 1px dashed #c1e5f7;
    border-bottom: 1px dashed #c1e5f7;
 padding: 8px 5% 8px 5%; /* ↑ this increases the bottom padding */    background-color: #f6fefe;
    display: block;
    min-height: 120px; /* Reserve additional space */
    box-sizing: border-box;
}


.review-border-box p {
    margin-block-end: 0.8rem;
    margin-block-start: 0.8rem;
    min-height: 1.75em;
}



    
/* Container for each review section (Pros/Cons) */
.review-section {
    margin: 20px auto;
    padding: 20px;
    max-width: 800px;
    border-radius: 8px;
    background: #ffffff; /* clean white background */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Specific styling for pros and cons sections */
.review-section.review-pros {
    border-left: 5px solid #4CAF50; /* subtle green accent for Pros */
}

.review-section.review-cons {
    border-left: 5px solid #f44336; /* subtle red accent for Cons */
}

/* Section title styling */
.section-title {
font-size: 1.5rem;
margin-bottom: 15px;
text-align: left;
font-weight: 600;
margin-top: 0;
}
/* Bubbly list container */
.bubbly-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border:0!important
}

.bubbly-list li {
padding: 3px;
font-size: 117%;
margin: 10px;
text-align: left;
list-style-type: square;
list-style-position: outside;
list-style-image: none;
line-height: 1.5rem;
display: block;
}

ul.bubbly-list  {
width: 100%;
display: block;
margin: 0 auto!important;
background-color: #fff;
border: 2px dashed #701294;
border-radius: 10px;
padding: 0!important;
}
/* Individual list item styling */
.bubbly-item {
    background: #f9f9f9;  /* very light grey for a soft contrast */
    color: #333;
    padding: 12px 15px;
    margin: 8px 0;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    font-size: 1rem;
    line-height: 1.4;
    position: relative;
    padding-left: 40px; /* space for the icon */
}

/* Add check icon for Pros */
.review-pros .bubbly-item::before {
content: "\2713";
color: #4caf50;
top: 50%;
transform: translateY(-50%);
font-size: 1.2rem;
padding: 0 10px;

}

/* Add red cross icon for Cons */
.review-cons .bubbly-item::before {
  content: "\2717";  /* Unicode for a cross (✗) */
  color: #f44336;    /* A vivid red to mark the cons */
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  padding: 0 10px;
}


  .results,
  .ui-autocomplete {
    max-height: 300px;
    overflow-y: auto;
  }

  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .8);
  }

  .overlay.show,
  .results.show {
    display: block;
  }

  .search-container {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0 15px;
    z-index: 5000;
  }

  .separator {
    height: 24px;
    width: 2px;
    background-color: rgba(135, 176, 169, .7);
    margin: 12px 40px 0;
    padding: 0;
  }

  .dropdown-toggle::after {
    display: none;
  }

  .caret {
    border-top: 4px solid rgba(135, 176, 169, .7);
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    display: inline-block;
    margin-left: 4px;
    vertical-align: middle;
  }

  .nav-link.dropdown-toggle:hover .caret {
    border-top-color: red;
  }

  .search-box {
    position: absolute;
    right: 0;
    width: 0;
    margin: 6px 150px 0;
    opacity: 0;
    transition: width .5s, opacity .5s;
    z-index: 5001;
    display: flex;
    align-items: center;
  }

  .search-box.open {
    width: 500px;
    opacity: 1;
  }

  #static-text {
    color: #000;
  }

  .search-box input {
    width: 90%;
    padding: 10px 15px;
    border: 4px solid #cf0382;
    border-radius: 15px;
    outline: 0;
    transition: .3s;
    font-size: 16px;
  }

  .search-box input::placeholder {
    color: #20c2c0;
    font-weight: 700;
  }

  .search-box input:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, .5);
  }

  .search-icon {
    font-size: 20px;
    cursor: pointer;
    color: #fff;
    margin-right: 0;
    background: #cb089e;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    padding: 0;
    margin-top: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: none;
  }

  .result-item,
  .results {
    background: #fff;
    padding: 10px;
  }

  .results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
    margin-top: 5px;
    box-sizing: border-box;
    display: none;
  }

  .result-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
    transition: .3s;
  }

  .result-item:last-child {
    border-bottom: none;
  }

  .result-item:hover {
    background: #f0f0f0;
  }

  .result-item img {
    border-radius: 50%;
    margin-right: 15px;
    width: 50px;
    height: 50px;
  }

  .result-item a {
    color: #463b45;
    font-weight: 700;
    text-decoration: none;
  }

  .result-item a:hover {
    text-decoration: underline;
  }

  .category-text {
    color: #888;
    font-size: 14px;
    text-transform: capitalize;
    display: block;
  }

  .ui-autocomplete {
    overflow-x: hidden;
    padding-right: 20px;
  }

  .ui-autocomplete .autocomplete-item {
    display: flex;
    align-items: center;
    padding: 10px;
    font-size: 16px;
  }

  .ui-autocomplete .autocomplete-item img {
    border-radius: 50%;
    margin-right: 15px;
    width: 40px;
    height: 40px;
  }


  .hidden {
    display: none;
  }





  .search-icon-wrapper {
    display: flex;
    align-items: center;
    margin-left: -40px;
  }

  .search-icon-custom {
    width: 28px;
    height: 28px;
    background-color: #04b9b6;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .search-icon-custom img {
    width: 12px;
    height: 12px;
  }

  .search-slots-custom::placeholder {
    color: #04b9b6;
    font-weight: 700;
  }

  .search-slots-custom:focus {
    box-shadow: 0 0 7px #cf0382;
  }

  .label {
    text-align: center;
    margin-top: 5px;
    font-weight: 700;
    color: #7d7d7d;
    font-size: 90%;
  }
  
  .label a {

font-weight: 400;
color: #735f67!important;
}

  .hidden-label {
    display: none;
  }

  .slot-item.hidden {
    display: none;
  }

  .search-icon-2 {
    color: #fff;
  }

ul.bingo-site-list {
margin: 10px auto;
width: 50%;
display: flex;
}


.bingo-site-list li {width:100%; position:relative; text-align:center}

  .bingo-sticky-title h3 {
    font-size: 22px;
    font-weight: 600;
    color:#cb0c65;
    text-align: center;
  }

  .bingo-sticky-title h3 span {
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
  }

  .bingo-site-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 0;
    list-style: none;
    overflow: hidden;
  }

  .bingo-site-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
  }

  .bingo-site-item img {
    max-width: 110px;
    padding: 4px;
    height: auto;
    margin-bottom: 5px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 1)
  }

  .bingo-site-item a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    text-align: center;
    width: 100%;
  }
  
  /* === MOBILE SCROLL SANITY (wins last) === */
@media (max-width: 991px) {
  /* Viewport scroll lives on <body> */
  html {
    height: auto !important;
    overflow-x: hidden !important;     /* no horizontal bar */
  }
  body {
    height: auto !important;
    overflow-y: auto !important;       /* allow vertical scroll */
    overflow-x: hidden !important;     /* stop sideways jiggle */
    -webkit-overflow-scrolling: touch; /* smooth on iOS/Android */
    touch-action: pan-y !important;    /* ignore sideways swipes */
    overscroll-behavior-x: contain;    /* no horizontal rubber-band */
    overscroll-behavior-y: auto;
  }

  /* Belt & braces so the page can't “slip” left/right */
  #container2,
  #page {
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }


  /* 1) Let the page scroll, not the tiny text boxes */
  .desc-scroll {
    max-height: none !important;
    overflow: visible !important;
  }

  /* 2) Kill the 500px search box overflow on mobile (prevents sideways jiggle) */
.search-box.open {
  width: 100% !important;
  position: static !important;
  margin: 0 !important;
  opacity: 1 !important;
  transition: none !important;
}

  /* 3) Keep the layout from sliding horizontally */
  #container2, #page {
    max-width: 100% !important;
    overflow-x: hidden !important;
    transform: none !important;
    left: 0 !important; right: 0 !important;
  }

  /* 4) Avoid any smooth-scroll delay on touch */
  html { scroll-behavior: auto !important; }


  /* Tap overlay (kept) */
  #logo-tap-overlay {
    position: fixed;
    z-index: 2147483647; /* top-most */
    display: none;
    touch-action: manipulation;
  }
  #logo-tap-overlay[aria-hidden="false"] { display: block; }

  /* Header & navbar stack: make the burger tappable */
  header.header-fixed { z-index: 2 !important; }
  #header-nav { z-index: 1 !important; min-height: 70px; }

  .navbar {
    position: relative;
    z-index: 10010;
    height: auto !important;           /* overrides any height:1px */
    margin: -65px 0 0 0 !important;    /* final margin value wins */
    background: none !important;
  }
  .navbar-toggler { position: relative; z-index: 10011; }

  /* Don’t let decorative overlay steal taps */
  #header-nav .opacity { pointer-events: none; }
  #header-nav .glitzy-logo, #header-nav .glitzy-logo * { pointer-events: auto; }

  /* Menu look & feel (unchanged; not forcing fixed overlay) */
  .dropdown-menu {
    border-radius: 0 !important;
    background-color: #be0a69 !important;
    border-bottom: 2px solid #fff !important;
    border-top: 1px dashed #fff !important;
    padding: 10px 20px !important;
  }
  .dropdown-menu a {
    color: #fff !important;
    font-weight: 600 !important;
    padding: 8px 15px !important;
    font-size: 110% !important;
  }
  .dropdown-menu .dropdown-item { padding: 8px 10px; }
  .dropdown-item:hover, .dropdown-item:focus {
    color: #fff !important;
    background-color: #24001f !important;
    border-radius: 20px !important;
  }

  .navbar-collapse {
    padding: 10px 0 !important;
    margin: 22px 0 0 0;
    flex-grow: 0 !important;
    align-items: center;
    max-width: 1100px;
    height: 100% !important;
    box-shadow: -1px 7px 5px -1px rgba(0,0,0,0.45);
    border-bottom: 2px solid #555;
  }

  .nav-link {
    padding: 15px 10px !important;
    height: 44px;
    margin: 5px 0 5px 10px;
    font-size: 117% !important;
  }

  /* Misc mobile tweaks you had */
  .wide-sister-network-img, .wide-sister-network-img-related { width: 180px; }


  .ticker-container { margin-top: 26px; }
  .separator { display: none; }

  .search-container { order: -1; width: 90%; margin-bottom: 10px; }
  .search-box { position: static; width: 100%; opacity: 1; margin: 0; transition: none; }
  .search-icon { margin-left: 10px; margin-right: 10px; cursor: default; background: #cb089e; }

  .preview { width: 350px; height: 300px; float: left; margin: 0 20px 0 0; }

  /* Final content offset (kept explicit override) */
  #container2 #page { margin: 90px auto 0 auto; }
}

/* =========================
   TABLET-WIDE (≤ 1100px)
   ========================= */
@media (max-width: 1100px) {
  /* Keep header the same width as your container so background shows at sides */
  header.header-fixed {
    width: 94.3%;
    margin: 0;
  }
}

/* =========================
   TABLET & UP (≥ 769px)
   ========================= */
@media (min-width: 769px) {

}



/* 1) Mobile: kill fixed background + smooth scroll */
@media (pointer: coarse), (max-width: 768px) {
  html { scroll-behavior: auto !important; }


  /* 2) Only one footer on mobile – hide desktop sticky */

  /* 3) Make the header sticky instead of fixed to reduce jank */
  #header-nav { position: sticky !important; top: 0; }
}

/* 4) Nested scrollers: don’t trap page scroll on touch */
.scrolling_box, .scrolling_box-main {
  overflow-y: auto !important;           /* was scroll */
  overscroll-behavior: contain;          /* Safari 17+ / Chrome */
  -webkit-overflow-scrolling: touch;     /* iOS momentum */
}

/* 5) Cleanups */
#header-nav { /* pick one, don’t set fixed then override to relative */
  /* remove the 'position: fixed;' inside this rule */
}

/* =========================
   SMALLER MOBILE (≤ 768px)
   ========================= */
@media screen and (max-width: 768px) {
  .mini-developer-badge { bottom: 55px; font-size: 80%; }
  .featured-row { padding: 10px 0 20px 0; }

  .network-image-main { width: 17vw; height: 17vw; left: 30px; }
  .network-image-main-spacer { height: 0; }
  .casino-details-table td.key-features-cell { font-size: 60% !important; }

  .sister-block h4 { padding: 0; }
  .sister-block h4 a { font-size: 95%; }
  .sister-block p {
    line-height: 1.3rem; font-size: 95%; padding: 0;
    margin-block-end: .8rem; margin-block-start: .8rem; min-height: 1.75em; margin: 4px 0 0 0;
  }



.ticker-bar {
  background: #000;
  color: #fff;
  font-size: 17px!important;
  font-weight: 600;
  padding: 7px 0;margin:0 0 1px 0; 
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  border-left:1px solid #fff;
    border-right:1px solid #fff; 
 
}

.ticker-track {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translateZ(0); /* GPU acceleration */
}

.ticker-bar a {
  color: #fff;
  text-decoration: underline;
}

.ticker-bar a:hover {
  text-decoration: none;
}

.ticker-track {
  display: inline-block;
  position: relative;
  will-change: transform;
}

  .wide-sister-network-img, .wide-sister-network-img-related { width: 150px !important; }

  .slot-title { font-size: 15px; padding: 0; margin-bottom: 5px; font-weight: 700; }
  .slot-overlay-button { font-size: 17px; font-weight: bold; }

.simplify-float {
position: fixed;
bottom: 140px;
left: 50%;
transform: translateX(-50%);
z-index: 11000;
}


  .game-preview { float: none; margin: 0 auto; max-width: 100%; }
  .footer-icon-wrapper { width: 16.66%; }

  .mini-footer-nav { padding: 4px 0; justify-content: center; gap: 0; }

  .footer-icon-wrapper { width: 18.5%; padding: 0 2px; margin: 0; }




  .larger-icon { width: 36px !important; height: auto !important; }
  .max-larger-icon { margin: 15px 0 0 0; padding: 5px 0; width: 40px !important; height: auto !important; }

  .mobile-only .footer-icon-wrapper { text-align: center; font-size: 12px; }

  .tc-welcome-offer h4 { margin: 5px 0; font-size: 140% !important; line-height: 1; width: 95%; }

  .h-box { padding: 8px 40px; }
  .h-box p { font-size: 100%; line-height: 1.35em; }
  .featured-row p { font-size: 100%; line-height: 1.2em; }

  p { font-size: 18px; line-height: 1.5; margin-bottom: 1.1em; }
  p a { font-size: 96% !important; }
  b, strong { font-size: 1em; font-weight: 600 !important; }

  a { font-size: 94%; text-underline-offset: 1.5px; text-decoration-thickness: 0.7px; }
  a:hover, a:focus { color: #055f90; }

  nav#breadcrumbs { font-size: 0.9rem; }
}

/* =========================
   DESKTOP NAV (≥ 992px)
   ========================= */
@media (min-width: 992px) {
  .navbar-expand-lg { max-width: 1100px !important; }
  .navbar-expand-lg .navbar-nav { flex-direction: row; margin: 0 auto; }

  .nav-link {
    line-height: 2rem !important;
    margin: 0 4px !important;
    top: 3px !important;
    font-size: 115% !important;
    text-decoration: none;
  }

  .navbar-collapse { box-shadow: -1px 7px 5px -1px rgba(0,0,0,0.45) !important; }

  .dropdown-menu {
    background-color: #24001f !important;
    border-radius: 5px !important;
    border-left: 1px solid #fff !important;
    border-right: 1px solid #fff !important;
    border-bottom: 1px solid #fff !important;
    padding: 10px 20px !important;
    box-shadow: -1px 7px 5px -1px rgba(0,0,0,0.45);
    margin: -1px 0 !important;
  }

  .dropdown-menu a { color: #fff !important; font-weight: 600 !important; padding: 8px 15px !important; font-size: 107% !important; }
  .dropdown-item:hover, .dropdown-item:focus { color: #fff !important; background-color: #be0a69 !important; border-radius: 20px !important; }
}


/* 
===================================
1) iPad range: 820px to 1180px
===================================
*/

@media (max-width: 768px) {



#scroll-to-top {
  
bottom: 108px;
}

.tc-offer {
font-size: 80%;
}



    .toggle-panel-button.fixed {
        bottom: 108px; /* Slightly higher on smaller screens */
    }


  .sort-panel-title {
    font-size: 16px;
  }

  .done-button {
    font-size: 14px;
  }

  .glossy-button-offer {
    padding: 4px 14px;
    font-size: 18px;
    display: inline-block;
  }

  .tc-post-item-img {
    width: 40%;
  }

  .tc-post-item {
    padding: 12px 12px 0 12px;
  }



  .tc-welcome-offer p {
    font-size: 112%;
    margin: 15px 0;
    line-height: 1.2;
  }
  
  
    .tc-welcome-offer p strong,  .tc-welcome-offer p b   {
    font-size: 105%;

  }
  

}

/* 
===================================
4) max-width: 576px
(Combined both blocks; removed exact duplicates)
===================================
*/

@media (max-width: 600px) {



.wide-sister-network-img-related, 
 .wide-sister-network-img {
    width: 45vw;
    height: 180px;
    max-width: 110px!important;
  }


.wide-sister-network-img-related .label,
.wide-sister-network-img .label {
font-weight: 700;
font-size: 12px;
padding: 6px 8px;
min-height: 48px;
z-index:999
}


.fallback-suggestion-item {
  flex-direction: row;
  align-items: flex-start;
  text-align: left;
  flex: 1 1 calc(50% - 10px); /* 2 columns with small gap */
}
.fallback-header {
  flex-direction: row;
  align-items: flex-start;
  text-align: left;
}

  .fallback-image {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
  }

  .fallback-image img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid #eee;
  }

  .fallback-content {
    padding: 0 10px;
  }

  .fallback-content h4 {
    margin: 5px 0;
  }

  .fallback-content p {
  }

  .fallback-badge {
    margin-bottom: 8px;
  }


  .glitzy-logo {
    margin: -5px 0 0 40px;
    width: 80%;
    height: auto;
  }



.review-border-box .game-preview img {
max-height: 180px;
margin: 0 auto;
display: block;
float: none;
}
  /* Sticky container */
  .bingo-sticky-container {
    bottom: 0px;
  }

  body {
    background-attachment: scroll; /* Prevents fixed background issues on mobile */
  }





  .search-container-custom {
    width: 90%;
  }

  .search-slots-custom {
    width: 100%;
    font-size: 17px;
  }

  .search-icon-wrapper {
    margin-left: -35px;
  }

  .search-icon-custom {
    width: 24px;
    height: 24px;
  }

  .search-icon-custom img {
    width: 10px;
    height: 10px;
  }





  #header-nav {
    height: 70px;
  }

  .offer-container {
    width: 93%;
    min-height: 225px;
  }

  .offer-container .img.round-logo {
    width: 100px;
    height: 100px;
    margin: 10px auto 0 auto;
  }

  .offer-container .img.round-logo img {
    width: 118%;
    height: 120%;
    margin: -15px 0 0 -7px;
  }

  .offer-container .img.round-logo .glossy-button {
    position: absolute;
    bottom: 7px;
    left: 20px;
    padding: 0 8px;
    font-size: 15px;
    font-weight: 700;
  }

  .glitzy-logo img {
    width: 80%;
    height: auto;
    margin: 0 0 0 55px;
  }

  .scrolling_box,
  .scrolling_box-main {
    margin: 0;
    padding: 2px;
    max-width: 90%;
  }

  .offer-container .txt .tcs {
    font-size: 78%;
    line-height: 135%;
  }

  .offer b {
    font-size: 88%;
    line-height: 120%;
  }

  .offer-review a {
    line-height: 106%;
    display: block;
    font-size: 83%;
    font-weight: 400;
    padding: 5px 12px 5px 12px !important;
  }

  .brand-container .txt .offer b {
    font-size: 115%;
  }

  .brand-container .txt a.visit {
    font-size: 115%;
    font-weight: 700 !important;
    text-decoration: underline !important;
  }


  .review-border-box li {
    padding: 0;
    font-size: 100%;
    line-height: 1.4;
  }



  .spacer {
    height: 13px;
  }

  #owl-advert {
    height: 300px;
  }

  .adtop-tcs, .adtop-tcs-home {
    padding: 10px 20px;
    font-size: 78%;
  }

  .wide-sister-network-img-related-2,
  .wide-sister-network-img-related,
  .wide-sister-network-img {
    margin: 8px 2px;
    max-width: 120px;
  }

  .wide-sister-network-img-related-2 .glossy-button-brand,
  .wide-sister-network-img-related .glossy-button-brand,
  .wide-sister-network-img .glossy-button-brand {
    position: absolute;
    bottom: -35px;
    padding: 4px 12px;
    background: linear-gradient(122deg, #d90488, #f509e3);
    border: 2px solid #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 18px;
  }
  
  
  
  .glossy-button-offer {
 position: absolute;
    bottom: -25px;
    padding: 8px 12px;
    background: linear-gradient(122deg, #d90488, #f509e3);
    border: 2px solid #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 18px;
}






  .brand-container .txt {
    padding: 0 0 50px 0;
    width: 100%;
  }

  .brand-container .img.round-logo-brand {
    display: block !important;
    width: 145px;
    height: 145px;
  }

  .brand-container .img.round-logo-brand .glossy-button-brand {
    left: -65px;
    bottom: 10px;
    padding: 0 8px;
    font-size: 125%;
  }

  .brand-container .img.round-logo-brand img {
    width: 130%;
    height: 130%;
    margin: -15px -23px;
  }



.network-image-main {
width: 19vw!important;
height: 19vw!important;
/* max-width: 110px!important; */
/* max-height: 110px!important; */
/* margin: 0 0 0 20px; */
border: 4px solid rgba(111,5,110,.82);
}

  .network-image-main .glossy-button {
  padding: .2rem .5rem;
font-size: 1.175rem;
    margin: 19px 0 0 30px;

  }

.developer-badge {
position: absolute;
bottom: 70px;
left: 0;
background: rgba(154, 12, 140, 0.7);
color: #fff;
font-size: 0.8em;
font-weight: bold;
padding: 4px 3px;
border-radius: 4px;
z-index: 5;
pointer-events: none;
max-width: 100%;
white-space: nowrap;
text-overflow: ellipsis;
}


}


@media (max-width: 490px) {


 .wide-sister-network-img .glossy-button-brand,
  .wide-sister-network-img-related .glossy-button-brand,
  .wide-sister-network-img-related-2 .glossy-button-brand {
    bottom: -60px;         /* Pull it up a bit */
    font-size: 16px;       /* Smaller text */
    padding: 8px 12px;     /* Less padding */
  }

  .glossy-button-brand {
    bottom: 10px;
    font-size: 16px;
    padding: 8px 12px;
  }


.glossy-button-offer {

  bottom: 45px; /* anchors it near the bottom */

}

nav#breadcrumbs {
padding: 8px 6px 10px 6px;
}

.sisterdesc? {font-size: 90%!important;}


#container2 #page {
margin: 70px auto 0 auto;
}
.more-promotions-button, .ticker-item {font-size:90%}
.ticker-container {height:30px}
.tc-welcome-offer p span {
font-size: 115%;
}
  .tc-welcome-offer p {
    font-size: 110%;
  }
  
  
    .tc-welcome-offer p strong,  .tc-welcome-offer p b   {
    font-size: 120%;

  }
  
.navbar-collapse {
margin: 22px 0 0 0;

}





.network-image-main .glossy-button {
padding: .1rem .3rem;
font-size: 1.1rem;
margin: 19px 0 0 33px;
}
  .main-banner {
    max-width: 320px;
    height: 50px;
  }



  .star-shape {
    left: 0; 
    top: 0;
    width: 42px;
    height: 42px;
    line-height: 42px;
  }

  .star-container {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
  }
}

/* 
===================================
5) min-width: 430px AND max-width: 576px
(Slightly bigger phones only)
===================================
*/
@media (min-width: 430px) and (max-width: 576px) {

.tc-welcome-offer p span {
font-size: 105%;
}
  .tc-welcome-offer p {
    font-size: 105%;
  }
  
  
    .tc-welcome-offer p strong,  .tc-welcome-offer p b   {
    font-size: 100%;

  }
  

}

/* 
===================================
6) max-width: 490px
===================================
*/

/* 
===================================
7) max-width: 429px
(Very small phones)
===================================
*/
@media (max-width: 429px) {

.tc-welcome-offer p span {
font-size: 95%;
}
  .tc-welcome-offer p {
    font-size: 95%;
  }
  
  
    .tc-welcome-offer p strong,  .tc-welcome-offer p b   {
    font-size: 95%;

  }

.glossy-button-offer {
} 


.my-sticky-footer .mini-footer-nav {
gap: 3px !important;
}



.network-image-main .glossy-button {
font-size: 1.08rem;
}


.network-image-main {
max-width: 112px!important;
max-height: 112px!important;
margin: 5px 0 0 20px;
}


.glitzy-logo img {
width: 90%;
margin: 0 0 0 30px;
}



}


  @keyframes drop {
    0% {
      transform: translateY(-100%);
    }
    70% {
      transform: translateY(10%);
    }
    100% {
      transform: translateY(0);
    }
  }

  @keyframes pulsate {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }

  .bingo-site-item.drop {
    animation: drop 0.5s ease-in-out;
  }

  .bingo-site-item.pulsate {
    animation: pulsate 0.5s ease-in-out;
  }
    
    
}

/* === Responsive image baseline (append at END) === */
img, svg, video, canvas {
  max-width: 100%;
  height: auto;
}

/* Don’t let a stray global width:100% stretch images everywhere */
img { width: auto; }

/* Keep your footer icons the intended size */
.my-sticky-footer .footer-icon-wrapper img {
  width: 28px;
  height: 28px;
}

/* Keep footer logos tidy */
footer .footer img { max-height: 30px; width: auto; }

/* ==== STICKY FOOTER: hard fixes (final override) ==== */

/* 0) Remove any duplicate/old sticky bars */
.sticky-icons{ display:none !important; } /* legacy bar off */


/* Show only one mini-footer-nav at a time */
.my-sticky-footer .sticky-desktop-only,
.my-sticky-footer .mobile-only{ display:none !important; }

@media (min-width: 821px){
  .my-sticky-footer .sticky-desktop-only{ display:flex !important; }
}

@media (max-width: 820px){
  .my-sticky-footer .mobile-only{ display:flex !important; }
}

/* 1) Make the wrapper truly sticky */
footer.my-sticky-footer{
  position: fixed !important;
  left: 0 !important; right: 0 !important; bottom: 0 !important;
  width: 100% !important;
  z-index: 2147483646 !important;  /* just under Cookiebot */
  background: #000 !important;
  border-top: 3px solid #c30e84 !important;
  box-shadow: 0 -4px 6px rgba(0,0,0,.4) !important;
}

/* 2) Children are NOT fixed (avoid iPad fixed-in-fixed bug) */
.my-sticky-footer .sticky-desktop-only,
.my-sticky-footer .mobile-only{
  position: static !important;
}

/* 3) Show exactly ONE footer bar at a time */
.my-sticky-footer .sticky-desktop-only,
.my-sticky-footer .mobile-only{ display:none !important; }

@media (min-width: 821px){
  .my-sticky-footer .sticky-desktop-only{ display:flex !important; }
}
@media (max-width: 820px){
  .my-sticky-footer .mobile-only{ display:flex !important; }
}


/* 4) Icons row stays on one line; clock is its own full-width row */
.my-sticky-footer .mini-footer-nav{
  flex-wrap:wrap !important;         /* lets the clock wrap below */
  align-items:center !important;
  justify-content:space-between !important;
  gap:8px !important;
}
.my-sticky-footer .footer-uk-time{
  order:99 !important;
  flex:0 0 100% !important;          /* clock on its own row */
  display:flex !important;
  justify-content:center !important;
  align-items:center !important;
  gap:6px !important;
  background:#000 !important;
  color:#fff !important;
  font-size:14px !important;
  font-weight:600 !important;
  padding-top:6px !important;
  border-top:1px solid #333 !important;
}

/* 5) iOS repaint quirk */
@supports (-webkit-touch-callout: none){
  body{ background-attachment: scroll !important; }
  .my-sticky-footer{ transform: translateZ(0); will-change: transform; }
}

/* 6) Keep page content above the bar */
body{ margin-bottom: 150px !important; }

@media (max-width: 429px) {


.my-sticky-footer .mini-footer-nav {
gap: 0px !important;
justify-content: center;
align-items: 0;
justify-content: 0;
}


}

/* ===== NETWORK HERO — canonical rules ===== */

/* Base layout (all sizes) */
#network-background-box {
  position: relative;
  display: block;
  padding: clamp(10px, 2vw, 18px) 0;
  min-height: 100px;
  margin:5px 0
}
#network-background-box .gradient-overlay { z-index: 1; pointer-events: none; }

#network-background-box .content-wrapper{
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 6px;
}

#network-background-box .network-image-main{
  position: static !important;
  flex: 0 0 auto;
  width: clamp(64px, 11vw, 120px) !important;
  height: clamp(64px, 11vw, 120px) !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
#network-background-box .network-image-main img{
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
}

#network-background-box h1{
  position: static !important;
  margin: 0; padding: 0;
  text-align: left;
  color: #fff !important;
  text-shadow: 1px 1px 2px #000;
  line-height: 1.15;
  font-size: clamp(1.35rem, 1.8vw + .6rem, 2.2rem) !important;
  max-width: 100%;
}
#network-background-box .h1-sub{
  display: block;
  margin-top: .25em;
  font-weight: 600;
  color: rgba(255,255,255,.92);
  font-size: clamp(.95rem, 1.2vw + .2rem, 1.15rem) !important;
}

/* Mobile ≤600px (you said mobile looks good; we just fix the clamp) */
@media (max-width: 600px){
  #network-background-box .content-wrapper{ padding-left: 6px; gap: 16px; }
  #network-background-box .network-image-main{
    width: clamp(58px, 18vw, 94px) !important;
    height: clamp(58px, 18vw, 94px) !important;
    margin-left: 6px;
  }
  /* FIXED clamp (old max smaller than min) */
  #network-background-box h1{
    font-size: clamp(1.32rem, 4vw + .3rem, 1.6rem) !important;
  }
  #network-background-box .h1-sub{
    font-size: clamp(1.1rem, 2.6vw + .15rem, 1.05rem) !important;
    display: block;          /* stays on its own line */
    line-height: 1.2;
  }
}

/* Tablet / small desktop 601–991px: center + bigger type/logo */
@media (min-width: 601px) and (max-width: 991px){
  #network-background-box .content-wrapper{ justify-content: center; gap: 28px; }
  #network-background-box .network-image-main{
    width: 104px !important; height: 104px !important; flex: 0 0 104px !important;
  }
  #network-background-box h1{
    max-width: 56ch;
    font-size: clamp(1.8rem, 2.2vw + .7rem, 2.35rem) !important;
  }
  #network-background-box .h1-sub{
    font-size: clamp(1.05rem, 1.2vw + .35rem, 1.35rem) !important;
  }
}

/* Desktop ≥992px: centered row, larger logo/type */
@media (min-width: 992px){
#network-background-box .content-wrapper {
justify-content: start;
gap: 44px;
}
  #network-background-box .network-image-main{
    width: 110px !important; height: 110px !important; flex: 0 0 110px !important;
  }
  #network-background-box h1{
    max-width: 52ch;
    font-size: clamp(1.9rem, 1.2vw + .9rem, 2.6rem) !important;
  }
  #network-background-box .h1-sub{
    font-size: clamp(1.5rem, .7vw + .25rem, 1.3rem) !important;
  }
  
  #network-background-box .content-wrapper {
position: relative;
z-index: 2;
display: flex;
align-items: center;
gap: 56px;
max-width: 1100px;
margin: 0 auto;
padding: 0 80px;
}
  
}

/* Tiny phones */
@media (max-width: 380px){
  #network-background-box .network-image-main{ width: 44px !important; height: 44px !important; }
}
/* ===== /NETWORK HERO ===== */

/* ===== game-preview2 — one simple style everywhere (bigger >600) ===== */

/* Clearfix so the float never collapses the box */
.review-border-box::after { content:""; display: table; clear: both; }

/* Base: wrapper floats; no clipping/cropping */
.review-border-box .game-preview2{
  float: left !important;
  display: block !important;
  margin: 8px 16px 10px 0 !important;   /* gap before copy */
  width: auto !important;               /* width controlled below */
  aspect-ratio: auto !important;        /* no forced square */
  overflow: visible !important;         /* don't clip */
  border-radius: 12px !important;       /* wrapper rounding only */
  box-sizing: border-box !important;
}

/* Image: always show full art (no crop) */
.review-border-box .game-preview2 img{
  display: block !important;
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;       /* keep natural aspect */
  background: transparent !important;
  border: 3px solid #bb1cbf !important;
  border-radius: 50px !important;
  box-shadow: none !important;
}

/* ≤600px (mobile look) */
@media (max-width: 600px){
  .review-border-box .game-preview2{
    width: clamp(84px, 40vw, 135px) !important;
  }
  
  /* Image: always show full art (no crop) */
.review-border-box .game-preview2 img{
  border-radius: 30px !important;
}


}

/* >600px: same look, just a touch bigger */
@media (min-width: 601px){
.review-border-box .game-preview2 {
width: clamp(120px, 28vw, 200px) !important;
margin: 5px 40px 22px 0 !important;
}
}

/* If a generic ".center" class was centering this, neutralise it */
.review-border-box .game-preview2.center{ text-align: left !important; }

/* ===== Sites List ===== */

/* Featured badge (yellow pill next to brand name) */
#simple-sites-view .site-name{
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

#simple-sites-view .feat-badge{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #fbb34d;        /* matches your .number-circle palette */
  color: #222;                 /* readable on yellow */
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .02em;
  border: 1px solid rgba(0,0,0,.15);
}
#simple-sites-view .feat-badge::before{
  content: "★";
  font-size: 12px;
  line-height: 1;
  transform: translateY(-.5px);
}


/* Colour the inline name badges in the simplified lists only
   (keeps the base .feat-badge style intact) */

#full-alt-view .site-type-badge.alternative {
background-color: #04aabe;
color: #ffffff;
}

#full-sister-view .site-type-badge.sister {
background: #cd008c;
color: #ffffff;
}

/* Card container */
#simple-sites-view .site-card{
  display: flex; /* wins over any earlier .site-card {display:none} */
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 16px;
  padding: 18px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.03);
  transition: border-color .2s ease, box-shadow .2s ease;
}
#simple-sites-view .site-card:hover,
#simple-sites-view .site-card:focus-within{
  border-color: #19a75b;
  box-shadow: 0 6px 18px rgba(25,167,91,.16);
}

/* === Logo container owns rounding + border === */
#simple-sites-view .site-logo-link{
  flex: 0 0 auto;
  width: 84px;
  height: 84px;
  border-radius: 12px;                         /* change to 50% for circles */
  overflow: hidden;                            /* clean crop */
  background: #fff;                            /* pad white logos */
  border: 1px solid rgba(0,0,0,.15);           /* faint border ON CONTAINER */
  box-shadow: none;                            /* no inset ring anymore */
  background-clip: padding-box;                /* keeps border crisp */
}
#simple-sites-view .site-logo{
  width: 100%;
  height: 100%;
  border-radius: 0;                             /* avoid double rounding */
  background: transparent;                      /* wrapper supplies white */
  box-shadow: none;
}

/* Text column */
#simple-sites-view .site-text{
  flex: 1 1 auto;
  min-width: 90px;
}
#simple-sites-view .site-name{
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}
#simple-sites-view .view-guide-link{
  font-size: .85rem;
  color: #d63384;               /* Glitzy pink */
  font-weight: 600;
  text-decoration: none;
  transition: color .2s ease;
}
#simple-sites-view .view-guide-link:hover,
#simple-sites-view .view-guide-link:focus{
  text-decoration: underline;
  color: #b62d6f;
}

/* Visit CTA */
#simple-sites-view .visit-cta{
  flex: 0 0 auto;
  padding: 10px 18px;
  background: linear-gradient(to right, #19a75b, #19a75b); /* Original green */
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  font-size: .95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(25,167,91,.35); /* green glow */
  transition: all .2s ease-in-out;
}
#simple-sites-view .visit-cta svg{
  width: 16px; height: 16px;
  transition: transform .2s ease;
}
#simple-sites-view .visit-cta:hover,
#simple-sites-view .visit-cta:focus{
  background: linear-gradient(to right, #f94d8f, #d63384); /* Pink gradient */
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(217,58,122,.45);            /* pink glow */
}
#simple-sites-view .visit-cta:hover svg,
#simple-sites-view .visit-cta:focus svg{
  transform: translateX(2px);
}

/* Small tweak for mobile */
@media (max-width: 600px){
  #simple-sites-view .feat-badge{
    font-size: 11px;
    padding: 2px 6px;
  }
  #simple-sites-view .site-card{
    flex-wrap: nowrap;
    flex-direction: row;
  }
  #simple-sites-view .site-logo-link{
    width: 80px;
    height: 80px;
  }
  #simple-sites-view .visit-cta{
    font-size: .85rem;
    padding: 6px 10px;
  }
  #simple-sites-view .site-text{ margin-right: auto; }
}


/* === Brand H4: use your old purple === */
/* set this to your exact old hex if you remember it */
:root{ --gb-h4-purple: #aa0662; } /* example rich purple */

#full-sister-view .brand-h4 a,
#full-alt-view   .brand-h4 a{
font-weight:800;
  color: var(--gb-h4-purple) !important;
  /* keep the animated underline in the same colour */
  background-image: linear-gradient(currentColor, currentColor);
}

#full-sister-view .brand-h4 a:hover,
#full-sister-view .brand-h4 a:focus,
#full-alt-view   .brand-h4 a:hover,
#full-alt-view   .brand-h4 a:focus{
  color: #aa0662 !important;   /* slightly deeper on hover */
}

/* optio

/* Optional: dark-mode contrast for the badge outline */
@media (prefers-color-scheme: dark){
  #simple-sites-view .feat-badge{ color:#111; border-color: rgba(0,0,0,.25); }
}

/* ===== /Sites List ===== */


/* ===============================
   Sister/Similar — Detailed Cards
   =============================== */

/* Card shell (unchanged shape/hover) */
#full-sister-view .sister-card,
#full-alt-view   .sister-card{
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.03);
  transition: border-color .2s ease, box-shadow .2s ease;
}
#full-sister-view .sister-card:hover,
#full-alt-view   .sister-card:hover{
  border-color: #19a75b;
  box-shadow: 0 6px 18px rgba(25,167,91,.16);
}

/* Left column = stacked logo + button */
#full-sister-view .brand-tile,
#full-alt-view   .brand-tile{
  flex: 0 0 auto;
  width: 150px;                 /* room for button label */
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Square logo tile — container owns rounding + border */
#full-sister-view .brand-logo-link,
#full-alt-view   .brand-logo-link{
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;          /* perfect square */
  height: auto;                  /* let aspect-ratio control height */
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

/* Image fills square neatly */
#full-sister-view .brand-logo,
#full-alt-view   .brand-logo{
  width: 100%;
  height: 100%;
  object-fit: cover;             /* edge-to-edge fill (no letterbox) */
  object-position: center;       /* crop from center */
}

/* Top-left chip on the image (Sister / Similar) */
#full-sister-view .site-type-badge,
#full-alt-view   .site-type-badge{
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .02em;
  border: 1px solid rgba(0,0,0,.12);
}

/* Green Visit button under the image (games-style) */
#full-sister-view .brand-tile .visit-cta,
#full-alt-view   .brand-tile .visit-cta{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 9px 10px;
  background: linear-gradient(to right, #19a75b, #19a75b);
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  font-size: .93rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(25,167,91,.35);
  transition: all .2s ease-in-out;
}
#full-sister-view .brand-tile .visit-cta:hover,
#full-sister-view .brand-tile .visit-cta:focus,
#full-alt-view   .brand-tile .visit-cta:hover,
#full-alt-view   .brand-tile .visit-cta:focus{
  background: linear-gradient(to right, #f94d8f, #d63384); /* pink hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(217,58,122,.45);
}
#full-sister-view .brand-tile .visit-cta svg,
#full-alt-view   .brand-tile .visit-cta svg{
  width: 16px; height: 16px; transition: transform .2s ease;
}
#full-sister-view .brand-tile .visit-cta:hover svg,
#full-sister-view .brand-tile .visit-cta:focus svg,
#full-alt-view   .brand-tile .visit-cta:hover svg,
#full-alt-view   .brand-tile .visit-cta:focus svg{
  transform: translateX(2px);
}
/* keyboard focus hint */
#full-sister-view .brand-tile .visit-cta:focus-visible,
#full-alt-view   .brand-tile .visit-cta:focus-visible{
  outline: 2px solid #19a75b; outline-offset: 2px;
}

/* Right column text */
#full-sister-view .sister-text,
#full-alt-view   .sister-text{
  flex: 1 1 auto;
  min-width: 160px;
}

/* Brand H4 — improved link styling */
#full-sister-view .brand-h4,
#full-alt-view   .brand-h4{
  margin: 0 0 6px 0;
  font-weight: 800;
  letter-spacing: .01em;
  font-size: clamp(1.02rem, .7vw + .8rem, 1.18rem);
  line-height: 1.2;
}
#full-sister-view .brand-h4 a,
#full-alt-view   .brand-h4 a{
  text-decoration: none;          /* custom underline */
  display: inline-flex;
  align-items: center;
  gap: 6px;
  /* animated underline */
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 2px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: color .25s ease, background-size .25s ease, transform .25s ease;
}
#full-sister-view .brand-h4 a::after,
#full-alt-view   .brand-h4 a::after{
  content: "›";                   /* subtle chevron */
  font-weight: 800;
  transform: translateX(0);
  transition: transform .25s ease;
  opacity: .85;
}
#full-sister-view .brand-h4 a:hover,
#full-sister-view .brand-h4 a:focus,
#full-alt-view   .brand-h4 a:hover,
#full-alt-view   .brand-h4 a:focus{
  background-size: 100% 2px;      /* draw underline in */
}
#full-sister-view .brand-h4 a:hover::after,
#full-sister-view .brand-h4 a:focus::after,
#full-alt-view   .brand-h4 a:hover::after,
#full-alt-view   .brand-h4 a:focus::after{
  transform: translateX(3px);
}

/* Description scroll area plays nice on desktop; mobile breathes */
#full-sister-view .desc-scroll,
#full-alt-view   .desc-scroll{
  max-height: 200px;
  overflow-y: auto;
}

/* Mobile tweaks */
@media (max-width: 600px){
  #full-sister-view .brand-tile,
  #full-alt-view   .brand-tile{ width: 110px; }
  #full-sister-view .sister-card,
  #full-alt-view   .sister-card{ gap: 12px; padding: 12px; }
  #full-sister-view .brand-tile .visit-cta,
  #full-alt-view   .brand-tile .visit-cta{ font-size: .86rem; padding: 7px 8px; }
  /* let long text flow; avoid tiny scrollers on phones */
  #full-sister-view .desc-scroll,
  #full-alt-view   .desc-scroll{
    max-height: none; overflow: visible;
  }
}

/* ===== tiny chips (Home + Slingo) ===== */
.mini-crumbs{
  display:flex; align-items:center; gap:8px; margin:0 0 8px 0;
}
.badge-h1{
  display: inline-block;
  white-space: nowrap;
  line-height: 1;
  font-weight: 700;
  font-size: clamp(.72rem, .55vw + .45rem, .9rem);
  padding: 5px 10px;
  border-radius: 999px;
  text-decoration: none;
}
.badge-h1.home   { background:#4d0337; color:#fff; }
.badge-h1.slingo { background:#ff3f00; color:#fff; }

/* Mini crumb chips (Home + Slingo) */
.mini-crumbs{
  display:flex; align-items:center; gap:8px; margin:0 0 8px 0;
}
.badge-h1 {
display: inline-block;
white-space: nowrap;
line-height: 1;
font-weight: 700;
font-size: clamp(.72rem, .55vw + .45rem, .9rem);
padding: 5px 10px;
border-radius: 999px;
text-decoration: none;
}
.badge-h1.home   { background:#4d0337;   color:#fff; }
.badge-h1.slingo { background:#ff3f00; color:#fff; }
.badge-h1.casino { background:#ac02cb; color:#fff; }
.badge-h1.instants { background:#138304; color:#fff; }
.badge-h1.sister { background:#d40b8b; color:#fff; }
.badge-h1.slots {background-color: #cb0202; color:#fff;}
.badge-h1.bingo {    background-color: #f146b0; color:#fff;}
.badge-h1.slingo { background:#ff3f00; color:#fff; }
.badge-h1.play { background:#19a75b; color:#fff; }
.badge-h1.play::before { content:"▶"; margin-right:6px; font-size:.9em; line-height:1; }



/* === Review text sizing — phones only (place at END) === */

/* 1) Base phones ≤600px */
@media (max-width: 600px){
  html body .review-border-box{ -webkit-text-size-adjust:100%; text-size-adjust:100%; }
  html body .review-border-box p{
    font-size: 0.98rem;   /* ~16px */
    line-height: 1.34;
    letter-spacing: 0.02em;
    min-height: 1.75em;
  }
}

/* 2) Wide phones (iPhone 15/16/Pro/Max ~401–430px): bump size */
@media (min-width: 401px) and (max-width: 430px){
  html body .review-border-box p{
    font-size: 0.97rem;   /* was 1.08rem */
    line-height: 1.3;
  }
  
  h2 {
  font-size: 1.2rem;
}


}


/* 3) Small phones <400px: tighten slightly */
/* was @media (max-width: 430px) { ... } */
@media (max-width: 390px){
  html body .review-border-box p{
    font-size: clamp(0.82rem, 0.78rem + 0.8vw, 0.8rem);
  }
}


/* Sister cards: make body copy smaller than .review-border-box */
#full-sister-view .sister-text p,
#full-alt-view .sister-text p{
  font-size: 0.98rem;     /* desktop/tablet */
  line-height: 1.4;
}

/* Phones ≤600px (review-box uses 1.00rem, so go smaller here) */
@media (max-width: 600px){
  html body #full-sister-view .sister-text p,
  html body #full-alt-view .sister-text p{
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    font-size: 0.94rem;   /* smaller than the review box’s 1.00rem */
    line-height: 1.30;
  }
  
  em {font-size: 0.92rem;     line-height: 1.25}
}

/* Wide phones 401–430px (iPhone 15/16 range) */
@media (min-width: 401px) and (max-width: 430px){
  html body #full-sister-view .sister-text p,
  html body #full-alt-view .sister-text p{
    font-size: 0.95rem;   /* keep slightly smaller than review box */
  }
    .h-box { padding: 8px 20px; }

}

/* Tiny phones <390px */
@media (max-width: 390px){
  html body #full-sister-view .sister-text p,
  html body #full-alt-view .sister-text p{
    font-size: 0.85rem;
  }
  
.review-border-box .game-preview2 {
width: clamp(84px, 40vw, 115px) !important;
}

em {
font-size: 0.80rem;
line-height: 0.2;
}


}


/* Center the Visit button on mobile only */
@media (max-width: 600px){
  .visit-button{
    display: block;                 /* break out of inline flow */
    margin: 12px auto;              /* center horizontally */
    width: fit-content;             /* shrink to content */
    /* fallbacks */
    width: -moz-fit-content;
    float: none;                    /* in case something tried to float it */
    text-align: center;             /* keep label tidy */
  }
}

 @font-face {
  font-family: 'Glyphicons Halflings';
  font-display: swap;
  src: url('https://www.glitzybingo.co.uk/fonts/glyphicons-halflings-regular.eot');
  src: url('https://www.glitzybingo.co.uk/fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}

