.mobile-guide-container {

    margin: 20px auto;
    font-family: 'Inter', -apple-system, sans-serif;

}

.m-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.m-header {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: #f9fdfb;
    border-bottom: 1px solid #eef6f2;
}

.m-status-dot {
    width: 8px;
    height: 8px;
    background-color: #008850;
    border-radius: 50%;
    margin-right: 12px;
}

.m-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #1a1a1a;
    font-weight: 700;
    flex: 1;
}

.m-badge {
    font-size: 0.7rem;
    background: #008850;
    color: #ffffff;
    padding: 3px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.m-body {
    padding: 20px;
}

.m-body p {
    margin: 0 0 15px 0;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

.m-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}

.benefit-item {
    font-size: 0.85rem;
    color: #444;
    padding: 8px 12px;
    background: #fcfcfc;
    border: 1px solid #f0f0f0;
    border-radius: 6px;
    display: flex;
    align-items: center;
}

.benefit-item::before {
    content: "•";
    color: #008850;
    font-weight: bold;
    margin-right: 8px;
}

/* Hover Effect */
.m-card:hover {
    border-color: #008850;
    box-shadow: 0 4px 15px rgba(0, 136, 80, 0.08);
}

@media (max-width: 600px) {
    .m-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .m-badge {
        align-self: flex-start;
    }
}
.compact-showcase {

    margin: 30px auto;
}

.c-card {
    display: flex;
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 25px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.c-card:hover {
    box-shadow: 0 10px 30px rgba(0, 136, 80, 0.12);
    transform: translateY(-3px);
}

.c-image {
    flex: 0 0 200px; /* Reduced width for compactness */
    background: #fcfcfc;
}

.c-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.c-body {
    padding: 20px 25px;
    flex: 1;
}

.c-body h3 {
    margin: 0 0 8px 0;
    color: #008850;
    font-size: 1.4rem;
    font-weight: 800;
}

.c-body p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 12px;
}

.c-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.c-tags span {
    font-size: 0.75rem;
    font-weight: 700;
    color: #008850;
    background: rgba(0, 136, 80, 0.08);
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.c-info {
    border-top: 1px solid #f5f5f5;
    padding-top: 12px;
}

.c-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Tight grid */
    gap: 5px;
}

.c-info ul li {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

/* Mobile: Stack items but keep them compact */
@media (max-width: 650px) {
    .c-card {
        flex-direction: column;
    }
    .c-image {
        flex: 0 0 180px;
    }
    .c-body {
        padding: 15px;
    }
}
.terms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  padding: 30px 0px;
  background-color: #ffffff;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.term-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  /* Multi-layered shadow for a soft, premium "lift" */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), 0 2px 8px rgba(0, 0, 0, 0.02);
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* The "Corner Accent" - subtle green triangle in the top right */
.term-item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(225deg, #008850 50%, transparent 50%);
  opacity: 0.1;
  transition: opacity 0.3s ease;
}



.term-item h3 {
  color: #008850;
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 12px;
  line-height: 1.3;
  /* Styling to make headers stand out without icons */
  display: flex;
  align-items: center;
}

.term-item p {
  color: #4a4a4a;
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .terms-grid {
    grid-template-columns: 1fr;
    padding: 20px 0px;
  }
}
.scrollable {
      width: 100%;
      overflow-x: auto;
      margin: 20px 0;
      font-size: 14px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .bonus-table {
      width: 100%;
      border-collapse: collapse;
      background-color: #ffffff;
      font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      font-size: 0.95rem;
      color: #333;
      text-align: left;
    }

    /* Header Styling */
    .bonus-table th {
      background-color: #008850;
      color: #ffffff;
      font-weight: 600;
      padding: 16px;
      text-transform: uppercase;
      font-size: 0.85rem;
      letter-spacing: 0.5px;
    }

    /* Cell Styling */
    .bonus-table td {
      padding: 14px 16px;
      border-bottom: 1px solid #eee;
      line-height: 1.5;
    }

    /* Row Hover Effect */
    .bonus-table tbody tr:hover {
      background-color: rgba(0, 136, 80, 0.03) !important;
    }

    /* Alternating Row Colors (Optional) */
    .bonus-table tbody tr:nth-child(even) {
      background-color: #fafafa;
    }

    /* Highlights the "Bonus Type" column */
    .bonus-table td:first-child {
      font-weight: 700;
      color: #008850;
      width: 20%;
    }

    /* Key Terms Column subtle emphasis */
    .bonus-table td:last-child {
      font-size: 0.9rem;
      color: #555;
      background-color: rgba(0, 136, 80, 0.02);
    }

    /* ---------- Mobile: card/block layout ---------- */
    @media screen and (max-width: 600px) {
      .scrollable {
        overflow-x: visible;
        margin: 16px 0;
        box-shadow: none;
      }

      .bonus-table,
      .bonus-table thead,
      .bonus-table tbody,
      .bonus-table tr,
      .bonus-table th,
      .bonus-table td {
        display: block;
      }

      .bonus-table thead tr {
        display: none; /* Hide header row; we use data-label on each cell */
      }

      .bonus-table tbody tr {
        background: #fff;
        border: 1px solid #e8e8e8;
        border-radius: 12px;
        padding: 16px;
        margin-bottom: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
      }

      .bonus-table tbody tr:nth-child(even) {
        background: #fff;
      }

      .bonus-table tbody tr:hover {
        background-color: #fff !important;
        box-shadow: 0 4px 12px rgba(0, 136, 80, 0.12);
      }

      .bonus-table td {
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f0;
      }

      .bonus-table td:last-child {
        border-bottom: none;
        padding-bottom: 0;
        background-color: transparent;
      }

      .bonus-table td::before {
        content: attr(data-label);
        display: block;
        font-weight: 600;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        color: #008850;
        margin-bottom: 4px;
      }

      .bonus-table td:first-child {
        width: 100%;
        font-size: 1rem;
        padding-top: 0;
        border-bottom: 1px solid #eee;
        margin-bottom: 8px;
        padding-bottom: 12px;
      }

      .bonus-table td:first-child::before {
        display: none; /* Bonus type is the card title, no label needed */
      }
    }

    /* Desktop: keep original padding on small screens for table mode */
    @media screen and (min-width: 601px) {
      .bonus-table th,
      .bonus-table td {
        padding: 14px 16px;
      }
    }
    .steps-list { padding: 8px 0 64px; }
    .steps-list__intro { margin-bottom: 28px; font-size: 1rem; color: #444; }
    .steps-list__step { margin-bottom: 32px; }
    .steps-list__step:last-of-type { margin-bottom: 0; }
    .steps-list__body h3 {
      margin: 0 0 12px 0;
      font-size: 1.1rem;
      color: #008850;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .steps-list__body h3::before {
      content: attr(data-num);
      width: 28px;
      height: 28px;
      background: rgba(0, 136, 80, 0.15);
      color: #008850;
      border-radius: 6px;
      font-size: 0.85rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .steps-list__body p,
    .steps-list__body ul { margin: 0 0 10px 0; font-size: 0.92rem; color: #444; line-height: 1.58; }
    .steps-list__list { padding-left: 20px; }
    .steps-list__tip {
      margin-top: 32px;
      padding: 22px 26px;
      background: #008850;
      color: #fff!important;
      border-radius: 12px;
    }
    .steps-list__tip p {   color: #fff!important; margin: 0; margin-bottom: 0px!important;  }
    .steps-list__outro { margin-top: 26px;  font-size: 0.9rem; color: #555; }

    /* Split columns */
    .split-col { padding: 48px 0 64px; }
    .split-col__grid {
      display: grid;
      grid-template-columns: 1fr 2px 1fr;
      gap: 0;
      align-items: start;
    }
    .split-col__divider { background: #008850; width: 2px; min-height: 100%; }
    .split-col__side { display: flex; flex-direction: column; gap: 24px; padding: 0 8px; }
    .split-col__side:first-child { padding-right: 32px; }
    .split-col__side:last-child { padding-left: 32px; }
    .split-col__item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }
    .split-col__item .split-col__icon {
      width: 76px;
      height: 76px;
      margin: 0;
      flex-shrink: 0;
      display: block;
      filter: brightness(0) saturate(100%) invert(42%) sepia(89%) saturate(800%) hue-rotate(115deg) brightness(95%) contrast(101%);
    }
    .split-col__item h3 { margin: 0 0 6px 0; font-size: 1rem; color: #008850; font-weight: 600; }
    .split-col__item p { margin: 0; font-size: 0.88rem; color: #444; line-height: 1.5; }

    @media (max-width: 900px) {
			.c-info li {
  margin: 0px!important;
}
			ul li {
  margin-left: 20px;
}
      .split-col__grid { grid-template-columns: 1fr; }
      .split-col__divider { width: 100%; height: 2px; }
      .split-col__side:first-child, .split-col__side:last-child { padding: 0; }
      .split-col__side:first-child { padding-bottom: 24px; }
      .split-col__side:last-child { padding-top: 24px; }
    }
.clt {
	width: 100%;
	margin: 35px auto 0px auto!important
}
.neve-toc .neve-toc-link:before {
		content: "◼";
		color: #006b40;
		margin-right: 10px;
		float: left;
	}
@media (max-width: 767px) {
	.col {
		padding-right: 8px!important;
  padding-left: 8px!important;
	}
	.footer--row-inner {
  display: block!important;
  text-align: center;
}
.footer-bottom-inner {
  height: auto!important;
  padding: 20px 0px!important;
}
	.footer-bar {
		width: 100%;
		display: flex!important;
		justify-content: center!important;
		padding-top: 10px!important;
		margin-top: 0px!important;
		border-top: 1px solid #404549;
	}
	.site-info {
  display: flex;
  margin-bottom: 0px!important;
  justify-content: space-evenly;
  width: 100%;
	
}
	  .site-link {
    margin-right: 0px;
			padding: 15px 0px!important;
    width: 100%;
			display: block;
    text-align: center;
  }
	.neve-toc .neve-toc-list {
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		align-items: flex-start;
		text-align: left;
	}
  .neve-toc .neve-toc-item:after {
    display: none;
  }
	.neve-toc .neve-toc-item {
			text-align: left!important;
		border-bottom: 1px solid #eee;
		display: block;
		width: 100%;
	
	}
	.neve-toc .neve-toc-link:before {
		content: "◼";
		color: #006b40;
		margin-right: 10px;
		float: left;
	}
	.neve-toc .neve-toc-link {
	text-align: left!important;
		font-weight: normal;
			display: block;
		padding: 10px 15px!important;
		width: 100%;
		
	}
	.neve-toc .neve-toc-item-more {
		display: none;
	}
	.neve-toc.neve-toc-expanded .neve-toc-item-more {
		display: list-item;
	}
	.neve-toc .neve-toc-show-all {
		display: inline-block;
		margin-top: 8px;
		padding: 6px 12px;
		font-size: 10px;
		cursor: pointer;
		background: transparent;
		border: 1px solid #eee;
		border-radius: 6px;
		color: inherit;
	}
	.neve-toc .neve-toc-show-all:hover {
		opacity: 0.85;
	}
}
@media (min-width: 768px) {
	.neve-toc .neve-toc-show-all {
		display: none !important;
	}
}
.nv-page-casino-list-top .clt {
  margin: 0px!important;
}
body .custom-msg {
  margin-top: 15px!important;
  margin-bottom: -20px;
}
.nv-custom-header-container {
	max-width: 1170px;
}
.neve-toc {
  max-width: 1170px;
  margin: 30px auto;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  display: flex; /* Aligns Title and List on the same line */
  align-items: stretch;
  overflow: hidden;
  height: 45px; /* Fixed compact height */
}
 .neve-toc-title {
    margin: 0px!important;
  }
/* --- The "On this page" Title --- */
.neve-toc-title {
  background: #f8f9fa;
  color: #666;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0 20px;
  margin: 0;
  display: flex;
  align-items: center;
  white-space: nowrap;
  border-right: 1px solid #e0e0e0;
  letter-spacing: 0.5px;
}

/* --- The List --- */
.neve-toc-list {
  display: flex;
  flex: 1; /* Takes up remaining space */
  list-style: none;
  padding: 0px!important;
  margin: 0px!important;
  flex-flow: row nowrap;
}

/* --- The Menu Item --- */
.neve-toc-item {
  flex: 1;
  display: flex;
  position: relative;
  margin: 0px!important;
}

/* The Connection Divider */
.neve-toc-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: #eee;
}

/* --- The Link Styling --- */
.neve-toc-link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #444;
  font-weight: 600;
  font-size: 13px;
  padding: 0 10px;
  white-space: nowrap;
  transition: all 0.2s;
  text-decoration: none !important;
}

/* --- Hover State --- */
.neve-toc-item:hover .neve-toc-link {
  background: #008850;
  color: #fff;
}

/* --- Mobile: Swipeable Layout --- */
@media (max-width: 991px) {
  .neve-toc {
    height: auto;
    flex-direction: column; /* Stack title above list on small screens */
  }
  
  .neve-toc-title {
    padding: 10px 20px;
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }

  .neve-toc-list {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
 
  .neve-toc-list::-webkit-scrollbar { display: none; }

  .neve-toc-item {
    flex: 0 0 auto;
  }

  .neve-toc-link {
    padding: 12px 20px;
  }
}
.footer--row-inner {
	justify-content: space-between;
}
.steps {
  max-width: 1170px;
  margin: 60px auto;
  padding: 0;
  list-style: none;
  counter-reset: step-id;
}
.steps br {
  display: none;
}
.neve-faq-section {
	margin: 0px!important;
}
/* --- Desktop Layout (1170px) --- */
@media (min-width: 992px) {

  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
		margin: 40px 0px 20px 0px!important;
		padding: 0px!important;
    gap: 35px 25px;
    position: relative;
  }

  /* The "Track" - A subtle line that runs across the whole grid row */
  .steps li::after {
    content: "";
    position: absolute;
    top: 0; /* Aligned with the top border */
    left: 0;
    right: 0;
    height: 2px;
    background: #e0e0e0; /* Light grey track */
    z-index: 1;
  }

  /* The Green Progress Line - Only spans between items */
  .steps li:not(:last-child)::after {
    background: linear-gradient(to right, #008850 50%, #e0e0e0 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    transition: all 0.5s ease;
  }

  .steps li {
    position: relative;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-top: none; /* Let the track act as the top border */
    border-radius: 0 0 12px 12px; /* Rounded bottom only */
    padding: 30px 20px 20px 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
		font-size: 13px;
  }

  /* Number sitting ON the top track */
  .steps li::before {
    content: counter(step-id);
    counter-increment: step-id;
    position: absolute;
    top: -16px; 
    left: 20px;
    width: 32px;
    height: 32px;
    background: #008850;
    color: white;
    border-radius: 50%; /* Circle looks cleaner on a track */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    z-index: 3;
    box-shadow: 0 0 0 6px #fff; /* White glow to "cut" the track */
  }

  /* Hover: Highlight the specific track segment */
  .steps li:hover {
    transform: translateY(5px);
    box-shadow: 0 10px 25px rgba(0, 136, 80, 0.1);
  }
}

/* --- Mobile Layout (Phone) --- */
@media (max-width: 991px) {
h2 {
  text-wrap: wrap;
  border-left: 5px solid #008850;
  padding: 0px 0px 0px 25px;
  margin-left: -10px;
	line-height: 24px;
}
		h2::after {
  content: "";
  flex-grow: 0;
display: none!important;
  background: none;
}
  .steps { padding: 0px!important; }
  .steps li {
    position: relative;
    padding-left: 45px;
    padding-bottom: 35px;
    border-left: 2px solid #e0e0e0;
    margin-left: 15px;
  }
  .steps li:not(:last-child):hover { border-left-color: #008850; }
  .steps li::before {
    content: counter(step-id);
    counter-increment: step-id;
    position: absolute;
    left: -16px;
    top: 0;
    width: 30px;
    height: 30px;
    background: #008850;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 0 5px #ffffff;
  }
}

/* --- Typography --- */
.steps li strong {
  display: block;
  color: #008850;
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.clt,
.clt * {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

.clt a,
.clt a:hover {
	text-decoration: none !important;
}

.clt {
	width: 100%;
	margin: 45px auto;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

/* Card container */
.clt-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	overflow: hidden;
}

.clt-main {
	display: grid;
	grid-template-columns: 110px 350px 70px 1fr 1.2fr;
	align-items: center;
	padding: 20px 22px 16px;
	gap: 0;
}

/* Column 1: Brand */
.clt-brand {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding-right: 14px;
}

.clt-logo {
	width: 90px;
	height: 90px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.clt-logo img {
	max-width: 84%;
	max-height: 84%;
	object-fit: contain;
}

/* Column 2: Bonus */
.clt-bonus {
	padding: 0 18px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
}

.clt-bonus-label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.7px;
	color: #9ca3af;
	font-weight: 700;
	margin-bottom: 2px;
}

.clt-bonus-value {
	font-size: 20px;
	font-weight: 800;
	color: #111827;
	line-height: 1.2;
	margin-bottom: 6px;
}

.clt-bonus-value span {
	color: #008850;
}

.clt-payments {
	font-size: 11px;
	color: #6b7280;
	font-weight: 400;
}

.clt-payments b {
	font-weight: 600;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

/* Columns 3+4: Min Deposit + Games (wrapper for mobile one-row) */
.clt-dep-games {
	grid-column: 3/5;
	display: grid;
	grid-template-columns: 70px 1fr;
	align-items: center;
	gap: 0;
}

.clt-dep {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 7px;
	padding: 0 10px;
}

.clt-dep-label {
	font-size: 10px;
	color: #9ca3af;
	font-weight: 500;
	white-space: nowrap;
}

.clt-dep-box {
	background: rgba(0, 136, 80, 0.06);
	border: 1px solid rgba(0, 136, 80, 0.25);
	border-radius: 8px;
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 800;
	color: #374151;
	text-align: center;
	line-height: 1;
}

/* Column 4: Games */
.clt-games {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	padding: 0 8px;
}

.clt-games-hd {
	display: flex;
	gap: 6px;
}

.clt-games-hd span {
	flex: 0 0 52px;
	width: 52px;
	text-align: center;
	font-size: 10px;
	color: #6b7280;
	font-weight: 500;
}

.clt-games-row {
	display: flex;
	gap: 6px;
}

.clt-gbox {
	flex: 0 0 52px;
	width: 52px;
	height: 52px;
	border-radius: 6px;
  border: 1px solid rgb(242, 243, 245);
	background: #f9fafb;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.clt-gbox img {
	max-width: 80%;
	max-height: 80%;
	object-fit: contain;
}

.clt-gbox-count {
	flex: 0 0 52px;
	width: 52px;
	height: 52px;
	border-radius: 6px;
  border: 1px solid rgb(242, 243, 245);
	background: #f9fafb;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
	color: #374151;
	gap: 2px;
}

.clt-gbox-count svg {
	width: 10px;
	height: 10px;
	flex-shrink: 0;
}

/* Column 5: Rating + CTA (2x2 grid) */
.clt-right {
	display: grid;
	grid-template-columns: auto 1fr;
	grid-template-rows: auto auto;
	gap: 8px 42px;
	align-items: center;
	padding-left: 10px;
}

.clt-rating {
	display: flex;
	align-items: center;
	gap: 5px;
	grid-column: 1;
	grid-row: 1;
}

.clt-star {
	color: #facc15;
	font-size: 22px;
	line-height: 1;
}

.clt-rnum {
	font-size: 20px;
	font-weight: 800;
	color: #111827;
}

.clt-rden {
	font-size: 14px;
	font-weight: 400;
	color: #9ca3af;
}

.clt-btn {
	grid-column: 2;
	grid-row: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #008850;
	color: #fff;
	height: 42px;
	padding: 0 18px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.2s;
}

.clt-btn:hover {
	background: #006b40;
	color: #fff;
}

.clt-code {
	grid-column: 1;
	grid-row: 2;
	background: rgba(0, 136, 80, 0.06);
	border: 1px solid rgba(0, 136, 80, 0.3);
	border-radius: 5px;
	padding: 4px 8px;
	font-size: 10px;
	font-weight: 800;
	text-align: center;
	white-space: nowrap;
}

.clt-code-label {
	color: #000;
	font-weight: 800;
}

.clt-code-value {
	color: #008850;
	font-weight: 800;
}

.clt-code-copy {
	cursor: pointer;
	user-select: none;
}

.clt-code-copy:hover {
	background: rgba(0, 136, 80, 0.12);
}

.clt-review {
	grid-column: 2;
	grid-row: 2;
	font-size: 13px;
	color: #6b7280;
	text-decoration: none;
	text-align: center;
	font-weight: 400;
}

.clt-review:hover {
	color: #008850;
}

/* Page entry only: vertically center Visit Casino button when Read Review is hidden */
.clt-card-on-page .clt-right .clt-btn {
	grid-row: 1/-1;
	align-self: center;
}

/* Disclaimer row */
.clt-foot {
	border-top: 1px solid #f0f0f0;
	padding: 8px 22px;
	background: #fbfcfd;
	font-size: 9px;
	color: #c0c4c9;
	line-height: 1.3;
}

/* Tablet (960px and below) */
@media (max-width: 960px) {
	.clt-main {
		display: flex;
		flex-wrap: wrap;
		gap: 16px;
		align-items: flex-start;
		justify-content: center;
		padding: 16px;
	}

	.clt-brand {
		width: 100%;
		flex-direction: row;
		justify-content: center;
		padding: 0;
		padding-bottom: 4px;
	}

	.clt-bonus {
		flex: 1 1 100%;
		min-width: 0;
		padding: 0;
	}

	.clt-dep-games {
		display: flex;
		flex: 0 0 auto;
	}

	.clt-dep {
		flex: 0 0 auto;
	}

	.clt-games {
		flex: 0 0 auto;
		min-width: 160px;
	}

	.clt-right {
		width: 100%;
		flex: 1 1 100%;
		grid-template-columns: 1fr 1fr;
		padding-left: 0;
		padding-top: 8px;
		gap: 8px 16px;
	}

	.clt-card-on-page .clt-right .clt-btn {
		grid-row: 1;
		align-self: auto;
	}
}

/* Mobile (640px and below) */
@media (max-width: 640px) {
	.clt {
		gap: 12px;
		padding: 0;
	}

	.clt-card {
		border-radius: 10px;
	}

	.clt-main {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: stretch;
		padding: 14px;
		gap: 14px;
	}

	.clt-brand {
		width: 100%;
		flex-direction: row;
		justify-content: center;
		gap: 12px;
	}

	.clt-logo {
		width: 80px;
		height: 80px;
		min-width: 80px;
		border-radius: 10px;
	}

	.clt-bonus {
		width: 100%;
		padding: 0;
		text-align: center;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.clt-bonus-value {
		font-size: 18px;
	}

	.clt-dep-games {
		width: 100%;
		display: flex;
		flex-wrap: nowrap;
		gap: 0;
	}

	.clt-dep {
		flex: 1 1 25%;
		min-width: 0;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		gap: 5px;
		padding: 0;
	}

	.clt-dep-label {
		margin: 0;
		font-size: 9px;
		color: #6b7280;
		text-align: center;
	}

	.clt-dep-box {
		width: 44px;
		height: 44px;
		font-size: 12px;
		border-radius: 6px;
		border: 1px solid rgba(0, 136, 80, 0.2);
		background: #f9fafb;
		font-weight: 700;
		color: #374151;
	}

	.clt-games {
		flex: 1 1 75%;
		min-width: 0;
		padding: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 5px;
	}

	.clt-games-hd {
		display: flex;
		flex: 1;
		justify-content: space-between;
		gap: 4px;
	}

	.clt-games-hd span {
		flex: 1;
		min-width: 0;
		text-align: center;
		font-size: 9px;
		color: #6b7280;
	}

	.clt-games-row {
		display: flex;
		flex: 1;
		justify-content: space-between;
		gap: 4px;
	}

	.clt-gbox,
	.clt-gbox-count {
		flex: 1;
		min-width: 0;
		width: 44px;
		height: 44px;
		max-width: 52px;
		margin: 0 auto;
	}

	.clt-right {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
		align-items: stretch;
	}

	.clt-right .clt-rating {
		order: 1;
		flex: 1 1 100%;
		justify-content: center;
	}

	.clt-right .clt-code {
		order: 2;
		flex: 1 1 100%;
	}

	.clt-right .clt-btn {
		order: 3;
		flex: 1 1 auto;
		min-width: 140px;
		justify-self: stretch;
	}

	.clt-right .clt-review {
		order: 4;
		flex: 1 1 100%;
		text-align: center;
	}

	.clt-foot {
		padding: 8px 14px;
		font-size: 8px;
	}
}

/* Extra small mobile (380px and below) */
@media (max-width: 380px) {
	.clt-right .clt-btn {
		flex: 1 1 100%;
	}

	.clt-right .clt-code {
		flex: 1 1 100%;
	}
}

.clt-card-on-page {
  margin-top: 10px!important;
}
.footer--row {
  background: #24292e;
}
/* Content Sections */
.content-section-wrapper {
    margin-top: 1rem;
}

.content-section-content {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
}

.content-section-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #4b5563;
}

.content-section-content p:last-child {
    margin-bottom: 0;
}

.content-section-content h1,
.content-section-content h2,
.content-section-content h3,
.content-section-content h4,
.content-section-content h5,
.content-section-content h6 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1f2937;
}

.content-section-content ul {
    margin-bottom: 1rem;
    padding-left: 10px
}

.content-section-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #4b5563;
}


/* Pros and Cons Section */
.pc-v2-container {
    margin-top: 1rem;
}

.pc-v2-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .pc-v2-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pc-v2-column {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
}

.pc-v2-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.pc-v2-indicator {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pc-v2-column.pro .pc-v2-indicator {
    background: #10b981;
    color: white;
}

.pc-v2-column.con .pc-v2-indicator {
    background: #ef4444;
    color: white;
}

.pc-v2-indicator svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.pc-v2-header h3 {
    font-weight: 700;
    font-size: 1rem;
    color: #1f2937;
    margin: 0;
}

.pc-v2-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pc-v2-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.pc-v2-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6b7280;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.pc-v2-column.pro .pc-v2-dot {
    background: #10b981;
}

.pc-v2-column.con .pc-v2-dot {
    background: #ef4444;
}

.pc-v2-item p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #4b5563;
}

/* Responsive Adjustments */
@media (max-width: 640px) {
    .casino-bonus-section {
        padding: 1.5rem;
    }
    
    .casino-bonus-amount {
        font-size: 2rem;
    }
    
    .casino-claim-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .casino-promo-section {
        padding: 1.5rem;
    }
    
    .pc-v2-column {
        padding: 1rem;
    }
}

.g-review-wrapper {
    max-width: 100%;
    margin: 0 auto;
    color: #333;
    line-height: 1.7;
}

/* Isolated Sidebar Box */
.g-review-sidebar {
    float: right;
    width: 365px;
    margin: 0 0 25px 30px;
    background: #ffffff;
    border: 2px solid #f1f1f1;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.g-review-sidebar-title {
    margin: 0 0 15px 0 !important;
    font-size: 1.3rem !important;
    font-weight: normal;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 4px solid #38a169; /* Gold accent */
    padding-bottom: 8px;
}

/* Sidebar Data Table */
.g-review-table {
    width: 100%;
    border-collapse: collapse;
}

.g-review-table tr {
    border-bottom: 1px solid #f0f0f0;
}

.g-review-table tr:last-child {
    border-bottom: none;
}

.g-review-table-label {
    padding: 12px 0;
    font-weight: 700;
    color: #666;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.g-review-table-value {
    padding: 12px 0;
    text-align: right;
    font-weight: 600;
    color: #111;
    font-size: 0.95rem;
}

/* Pros and Cons Floating Container */
.g-review-pros-cons-grid {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    clear: both; /* Ensures it clears the floated sidebar if necessary */
}

.g-review-box {
    flex: 1;
    padding: 20px;
    border-radius: 12px;
}

.g-review-box-pros {
    background-color: #f0fff4;
    border-left: 5px solid #38a169;
}

.g-review-box-cons {
    background-color: #fff5f5;
    border-left: 5px solid #e53e3e;
}

.g-review-box-title {
    display: block;
    font-weight: 800;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.g-review-box-pros .g-review-box-title { color: #2f855a; }
.g-review-box-cons .g-review-box-title { color: #c53030; }

.g-review-list {
    margin: 0;
    padding-left: 18px;
    list-style-type: square;
}

.g-review-list li {
    margin-bottom: 6px;
    font-size: 0.95rem;
}

/* Responsive Logic */
@media (max-width: 768px) {
	.content-section-content {
		padding: 10px!important;
	}
    .g-review-sidebar {
        float: none;
        width: 100%;
        margin: 0 0 20px 0;
    }
    .g-review-pros-cons-grid {
        flex-direction: column;
    }
}
.slotsl-load-more-btn {
  padding: 15px 10px!important;
  border: 1px solid #ccc!important;
  font-size: 15px!important;
  border-radius: 10px;
}
.slotsl-load-more-btn:hover  {
  padding: 15px 10px!important;
  border: 1px solid #ccc!important;
  font-size: 16px!important;
  background: #138a4c!important;
}
.custom-menu-class {
    padding: 20px 0;
    width: 100%;
}

.custom-menu-class ul#menu-gamecategoriesmenu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap; 
    gap: 12px;
    justify-content: center;
}

.custom-menu-class ul#menu-gamecategoriesmenu li {
    margin: 0;
    padding: 0;
}

.custom-menu-class ul#menu-gamecategoriesmenu li a {
    display: block;
    padding: 10px 20px;
    background-color: transparent;
    color: #4d4d4d;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-transform: none;
    transition: all 0.25s ease-in-out;
    border: 2px solid #b9b9b9;
    letter-spacing: 0.5px;
}

.custom-menu-class ul#menu-gamecategoriesmenu li a:hover {
    background-color: #138a4c;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(19, 138, 76, 0.3);
}

.custom-menu-class ul#menu-gamecategoriesmenu li.current-menu-item a {
    background-color: #138a4c;
    color: #ffffff;
    border-color: #138a4c;
}

@media (max-width: 991px) {
	.custom-menu-class ul#menu-gamecategoriesmenu {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 15px;
    }

    .custom-menu-class ul#menu-gamecategoriesmenu li a {
        padding: 12px 5px!important;
        font-size: 12px; /* Slightly smaller font to fit 2 columns */
      text-align: center;
    }
    .custom-menu-class {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 10px 15px;
    }
    
    .custom-menu-class ul#menu-gamecategoriesmenu {
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: 10px;
    }

    .custom-menu-class ul#menu-gamecategoriesmenu li a {
        white-space: nowrap;
    }
}

.custom-menu-class::-webkit-scrollbar {
    height: 4px;
}

.custom-menu-class::-webkit-scrollbar-thumb {
    background: #138a4c;
    border-radius: 10px;
}
.who-benefits-icon img {
  height: 30px;
  width: 30px;
}
.gamebutton {
  background: #008850;
  color: #fff;
  padding: 10px 20px;
  margin: auto;
  display: block;
  text-align: center;
  border-radius: 5px;
	margin-top: 20px;
}.game-category-feature-item:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background-color: #008850;
  margin-top: 6px;
  flex-shrink: 0;
}
.section-title {
	white-space: wrap;
}
.gamebutton:hover {
  color: #fff;
    background: #27ae76;
}
.casino-demo-main {
    width: 100%;
    font-family: 'Spline Sans', 'Noto Sans', sans-serif;
    background-color: #ffffff;
    color: #0f172a;
    overflow-x: hidden;
}

.casino-demo-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 18px 16px;
    background-color: #ffffff;
}

/* Hero Section */
.text-center {
    text-align: center;
}

.mb-16 {
    margin-bottom: 34px;
	margin-top: 20px;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    color: #475569;
    max-width: 48rem;
    margin: 0 auto 16px;
    line-height: 1.75;
}

.hero-description-second {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

/* Intro Cards Grid */
.grid {
    display: grid;
}

/* Make game category cards equal height */
.grid.grid-cols-1.lg-grid-cols-2 {
    align-items: stretch;
}

.md-grid-cols-3 {
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .md-grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gap-8 {
    gap: 32px;
}

.intro-card {
    background-color: #f0fdf4;
    padding: 32px;
    border-radius: 1rem;
    border: 1px solid #dcfce7;
    transition: all 0.3s ease;
}

.intro-card:hover {
    border-color: rgba(0, 136, 80, 0.3);
    box-shadow: 0 10px 15px -3px rgba(0, 136, 80, 0.05), 0 4px 6px -2px rgba(0, 136, 80, 0.05);
}

.intro-card-icon-wrapper {
    width: 56px;
    height: 56px;
    background-color: #ffffff;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
	float: left;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.intro-card-icon-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.intro-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.intro-card-text {
    color: #475569;
    line-height: 1.75;
    font-size: 0.875rem;
}

/* Two Column Section */
.lg-grid-cols-2 {
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .lg-grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gap-12 {
    gap: 48px;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-text {
    color: #475569;
    line-height: 1.75;
    font-size: 1.125rem;
}

.section-text p {
    margin-bottom: 16px;
}

.section-text p:last-child {
    margin-bottom: 0;
}

/* Benefits Box */
.benefits-box {
    background-color: #ffffff;
    padding: 20px 32px;
    border-radius: 1rem;
    border: 1px solid #f1f5f9;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
}

.benefits-box-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
}

.benefits-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.benefit-item {
    display: flex;
    gap: 16px;
}

.benefit-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    background-color: #f0fdf4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #008850;
}

.benefit-icon svg {
    width: 20px;
    height: 20px;
}

.benefit-heading {
    font-weight: 700;
    color: #0f172a;
    font-size: 0.875rem;
    margin-bottom: 4px;
}

.benefit-description {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 4px;
    line-height: 1.5;
}

/* Game Categories Section */
.w-full {
    width: 100%;
}

.bg-slate-50 {
    background-color: #f8fafc;
}

.border-t {
    border-top: 1px solid;
}

.border-gray-200 {
    border-color: #e5e7eb;
}

.max-w-1440 {
    max-width: 1440px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-4 {
    padding-left: 16px;
    padding-right: 16px;
}

@media (min-width: 640px) {
    .sm-px-6 {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (min-width: 1024px) {
    .lg-px-8 {
        padding-left: 32px;
        padding-right: 32px;
    }
}

.py-16 {
    padding-top: 64px;
    padding-bottom: 64px;
}

.game-categories-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 48px;
    text-align: center;
}

@media (min-width: 768px) {
    .game-categories-title {
        font-size: 2.25rem;
    }
}

.grid-cols-1 {
    grid-template-columns: 1fr;
}

.lg-grid-cols-2 {
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 1024px) {
    .lg-grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .lg-gap-12 {
        gap: 48px;
    }
}

.game-category-card {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 32px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    height: 100%;
}

.game-category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
}

.game-category-icon-wrapper {
    padding: 12px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-category-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* Icon Color Variants */
.game-category-icon-blue {
    background-color: #dbeafe;
    color: #2563eb;
}

.game-category-icon-red {
    background-color: #fee2e2;
    color: #dc2626;
}

.game-category-icon-green {
    background-color: #dcfce7;
    color: #16a34a;
}

.game-category-icon-purple {
    background-color: #f3e8ff;
    color: #9333ea;
}

.game-category-icon-pink {
    background-color: #fce7f3;
    color: #ec4899;
}

.game-category-icon-amber {
    background-color: #fef3c7;
    color: #d97706;
}

.game-category-icon-teal {
    background-color: #ccfbf1;
    color: #14b8a6;
}

.game-category-icon-indigo {
    background-color: #e0e7ff;
    color: #6366f1;
}

.game-category-icon-orange {
    background-color: #fed7aa;
    color: #ea580c;
}

.game-category-icon-cyan {
    background-color: #cffafe;
    color: #06b6d4;
}

.game-category-icon-yellow {
    background-color: #fef9c3;
    color: #ca8a04;
}

.game-category-icon-stone {
    background-color: #f5f5f4;
    color: #78716c;
}

.game-category-icon-emerald {
    background-color: #d1fae5;
    color: #10b981;
}

.game-category-icon-lime {
    background-color: #ecfccb;
    color: #84cc16;
}

.game-category-icon-fuchsia {
    background-color: #fae8ff;
    color: #d946ef;
}

.game-category-icon-rose {
    background-color: #ffe4e6;
    color: #e11d48;
}

.game-category-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.game-category-subtitle {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

.game-category-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex-grow: 1;
}

.game-category-section-label {
    font-weight: 700;
    color: #008850;
    margin-bottom: 8px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.game-category-description {
    color: #475569;
    font-size: 0.875rem;
    line-height: 1.75;
}

.md-grid-cols-2 {
    grid-template-columns: 1fr;
    gap: 16px;
}

/* Make feature boxes full width inside game category cards */
.game-category-card .md-grid-cols-2 {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .md-grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Override for game category cards - keep single column */
    .game-category-card .md-grid-cols-2 {
        grid-template-columns: 1fr;
    }
}

.gap-4 {
    gap: 16px;
}

.bg-slate-50 {
    background-color: #f8fafc;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.p-4 {
    padding: 16px;
}

.game-category-features-title {
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
    font-size: 0.875rem;
}

.game-category-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.game-category-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: #475569;
}

.feature-bullet {
    width: 6px;
    height: 6px;
    border-radius: 9999px;
    background-color: #008850;
    margin-top: 6px;
    flex-shrink: 0;
}

/* Comparison Section */
.bg-white {
    background-color: #ffffff;
}

.py-16 {
    padding-top: 64px;
    padding-bottom: 64px;
}

.max-w-960 {
    max-width: 960px;
}

/* Who Benefits Section */
.md-grid-cols-3 {
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .md-grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.who-benefits-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.who-benefits-icon {
    padding: 12px;
    background-color: #f0fdf4;
    border-radius: 9999px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    color: #008850;
    border: 1px solid #dcfce7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.who-benefits-icon svg {
    width: 30px;
    height: 30px;
}

.who-benefits-card-title {
    font-weight: 700;
    font-size: 1.125rem;
    color: #0f172a;
    margin: 0;
}

.who-benefits-card-text {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.75;
    text-align: center;
    margin: 0;
}

.who-benefits-note {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
}

.who-benefits-note-text {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.75;
    text-align: center;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 767px) {
	.lg-grid-cols-2  {
 display: block;
}
.section-title, .game-categories-title {
  white-space: wrap;
}
.benefits-box {
  margin-top: 30px;
}
.game-category-feature-item:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background-color: #008850;
  margin-top: 6px;
  flex-shrink: 0;
}
	
	.intro-card {
		padding: 15px;
	}
    .casino-demo-container {
        padding: 32px 16px;
    }
    
    .hero-title {
        font-size: 1.875rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .game-category-card {
        padding: 24px;
    }
}

* {
    font-family: Arial, Helvetica, sans-serif !important;
}
.sl-game-attributes-header, .sl-featured-widget-container {
  background: #3c3c3c!important;
}
.sl-featured-widget-container {
  background-color: #3c3c3c!important;
}
.single-slotsl .sl-featured-widget-container {
  margin-bottom: 35px;
}
.single-slotsl .entry-content ul {
  list-style: circle!important;
  padding: 10px 0px 20px 20px;
}
.single-slotsl .entry-content ul li, .single-slotsl .entry-content ol li {
  margin-bottom: 7px;
}
.single-slotsl .entry-content ol {
  padding: 10px 0px 20px 20px;
}
.slotsl-meta p.slotsl-title {
  margin: 0px!important;
  font-size: 14px!important;
}
.slotsl-meta p.slotsl-title a{
  margin: 0px!important;
  font-size: 15px!important;
}
.slotsl-meta {
  padding: 15px 20px!important;
}
.slotsl-game {
  border-radius: 10px!important;
}
.slotsl-game .slotsl-provider {
  display: none;
}
.header-menu-sidebar-inner {
	padding: 0 0 1.2em 0;
}

body .primary-menu-ul,
body .light-mode .icon-bar {
	transition: none;
	overflow: hidden !important;
}
body .header-menu-sidebar .navbar-toggle-wrapper button.navbar-toggle {
	transition: none;
}
body .menu_sidebar_slide_left .header-menu-sidebar {
}
body .header-menu-sidebar-bg {
	overflow: hidden;
}
@media(min-width: 768px) {
	.sub-menu a {
  border-bottom: 1px dashed #ccc;
}
	.nv-custom-logo-img {
  height: 30px!important;
}
	.is-menu-sidebar.menu_sidebar_slide_left .header-menu-sidebar {
		box-shadow: none;
		
	}
	.hide-on-mobile {
		display: none !important;
	}
	.hide-on-desktop {
		display: block !important;
	}
	.header-menu-sidebar .navbar-toggle-wrapper,
	.header-menu-sidebar-overlay {
		display: none !important;
	}
	.is-menu-sidebar.menu_sidebar_slide_left .header-menu-sidebar {
        position: relative;
        width: auto;
        margin: 0 auto;
        height: auto;
        z-index: 0;
		transition: none;
	}
	body .header-menu-sidebar .nav-menu-primary ul {
		    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
	}

}
@media (min-width: 769px) {
    .is-menu-sidebar.menu_sidebar_slide_left .header-menu-sidebar {
        max-width: 720px;
    }
}
@media (min-width: 960px) {
   .is-menu-sidebar.menu_sidebar_slide_left .header-menu-sidebar {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .is-menu-sidebar.menu_sidebar_slide_left .header-menu-sidebar {
        max-width: 1170px;
    }
}






.site-logo img {
  max-width: 180px!important;
  height: 50px;
}
.footer-bar img {
    width: 30px;
	margin: 0 4px;
}
.plus {
    margin-right: 50px;
    margin-left: 10px;
}
.footer-bar {
    margin-top: 4px;
}
.footer-bottom-inner {
    height: 75px !important;
    padding-top: 10px;
}
.site-link {
  margin-right: 45px;
  margin-top: 2px;
}
.component-wrap {
	justify-content: space-evenly !important;
}
.site-info {
  display: inline-flex;
	  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
	
	.menu-item a {
  color: #333!important;
  font-weight: 600;
  border-bottom: 1px dashed #ccc;
  padding:5px 0px 15px 0px!important;
  margin: 0px!important;
}

.caret-wrap {
  top: 7px;
}
.sub-menu {
  border: none!important;
}
.component-wrap {
    display: block;
}
	.component-wrap p {
    margin-right: 0;
		margin-bottom: 15px;
}
	.plus {
    margin-right: 10px !important;
		margin-left: 10px !important;
	}
		.footer-bottom-inner {
    height: 150px !important;
    padding-top: 0;
	}
	.footer-bar {
		display: block;

}
	.site-link {
    margin-right: 0px;
}
	.component-wrap {
    display: grid;
}
}
@media (min-width: 769px) {
	
h2 {
  display: flex;
  align-items: center; 
  gap: 20px;          
  white-space: nowrap; 
}

h2::after {
  content: "";
  flex-grow: 1;  
  height: 5px;       
  background: #008850 ; 
}
.col-md-4 {
    flex: 0 0 20%;
    max-width: 20%;
  }
.col-md-8 {
    flex: 0 0 80%;
    max-width: 80%;
  }
}