* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica", "Arial", sans-serif;
  background: #fff;
  color: #222;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.tog-container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
/* HEADER SAME AS OLD SITE */
.tog-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 18px 0;
  background: transparent;
  transition: all .3s ease;
}

.admin-bar .tog-header {
  top: 32px;
}

.tog-header.scrolled {
  background: #fff;
  padding: 5px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

.tog-header-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tog-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.tog-logo img,
.tog-logo .custom-logo {
  width: 90px !important;
  max-width: 100px !important;
  height: auto !important;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.tog-header.scrolled .tog-logo img,
.tog-header.scrolled .tog-logo .custom-logo {
  filter: none;
}

.tog-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.tog-nav a {
  color: #fff;
  font-size: 12px;
  font-weight: 500 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
}

.tog-header.scrolled .tog-nav a {
  color: #222;
}

.tog-nav a:hover {
  color: #ff5c5c;
}

.tog-search-open {
  width: auto !important;
  height: auto !important;
  border: 0;
  background: transparent;
  color: #fff !important;
  font-size: 24px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

.tog-search-open i {
  display: block;
  line-height: 1;
  color: #fff !important;
  font-size: 16px !important;
}

.tog-header.scrolled .tog-search-open,
.tog-header.scrolled .tog-search-open i {
  color: #222 !important;
}

.tog-menu-toggle {
  display: none;
}

.tog-footer-logo img {
  width: 90px !important;
  max-width: 115px !important;
  height: auto !important;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
/* HERO */
.tog-hero {
  min-height:570px;
  position: relative;
  background:
    linear-gradient(rgba(0,0,0,.62), rgba(0,0,0,.66)),
    url("/wp-content/uploads/2026/06/hero.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 50px 16px 30px;
  color: #fff;
}

.tog-hero-content {
  width: min(920px, 100%);
}

.tog-hero h1 {
  font-size: 62px;
  line-height: 1;
  margin: 0 0 20px;
  font-weight: 600 !important;
}

.tog-hero h1 span {
  color: #ff5c5c;
}

.tog-hero p {
  font-size: 17px;
  line-height: 1.3;
  max-width: 620px;
  margin: 0 auto;
  color: #f5f5f5;
}

.tog-hero-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.tog-btn {
  padding: 17px 30px;
  border-radius: 6px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 900;
}

.tog-btn-white {
  background: #fff;
  color: #e21d2b;
}

.tog-btn-outline {
  border: 2px solid #fff;
  color: #fff;
}
.tog-btn-outline:hover {
  color: #fff;
  border: 2px solid #fff;
}
.tog-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 25px auto 0;
  max-width: 790px;
}

.tog-stats div {
  background: rgb(255 255 255 / 0%);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 7px;
  padding: 25px 10px;
}

.tog-stats strong {
  display: block;
  font-size: 29px;
  margin-bottom: 8px;
}

.tog-stats span {
  font-size: 12px;
  color: #eee;
}

/* SECTIONS */
.tog-section {
  padding: 54px 0 70px;
}

.tog-section-head {
  margin-bottom: 28px;
}

.tog-section-head.center {
  text-align: center;
}

.tog-section-head h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
}

.tog-section-head h2 span {
  color: #df1f2d;
}

.tog-section-head p {
  margin: 12px 0 0;
  color: #666;
  font-size: 14px;
}

/* CASINO CARDS UPDATED - 4 CARDS DESKTOP */
.tog-casino-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 22px;
  width: 100%;
}

.tog-casino-card {
  width: 100%;
  min-width: 0;
  max-width: none;
  border: 1px solid #ef1f2d;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  display: block;
  transition: .25s ease;
}

.tog-casino-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
}

.tog-casino-top {
  position: relative;
  height: 150px;
  background: #160609;
  overflow: hidden;
}

.tog-casino-img {
  height: 100%;
}

.tog-casino-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tog-casino-title-overlay {
  position: absolute;
  left: 14px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
}

.tog-casino-title-overlay h3 {
  color: #fff;
  font-size: 17px;
  line-height: 1.1;
  margin: 0 0 7px;
  text-transform: uppercase;
  font-weight: 900;
}

.tog-rating {
  color: #ffc400;
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1;
}

.tog-rating span {
  color: #fff;
  margin-left: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.tog-casino-content {
  padding: 14px;
}

.tog-info-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}

.tog-info-row div {
  border: 1px solid #ffc3c3;
  border-radius: 5px;
  padding: 10px;
  min-width: 0;
}

.tog-info-row span {
  display: block;
  font-size: 10px;
  color: #555;
  margin-bottom: 5px;
}

.tog-info-row strong {
  color: #e21d2b;
  font-size: 13px;
  font-weight: 900;
}

.tog-tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin: 0 0 14px;
}

.tog-tags span {
  background: #fde7e9;
  color: #8a1b1c;
  border-radius: 999px;
  padding: 5px 8px;
  font-size: 10px;
  font-weight: 800;
}

.tog-detail-btn {
  display: block;
  border: 2px solid #ef1f2d;
  color: #ef1f2d;
  text-align: center;
  padding: 11px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  border-radius: 2px;
}

/* Tablet */
@media (max-width: 1024px) {
  .tog-casino-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .tog-casino-grid {
    grid-template-columns: 1fr !important;
  }

  .tog-casino-top {
    height: 180px;
  }
}
/* GAMES */
.tog-games-section {
  background: #fff7f7;
}

.tog-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.tog-game-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 7px;
  overflow: hidden;
}

.tog-game-img {
  height: 210px;
  position: relative;
  background: #111;
}

.tog-game-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tog-game-img span {
  position: absolute;
  top: 9px;
  right: 9px;
  background:#212121;
  color: #fff;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
}

.tog-game-content {
  padding: 16px;
}

.tog-game-content h3 {
  margin: 0 0 5px;
  font-size: 24px;
  color:#212121;
  font-weight: 700;
}

.tog-game-content p {
  margin: 0;
  color: #777;
  font-size: 14px;
  font-weight:500;
}

.tog-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}

.tog-blog-card {
  background: #fff;
  border: 1px solid #d7d7d7;
  border-radius: 10px;
  overflow: hidden;
  transition: .25s ease;
  display: block;
}

.tog-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0,0,0,.12);
}

.tog-blog-img {
  height: 205px;
  position: relative;
  background: #111;
  overflow: hidden;
}

.tog-blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tog-blog-img span {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #e82935;
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
}

.tog-blog-content {
  padding: 16px;
}

.tog-meta {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    color: #666;
    font-size: 10px;
    margin-bottom: 10px;
}

.tog-meta span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.tog-meta i {
  color: #e82935;
  font-size: 14px;
}

.tog-blog-content h3 {
  margin: 0 0 12px;
  color: #222;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 800;
}

.tog-blog-content p {
  color: rgb(0 0 0 / 60%);
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 14px;
  font-weight:400;
}

.tog-blog-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #555;
  font-size: 12px;
}

.tog-blog-foot strong {
  color: #e82935;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 1024px) {
  .tog-blog-grid,.tog-game-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .tog-blog-grid,.tog-game-grid {
    grid-template-columns: 1fr;
  }

  .tog-blog-img {
    height: 230px;
  }
}

/* FOOTER */
.tog-footer {
  background: #0c0c0c;
  color: #fff;
  padding: 58px 0 35px;
}

.tog-footer-container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.tog-footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 25px;
  padding-bottom: 40px;
  border-bottom: 1px solid #2a2a2a;
}

.tog-footer h4 {
  margin: 0 0 18px;
  font-size: 14px;
  color:#e0e0e0;
}

.tog-footer p,
.tog-footer a,
.tog-footer small {
  color: #bdbdbd;
  font-size: 12px;
  line-height: 1.7;
}

.tog-footer a {
  display: block;
  margin-bottom: 9px;
}
.tog-footer a:hover{
	color:#8A1B1C;
}

.tog-footer-brand p {
  max-width: 280px;
}

.tog-newsletter {
  display: flex;
  margin: 16px 0 6px;
  gap:4px;
}

.tog-newsletter input {
  flex: 1;
  background: #424242;
  border: 1px solid #333;
  color: #fff;
  padding: 13px;
  border-radius: 3px 0 0 3px;
}

.tog-newsletter button {
  width: 48px;
  border: 0;
  background: #e21d2b;
  color: #fff;
  font-size:14px;
  border-radius: 0 3px 3px 0;
}
.tog-newsletter button:hover {
  background: #8A1B1C;
  color: #fff;
}
.tog-footer-bottom {
  padding-top: 24px;
}

.tog-footer-bottom p {
  font-size: 11px;
  color: #9e9e9e;
  max-width: 680px;
}
.tog-footer-bottom .footer-copyright {
    font-size: 14px;
    color: #9e9e9e;
}
/* TABLET */
@media (max-width: 1024px) {
  .tog-nav {
    gap: 20px;
  }

  .tog-nav a {
    font-size: 13px;
  }

  .tog-casino-grid,
  .tog-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tog-footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}
.tog-menu-toggle{
	display:none !important;
}
.tog-search {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: .3s;
}

.tog-header.scrolled .tog-search {
  color: #222;
}

.tog-search:hover {
  color: #ff5c5c;
}
/* MOBILE */
@media (max-width: 760px) {
  .admin-bar .tog-header {
    top: 46px;
  }

  .tog-header {
    padding: 10px 0;
  }

  .tog-header-inner {
    width: min(100% - 28px, 1220px);
  }

  .tog-logo img,
  .tog-logo .custom-logo {
    width: 95px;
    max-width: 95px;
    object-fit: contain;
    object-position: left center;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }

  .tog-menu-toggle {
    display: block;
    background: transparent;
    color: #222;
    border: 1px solid #ddd;
    width: 42px;
    height: 42px;
    border-radius: 4px;
    font-size: 22px;
    line-height: 1;
  }

 

  .tog-hero {
    min-height: auto;
    padding: 75px 16px 50px;
  }

  .tog-hero h1 {
    font-size:36px;
    margin-top:20px;
  }

  .tog-hero p {
    font-size: 15px;
  }

  .tog-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .tog-casino-grid,
  .tog-blog-grid,
  .tog-footer-top {
    grid-template-columns: 1fr;
  }

  .tog-section {
    padding: 42px 0 55px;
  }
.tog-section-head h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
}
.tog-menu-toggle {
  display: block;
  z-index:99;
  color:#fff;
}
/* Scroll Header */
.site-header.scrolled .tog-menu-toggle,
.tog-header.scrolled .tog-menu-toggle,
header.scrolled .tog-menu-toggle {
  color: #e11d48; /* Red */
  border: 1px solid #e11d48;
}
.tog-menu-toggle{
	display:block !important;
}
}


/* casino article and card */

.tog-archive-hero {
  background:
    linear-gradient(rgba(0,0,0,.66), rgba(0,0,0,.72)),
    url("/wp-content/uploads/2026/06/hero-1.webp") center/cover no-repeat;
  color: #fff;
  padding: 150px 0 80px;
  text-align: center;
}

.tog-archive-hero h1 {
  font-size: clamp(30px, 4vw, 44px);
  margin: 0 0 14px;
  
}
.tog-archive-hero h1 span{
	color:rgb(229, 115, 115);
}


.tog-archive-hero p {
  max-width: 680px;
  margin: 0 auto;
  color: #ddd;
  line-height: 1.7;
}

.tog-pagination {
  margin-top: 40px;
  text-align: center;
}

.tog-casino-single-hero {
  background:
    linear-gradient(rgba(0,0,0,.68), rgba(0,0,0,.75)),
    url("/wp-content/uploads/2026/06/hero-1.webp") center/cover no-repeat;
  color: #fff;
  padding: 150px 0 90px;
}

.tog-casino-single-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  align-items: center;
}

.tog-single-label {
  display: inline-flex;
  background: #e21d2b;
  color: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 18px;
}

.tog-casino-single-hero h1 {
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.08;
  margin: 0 0 18px;
}

.tog-casino-single-hero p {
  color: #e5e5e5;
  font-size: 17px;
  line-height: 1.7;
  max-width: 650px;
}

.tog-single-rating {
  color: #ffc400;
  font-size: 20px;
  margin: 22px 0;
}

.tog-single-rating span {
  color: #fff;
  margin-left: 8px;
}

.tog-single-casino-box {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.tog-single-casino-box img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.tog-single-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 18px;
}

.tog-single-info div {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  padding: 14px;
}

.tog-single-info span {
  display: block;
  color: #ddd;
  font-size: 12px;
  margin-bottom: 6px;
}

.tog-single-info strong {
  color: #fff;
  font-size: 20px;
}

.tog-single-content-section {
  padding: 70px 0;
}

.tog-single-content-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 40px;
}

.tog-single-article {
  font-size: 17px;
  line-height: 1.85;
  color: #333;
}

.tog-single-article h2,
.tog-single-article h3 {
  color: #171717;
  margin-top: 34px;
}

.tog-single-sidebar {
  position: relative;
}

.tog-sidebar-card {
  position: sticky;
  top: 100px;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.tog-sidebar-card h3 {
  margin-top: 0;
}

@media (max-width: 900px) {
  .tog-casino-single-grid,
  .tog-single-content-wrap {
    grid-template-columns: 1fr;
  }
}


/* Casino archive hero */
.tog-archive-hero {
  background:
    linear-gradient(rgba(0,0,0,.62), rgba(0,0,0,.65)),
    url("/wp-content/uploads/2026/06/hero-1.webp") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 145px 0 80px;
}

.tog-archive-hero h1 {
  font-size: clamp(30px, 4vw, 42px);
  margin: 0 0 14px;
  font-weight: 700;
}

.tog-archive-hero h1 span,
.tog-section-head h2 span {
  color: rgb(229, 115, 115);
}

.tog-archive-hero p {
  max-width: 530px;
  margin: 0 auto 20px;
  color: #eee;
  font-size:14px;
  font-weight:300;
}

.tog-hero-red-btn {
  display: inline-flex;
  background: #e82935;
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
}

.tog-flex-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Archive page specific */
.tog-casino-archive .tog-casino-grid {
  grid-template-columns: repeat(4, 1fr);
}

.tog-casino-insights-section {
  background: #fff;
}
.tog-casino-article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.tog-article-card {
  display: block;
  background: #fff;
  border: 1px solid #d7d7d7;
  border-radius: 10px;
  overflow: hidden;
  transition: .25s ease;
}

.tog-article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
}

.tog-article-card-img {
  height: 170px;
  position: relative;
  overflow: hidden;
  background: #111;
}

.tog-article-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tog-article-card-img span {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #e82935;
  color: #fff;
  padding: 7px 10px;
  border-radius: 3px;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.tog-article-card-body {
  padding: 20px;
}

.tog-article-card-body h3 {
    margin: 0 0 10px;
    color: #222;
    font-size: 19px;
    line-height: 1.25;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tog-article-card-body p {
  margin: 0 0 18px;
  color: #666;
  font-size: 14px;
  line-height: 1.6;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tog-article-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    color: #666;
    font-size: 12px;
    margin-bottom:15px;
}

.tog-article-card-meta span,
.tog-article-card-meta .meta-date,
.tog-article-card-meta .meta-read{
    display:flex;
    align-items:center;
    gap:8px;
    white-space:nowrap;
}

.tog-article-card-meta i{
    color:#ef1f2d;
    font-size:14px;
}
@media (max-width: 1024px) {
  .tog-casino-article-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .tog-casino-article-grid {
    grid-template-columns: 1fr;
  }

  .tog-article-card-img {
    height: 210px;
  }
}

/* Game card improvement */
.tog-game-content small {
  color: #777;
  font-size: 12px;
}

.tog-game-content em {
  display: block;
  margin-top: 12px;
  border: 1px solid #e82935;
  color: #e82935;
  text-align: center;
  padding: 8px;
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

/* Single casino */
.tog-single-hero-mini {
  background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
    url("/wp-content/uploads/2026/06/hero-1.webp") center/cover no-repeat;
  padding: 115px 0 40px;
  color: #fff;
}

.tog-back-btn {
  display: inline-flex;
  color: #fff;
  background: rgba(255,255,255,.15);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 13px;
}

.tog-casino-review-box {
  background: #f4f5f7;
  padding: 0 0 70px;
}

.tog-review-card-large {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  margin-top: -28px;
  box-shadow: 0 15px 45px rgba(0,0,0,.12);
}

.tog-review-top {
  display: flex;
  align-items: center;
  gap: 20px;
}

.tog-review-logo {
  width: 96px;
  height: 96px;
  background: #111;
  border-radius: 12px;
  overflow: hidden;
}

.tog-review-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tog-review-top h1 {
  margin: 0 0 8px;
  font-size: 42px;
  text-transform: uppercase;
}

.tog-review-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  margin: 35px 0;
}

.tog-review-stats strong {
  display: block;
  color: #e82935;
  font-size: 28px;
}

.tog-review-stats span {
  color: #555;
  font-size: 12px;
}

.tog-bonus-box{
    background:#fff;
    border:1px solid rgba(239,31,45,.25);
    border-radius:24px;
    padding:28px 30px;
    margin:30px 0;
}

.bonus-title{
    display:flex;
    align-items:center;
    gap:14px;
    font-size:16px;
    font-weight:700;
    color:#111111;
    margin-bottom:10px;
}

.bonus-title i{
    color:#ef1f2d;
    font-size:14px;
}

.bonus-offer{
    font-size:14px;
    margin-bottom:10px;
    color:#111827;
}

.bonus-offer span{
    color:#ef1f2d;
    font-weight:700;
}

.bonus-desc{
    display:flex;
    align-items:flex-start;
    gap:12px;
    font-size:14px;
    color:#222;
    line-height:1.6;
}

.bonus-desc i{
    color:#ef4444;
    font-size:12px;
    margin-top:3px;
}

@media(max-width:768px){
    .tog-bonus-box{
        padding:20px;
        border-radius:18px;
    }

    .bonus-title{
        font-size:14px;
    }

    .bonus-offer,
    .bonus-desc{
        font-size:10px;
    }
}

.tog-single-content {
  font-size: 17px;
  line-height: 1.85;
}

.tog-single-content h2 {
  border-left: 4px solid #e82935;
  padding-left: 14px;
  margin-top: 34px;
}

/* Casino article single */
/* .tog-article-hero {
  background:
    linear-gradient(rgba(0,0,0,.58), rgba(0,0,0,.64)),
    url("https://images.unsplash.com/photo-1596838132731-3301c3fd4317?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
  color: #fff;
  padding: 150px 0 70px;
} */
.tog-article-hero{
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
  color:#fff;
  padding:180px 0 30px;
  position:relative;
}

.tog-article-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    rgba(0,0,0,.58),
    rgba(0,0,0,.64)
  );
}

.tog-article-hero .tog-container{
  position:relative;
  z-index:2;
}
.tog-article-hero span {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.tog-article-hero h1 {
  max-width: 920px;
  font-size: 32px;
  margin: 14px 0;
  font-weight:700;
}

.tog-article-hero p {
  max-width: 850px;
  color: rgb(224, 224, 224) !important;
}

.tog-article-meta {
  display: flex;
  gap: 15px;
  color: #eee;
  font-size: 13px;
}

.tog-article-layout-section {
  padding: 0 0 70px;
}

.tog-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 40px;
}

.tog-article-content {
  font-size: 17px;
  line-height: 1.85;
}

.tog-article-content h2,
.tog-article-content h3 {
  border-left: 4px solid #e82935;
  padding-left: 14px;
  margin-top: 34px;
}

.tog-article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
}

.tog-article-content table td,
.tog-article-content table th {
  border: 1px solid #ddd;
  padding: 12px;
}

.tog-related-sidebar {
  position: relative;
}

.tog-sidebar-box {
  position: sticky;
  top: 95px;
  border-radius: 10px;
  padding: 16px;
}

.tog-sidebar-box.dark {
  background: #111;
  color: #fff;
}

.tog-sidebar-box h3 {
  margin-top: 0;
  font-size: 16px;
}

.tog-sidebar-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.tog-sidebar-item img {
  width: 48px;
  height: 48px;
  object-fit: cover;
}

.tog-sidebar-item span {
  font-size: 12px;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 1024px) {
  .tog-casino-archive .tog-casino-grid,
  .tog-casino-article-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tog-article-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .tog-flex-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .tog-casino-archive .tog-casino-grid,
  .tog-casino-article-grid {
    grid-template-columns: 1fr;
  }

  .tog-review-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .tog-review-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tog-review-top h1 {
    font-size: 30px;
  }

  .tog-archive-hero,
  .tog-article-hero {
    padding-top: 120px;
  }
}

.tog-article-sidebar {
  position: relative;
}

.tog-sidebar-box {
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 22px;
}

.tog-sidebar-dark {
  background: #141414;
  color: #fff;
}

.tog-sidebar-light {
  background: #fff;
  color: #222;
  border: 1px solid #eee;
}

.tog-sidebar-box h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 800;
}

.tog-sidebar-dark h3 i {
  color: #e82935;
}

.tog-sidebar-light h3 i {
  color: #e82935;
}

.tog-sidebar-post {
  display: grid;
  grid-template-columns: 1fr 52px;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
}

.tog-sidebar-post:not(:last-child) {
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.tog-sidebar-light .tog-sidebar-post:not(:last-child) {
  border-bottom: 1px solid #eee;
}

.tog-sidebar-post h4 {
  margin: 0 0 6px;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 800;
}

.tog-sidebar-post span {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #999;
  font-size: 10px;
}

.tog-sidebar-post img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 3px;
  background: #222;
}

.tog-sidebar-dark .tog-sidebar-post h4 {
  color: #fff;
}

.tog-sidebar-light .tog-sidebar-post h4 {
  color: #222;
}

@media (min-width: 901px) {
  .tog-article-sidebar {
    position: sticky;
    top: 95px;
    align-self: start;
  }
}


.tog-article-top-meta {
  background: #fff;
  padding: 24px 0 10px;
}

.tog-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: #777;
  font-size: 12px;
  margin-bottom: 30px;
}

.tog-breadcrumb a {
  color: #777;
}

.tog-breadcrumb strong {
  color: #222;
  font-weight: 500;
}

.tog-author-box {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

.tog-author-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e5e5e5;
  color: #777;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
}

.tog-author-box p {
  margin: 0 0 5px;
  font-size: 14px;
  color: #555;
}

.tog-author-box strong {
  color: #222;
}

.tog-author-box span {
  color: #666;
  font-size: 12px;
}

.tog-article-meta{
    display:flex;
    align-items:center;
    gap:28px;
    flex-wrap:wrap;
    margin-top:18px;
}

.tog-article-meta span{
    display:flex;
    align-items:center;
    gap:10px;
    color:#fff;
    font-size:12px;
    font-weight:400;
}

.tog-article-meta i{
    color:#e82935;
    font-size:14px;
}

/* Date item */
.meta-date{
    position:relative;
    padding-bottom:10px;
}

.meta-date::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:60px;
    height:2px;
    background:#e82935;
    border-radius:50px;
}
/* Center button */
.tog-center {
  text-align: center;
  margin-top: 35px;
}

/* Black CTA Button */
.tog-black-btn,
.tog-center a,
.tog-view-all-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: #171717 !important;
  color: #fff !important;
  padding: 14px 28px !important;
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none !important;
  transition: .3s;
}

.tog-black-btn:hover,
.tog-center a:hover,
.tog-view-all-btn:hover {
  background: #E92935 !important;
  color: #fff !important;
}

.tog-blog-single-hero {
  background:
    linear-gradient(rgba(0,0,0,.62), rgba(0,0,0,.68)),
    url("/wp-content/uploads/2026/06/hero-1.webp") center/cover no-repeat;
  color: #fff;
  padding: 150px 0 70px;
}

.tog-blog-single-hero h1 {
  max-width: 980px;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.15;
  margin: 0 0 14px;
  font-weight: 700;
}

.tog-blog-single-hero p {
  max-width: 900px;
  color: #eee;
  font-size: 15px;
  line-height: 1.7;
}

.tog-author-mini {
  margin-top: 10px;
  color: #fff;
  font-size: 13px;
}

.tog-author-mini i {
  color: #e82935;
  margin-right: 6px;
}

.tog-blog-layout-section {
  padding: 0 0 70px;
}

.tog-blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 40px;
}

.tog-blog-single-content {
  font-size: 17px;
  line-height: 1.85;
  color: #222;
}

.tog-blog-single-content h2,
.tog-blog-single-content h3 {
  border-left: 4px solid #e82935;
  padding-left: 14px;
  margin-top: 34px;
  font-weight: 800;
}

.tog-blog-single-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
}

.tog-blog-single-content table td,
.tog-blog-single-content table th {
  border: 1px solid #ddd;
  padding: 12px;
}

@media (max-width: 900px) {
  .tog-blog-layout {
    grid-template-columns: 1fr;
  }

  .tog-blog-single-hero {
    padding-top: 120px;
  }
}

/* Blog listing page */
.tog-blog-hero {
  background:
    linear-gradient(rgba(0,0,0,.64), rgba(0,0,0,.72)),
    url("/wp-content/uploads/2026/06/hero-1.webp") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 150px 0 80px;
}

.tog-blog-hero-inner {
  max-width: 860px;
}

.tog-blog-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #030406;
  color: #fff;
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.tog-blog-hero h1 {
  font-size: clamp(32px, 3vw, 44px);
  margin: 18px 0 12px;
  font-weight: 700;
}

.tog-blog-hero h1 span {
  color: #e82935;
}

.tog-blog-hero p {
  max-width: 620px;
  margin: 0 auto;
  color: #eee;
  line-height: 1.7;
}

.tog-blog-hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.tog-red-btn,
.tog-outline-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 5px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
}

.tog-red-btn {
  background: #e82935;
  color: #fff;
}

.tog-outline-btn {
  border: 1px solid rgba(255,255,255,.8);
  color: #fff;
}

.tog-blog-mini-stats {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 22px;
  flex-wrap: wrap;
  color: #ddd;
  font-size: 13px;
}

.tog-blog-mini-stats i {
  color: #e82935;
}

.tog-featured-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.tog-featured-blog-card,
.tog-small-blog-card {
  display: block;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: .25s ease;
}

.tog-featured-blog-card:hover,
.tog-small-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,.1);
}

.tog-featured-img,
.tog-small-blog-img {
  position: relative;
  height: 165px;
  background: #111;
}

.tog-featured-img img,
.tog-small-blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tog-featured-img span {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e82935;
  color: #fff;
  border-radius: 3px;
  padding: 6px 9px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.tog-featured-body,
.tog-small-blog-body {
  padding: 14px;
}

.tog-card-meta {
  display: flex;
  gap: 12px;
  color: #666;
  font-size: 11px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.tog-card-meta i {
  color: #e82935;
}

.tog-featured-body h3,
.tog-small-blog-body h3 {
  margin: 0 0 10px;
  color: #222;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 800;
}

.tog-featured-body p,
.tog-small-blog-body p {
  color: #666;
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 12px;
}

.tog-featured-body strong,
.tog-small-blog-body strong {
  color: #e82935;
  font-size: 12px;
}

.tog-all-blog-section {
  background: #f7f7f7;
}

.tog-all-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.tog-small-blog-img {
  height: 145px;
}

.tog-small-blog-body h3 {
  font-size: 17px;
}

@media (max-width: 1024px) {
  .tog-featured-blog-grid,
  .tog-all-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .tog-featured-blog-grid,
  .tog-all-blog-grid {
    grid-template-columns: 1fr;
  }

  .tog-blog-hero {
    padding-top: 120px;
  }
}

/* Games archive page */
.tog-games-hero {
  background:
    linear-gradient(rgba(0,0,0,.62), rgba(0,0,0,.66)),
    url("/wp-content/uploads/2026/06/hero-1.webp") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 150px 0 85px;
}

.tog-games-hero h1 {
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.1;
  margin: 0 0 14px;
  font-weight: 700;
}

.tog-games-hero h1 span,
.tog-section-head h2 span {
  color: rgb(229, 115, 115);
}

.tog-games-hero p {
  max-width: 680px;
  margin: 0 auto 24px;
  color: #eee;
  line-height: 1.7;
}

.tog-games-archive-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tog-latest-game-insights {
  background: #f7f7f7;
}

.tog-game-insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

/* Bonus dark section */
.tog-bonus-strip {
  background: #111;
  color: #fff;
  padding: 70px 0;
}

.tog-bonus-strip .tog-section-head h2 {
  color: #fff;
}

.tog-bonus-strip .tog-section-head p {
  color: #ccc;
}

.tog-bonus-badge {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  background: #e82935;
  color: #fff;
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.tog-bonus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.tog-bonus-card {
  display: block;
  background: #fff;
  color: #222;
  border-radius: 8px;
  overflow: hidden;
}

.tog-bonus-img {
  height: 140px;
  background: #111;
  position: relative;
}

.tog-bonus-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tog-bonus-img span {
  position: absolute;
  top: 12px;
  left: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
}

.tog-bonus-body {
  padding: 16px;
}

.tog-bonus-body small {
  color: #e82935;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.tog-bonus-body h3 {
  margin: 5px 0 10px;
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
}

.tog-bonus-body p {
  margin: 0;
  color: #555;
  font-size: 13px;
}

.tog-bonus-body i {
  color: #e82935;
}

/* Games card fine tune */
.tog-games-page .tog-game-card {
  border-radius: 7px;
}

.tog-games-page .tog-game-img {
  height: 230px;
}

.tog-games-page .tog-game-content h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.tog-games-page .tog-game-content p {
  font-size: 12px;
  color: #777;
}

.tog-games-page .tog-game-content i {
  color: #999;
}

.tog-games-page .tog-game-content em {
  display: block;
  margin-top: 14px;
  border: 1px solid #e82935;
  color: #e82935;
  text-align: center;
  padding: 9px;
  font-size: 11px;
  font-weight: 900;
  font-style: normal;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 1024px) {
  .tog-games-archive-grid,
  .tog-game-insight-grid,
  .tog-bonus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .tog-games-archive-grid,
  .tog-game-insight-grid,
  .tog-bonus-grid {
    grid-template-columns: 1fr;
  }

  .tog-games-hero {
    padding-top: 120px;
  }
}





.tog-news-hero,
.tog-bonus-hero {
  background:
    linear-gradient(rgba(0,0,0,.62), rgba(0,0,0,.68)),
    url("/wp-content/uploads/2026/06/hero-1.webp") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 150px 0 85px;
}

.tog-news-hero h1,
.tog-bonus-hero h1 {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 700;
  margin: 16px 0 14px;
}

.tog-news-hero h1 span,
.tog-bonus-hero h1 span {
  color: #e82935;
}

.tog-news-hero p,
.tog-bonus-hero p {
  max-width: 580px;
  margin: 0 auto 24px;
  color: #eee;
  line-height: 1.7;
}

.tog-featured-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tog-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.tog-news-card {
  display: block;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: .25s ease;
}

.tog-news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,.1);
}

.tog-news-img {
  height: 180px;
  background: #111;
  position: relative;
  overflow: hidden;
}

.tog-news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tog-news-img span {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #e82935;
  color: #fff;
  padding: 7px 10px;
  font-size: 10px;
  font-weight: 700;
  border-radius: 3px;
  text-transform: uppercase;
}

.tog-news-body {
  padding: 16px;
}

.tog-news-body h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 700;
  color:rgb(0 0 0 / 87%);
}

.tog-news-body p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.tog-news-body strong {
  color: #e82935;
  font-size: 13px;
}

/* Bonus info */
.tog-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.tog-info-grid div {
  background: #fff;
  border: 1px solid #eee;
  padding: 22px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,.04);
}

.tog-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.tog-info-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 28px;
  min-height: 190px;
  transition: .25s ease;
}

.tog-info-card:hover,
.tog-info-card.active {
  border-color: #e82935;
  box-shadow: 0 12px 24px rgba(232, 41, 53, .12);
}

.tog-info-card i {
  width: 54px;
  height: 54px;
  border-radius: 7px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 24px;
}

.tog-info-card h3 {
  margin: 0 0 10px;
  color: #222;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 800;
}

.tog-info-card p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.55;
}

.tog-info-card.icon-orange i { background: #ff6b13; }
.tog-info-card.icon-purple i { background: #8b5cf6; }
.tog-info-card.icon-blue i { background: #3b82f6; }
.tog-info-card.icon-green i { background: #22c55e; }
.tog-info-card.icon-yellow i { background: #f4b400; }
.tog-info-card.icon-red i { background: #ef4444; }

.tog-pro-tip {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  align-items: flex-start;
  background: #fff7eb;
  border-left: 5px solid #e82935;
  border-radius: 10px;
  padding: 26px 30px;
}

.tog-pro-tip > i {
  color: #e82935;
  font-size: 34px;
  margin-top: 4px;
}

.tog-pro-tip h3 {
  margin: 0 0 8px;
  color: #222;
  font-size: 26px;
  font-weight: 900;
}

.tog-pro-tip p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .tog-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .tog-info-grid {
    grid-template-columns: 1fr;
  }

  .tog-info-card {
    padding: 22px;
  }

  .tog-pro-tip {
    grid-template-columns: 1fr;
  }
}

.tog-info-grid h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.tog-info-grid p {
  color: #666;
  line-height: 1.6;
}

.tog-news-subscribe {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 45px 0;
}

.tog-news-subscribe h2 {
  margin: 0 0 10px;
  font-size:20px;
  font-weight:800;
}

.tog-news-subscribe p {
  color: #ccc;
  font-size:14px;
}

.tog-news-subscribe-form {
  max-width: 350px;
  margin: 20px auto 0;
  gap:5px;
}

.tog-news-subscribe-form button {
  width: auto;
  padding: 0 18px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius:5px;
}

/* responsive */
@media (max-width: 1024px) {
  .tog-featured-news-grid,
  .tog-news-grid,
  .tog-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .tog-featured-news-grid,
  .tog-news-grid,
  .tog-info-grid {
    grid-template-columns: 1fr;
  }

  .tog-news-hero,
  .tog-bonus-hero {
    padding-top: 120px;
  }
}
/* GLOBAL CARD HOVER FIX */
.tog-blog-card,
.tog-article-card,
.tog-news-card,
.tog-game-card,
.tog-casino-card,
.tog-featured-blog-card,
.tog-small-blog-card {
  border: 1px solid #ddd;
  transition: .25s ease;
}

.tog-blog-card:hover,
.tog-article-card:hover,
.tog-news-card:hover,
.tog-game-card:hover,
.tog-casino-card:hover,
.tog-featured-blog-card:hover,
.tog-small-blog-card:hover {
  border-color: #e82935 !important;
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
  transform: translateY(-4px);
}

/* DARK BONUS SECTION - NO RED BORDER */
.tog-bonus-strip .tog-bonus-card,
.tog-bonus-strip .tog-bonus-card:hover {
  border: none !important;
  box-shadow: none;
}

.tog-bonus-strip .tog-bonus-card:hover {
  transform: translateY(-4px);
}

/* BUTTON COLOR SAME */
.tog-red-btn,
.tog-hero-red-btn {
  background: #e82935 !important;
  color: #fff !important;
}

.tog-red-btn:hover,
.tog-hero-red-btn:hover {
  background: #c91f2b !important;
  color: #fff !important;
}

.tog-black-btn {
  background: #171717 !important;
  color: #fff !important;
}

.tog-black-btn:hover {
  background: #e82935 !important;
  color: #fff !important;
}

/* READ MORE COLOR */
.tog-blog-foot strong,
.tog-news-body strong,
.tog-article-card-body strong,
.tog-read-more,
.tog-red-link {
  color: #e82935 !important;
  font-size:12px;
  font-weight:600;
  text-transform: uppercase;
}

/* SECTION TITLE RED */
.tog-section-head h2 span,
.tog-games-hero h1 span,
.tog-bonus-hero h1 span,
.tog-news-hero h1 span,
.tog-blog-hero h1 span,
.tog-archive-hero h1 span {
  color: #e21d2b; !important;
}
.tog-featured-badge{
    position:absolute;
    top:14px;
    left:14px;
    display:flex;
    align-items:center;
    gap:8px;
    background:#e53935;
    color:#fff;
    font-size:13px;
    font-weight:800;
    letter-spacing:.5px;
    padding:10px 18px;
    border-radius:10px;
    text-transform:uppercase;
    z-index:2;
}

.tog-featured-badge i{
    color:#fff;
    font-size:14px;
}

.tog-blog-img{
    position:relative;
}
.tog-breaking-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #e82935;
  color: #fff;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 900;
  border-radius: 3px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
/* Single Game Page */
.tog-game-single-hero {
  background:
    linear-gradient(rgba(0,0,0,.60), rgba(0,0,0,.64)),
    url("/wp-content/uploads/2026/06/hero-1.webp") center/cover no-repeat;
  padding: 135px 0 70px;
  color: #fff;
}

.tog-game-hero-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tog-breadcrumb.light {
  color: #fff;
  margin: 0;
  font-size: 13px;
}

.tog-breadcrumb.light a,
.tog-breadcrumb.light strong {
  color: #fff;
}

.tog-game-single-wrap {
  background: #f4f5f7;
  padding: 0 0 75px;
}

.tog-game-single-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  margin-top: -55px;
  box-shadow: 0 18px 45px rgba(0,0,0,.10);
}

.tog-game-single-top {
  display: flex;
  align-items: center;
  gap: 18px;
}

.tog-game-single-thumb {
  width: 96px;
  height: 96px;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  flex: 0 0 96px;
}

.tog-game-single-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tog-game-single-top h1 {
  margin: 0 0 12px;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 900;
}

.tog-game-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tog-game-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eee;
  color: #222;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
}

.tog-game-badges .badge-red {
  background: #ffe4e4;
  color: #e82935;
}

.tog-game-badges .badge-green {
  background: #e8f6e8;
  color: #227a34;
}

.tog-game-single-card hr {
  border: 0;
  border-top: 1px solid #ddd;
  margin: 30px 0;
}

.tog-game-single-content {
  color: #222;
  font-size: 16px;
  line-height: 1.8;
}

.tog-related-games-section {
  background: #f4f5f7;
  padding-top: 15px;
}

.tog-single-related-game-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tog-single-game-page .tog-game-card {
  max-width: 260px;
}

.tog-single-game-page .tog-game-content em {
  background: #e82935;
  color: #fff;
  border-color: #e82935;
  border-radius: 10px;
}

@media (max-width: 760px) {
  .tog-game-hero-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .tog-game-single-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .tog-single-related-game-grid {
    grid-template-columns: 1fr;
  }

  .tog-game-single-top h1 {
    font-size: 28px;
  }
}
/* Single News Page */
.tog-news-single-hero {
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 220px 0 55px;
}

.tog-news-single-hero h1 {
  max-width: 980px;
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
  font-weight: 800;
}

.tog-news-single-hero p {
  max-width: 980px;
  margin: 0;
  color: #eee;
  font-size: 15px;
  line-height: 1.65;
}

.tog-news-single-layout-section {
  padding: 0 0 70px;
}

.tog-news-single-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 42px;
}

.tog-news-single-content {
  color: #222;
  font-size: 17px;
  line-height: 1.85;
}

.tog-news-single-content h2,
.tog-news-single-content h3 {
  border-left: 4px solid #e82935;
  padding-left: 14px;
  margin-top: 34px;
  font-weight: 800;
}

.tog-news-single-content a {
  color: #e82935;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .tog-news-single-layout {
    grid-template-columns: 1fr;
  }

  .tog-news-single-hero {
    padding-top: 140px;
  }
}
.tog-single-hero-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.tog-breadcrumb.light,
.tog-breadcrumb.light a,
.tog-breadcrumb.light strong{
  color:#fff;
}

.tog-breadcrumb.light{
  display:flex;
  gap:8px;
  font-size:13px;
}



.tog-feature-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.tog-feature-tags span{
  display:inline-flex;
  align-items:center;
  gap:7px;
  background:#fff;
  border:1px solid #eee;
  border-radius:999px;
  padding:8px 12px;
  font-size:12px;
  font-weight:700;
  color:#333;
}

.tog-feature-tags i{
  color:#e82935;
}


.tog-search-open{
  background:transparent;
  border:0;
  color:#fff;
  font-size:17px;
  cursor:pointer;
}

/* White header after scroll */
.site-header.scrolled .tog-search-open,
.header-scrolled .tog-search-open,
.tog-header.scrolled .tog-search-open{
  color:#111;
}

.tog-search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(10px);
  z-index: 99999;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 190px;
}

.tog-search-overlay.active {
  display: flex;
}

.tog-search-box {
  width: min(720px, 90%);
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
}

.tog-search-box form {
  display: flex;
  align-items: center;
  height: 55px;
  padding: 0 24px;
  gap: 20px;
}

.tog-search-box i {
  color: #777;
  font-size: 20px;
}

.tog-search-box input {
  flex: 1;
  border: 0;
  outline: 0;
  font-size: 16px;
  color: #222;
}

.tog-search-box input::placeholder {
  color: #999;
}

.tog-search-close {
  border: 0;
  background: #f1f1f1;
  color: #666;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
}





.tog-search-hero {
  background:#101010;
  color:#fff;
  padding:130px 0 65px;
}

.tog-search-hero h1 {
  font-size:36px;
  font-weight:800;
}

.tog-search-hero span {
  color:#e82935;
}

.tog-search-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.tog-search-card {
  background:#fff;
  border:1px solid #ddd;
  border-radius:10px;
  overflow:hidden;
  transition:.25s;
}

.tog-search-card:hover {
  border-color:#e82935;
  transform:translateY(-4px);
  box-shadow:0 14px 30px rgba(0,0,0,.12);
}

.tog-search-img {
  height:190px;
  background:#111;
}

.tog-search-img img {
  width:100%;
  height:100%;
  object-fit:cover;
}

.tog-search-body {
  padding:18px;
}

.tog-search-body small {
  color:#e82935;
  font-weight:800;
  text-transform:uppercase;
}

.tog-search-body h3 {
  font-size:20px;
  margin:10px 0;
}

.tog-search-body p {
  color:#666;
}

.tog-search-body strong {
  color:#e82935;
}

@media(max-width:900px){
  .tog-search-grid {
    grid-template-columns:1fr;
  }
}


.tog-author-hero{
  background:#0d0d0d;
  color:#fff;
  padding:120px 0 70px;
}

.tog-author-profile{
  display:flex;
  align-items:center;
  gap:28px;
  margin-top:30px;
}

.tog-author-profile img{
  width:150px;
  height:150px;
  border-radius:50%;
  object-fit:cover;
  border:4px solid #e82935;
  background:#222;
}

.tog-author-label{
  display:inline-flex;
  background:#e82935;
  color:#fff;
  border-radius:999px;
  padding:7px 13px;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  margin-bottom:14px;
}

.tog-author-profile h1{
  margin:0 0 12px;
  font-size:42px;
  font-weight:900;
}

.tog-author-profile p{
  max-width:700px;
  color:#ddd;
  line-height:1.7;
  margin:0 0 16px;
}

.tog-author-stats{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.tog-author-stats span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(255,255,255,.08);
  color:#fff;
  border-radius:999px;
  padding:8px 12px;
  font-size:13px;
}

.tog-author-stats i{
  color:#e82935;
}

.tog-author-content{
  background:#fff;
  padding:60px 0 80px;
}

@media(max-width:700px){
  .tog-author-profile{
    flex-direction:column;
    align-items:flex-start;
  }

  .tog-author-profile h1{
    font-size:34px;
  }
}



.tog-author-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:24px;
}

@media(max-width:900px){
  .tog-author-grid{
    grid-template-columns:1fr;
  }
}

.tog-author-ref-hero{
  background:linear-gradient(135deg,#8b0f2d,#330b18);
  color:#fff;
  text-align:center;
  padding:95px 0 80px;
}

.tog-author-ref-hero h1{
  margin:14px 0 0;
  color:#fff;
  font-size:34px;
  font-weight:900;
}

.tog-author-ref-content{
  background:#fff;
  padding:28px 0 70px;
}

.tog-author-breadcrumb{
  display:flex;
  gap:7px;
  color:#777;
  font-size:13px;
  margin-bottom:18px;
}

.tog-author-breadcrumb a{
  color:#777;
}

.tog-author-breadcrumb strong{
  color:#111;
}

.tog-author-ref-intro{
  display:grid;
  grid-template-columns:1fr 260px;
  gap:40px;
  align-items:start;
  margin-bottom:34px;
}

.tog-author-ref-bio p{
  color:#333;
  font-size:14px;
  line-height:1.75;
  margin:0;
}

.tog-author-ref-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  text-align:center;
}

.tog-author-ref-stats strong{
  display:block;
  color:#111;
  font-size:22px;
  font-weight:900;
}

.tog-author-ref-stats span{
  color:#555;
  font-size:11px;
}

.tog-author-section{
  margin-top:34px;
}

.tog-author-section h2{
  margin:0 0 20px;
  color:#222;
  font-size:25px;
  font-weight:900;
}

.tog-author-card-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.tog-author-card-grid .tog-blog-card,
.tog-author-card-grid .tog-news-card,
.tog-author-card-grid .tog-casino-article-card,
.tog-author-card-grid .tog-game-card,
.tog-author-card-grid .tog-bonus-card{
  width:100%;
}

@media(max-width:1000px){
  .tog-author-card-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .tog-author-ref-intro{
    grid-template-columns:1fr;
  }
}

@media(max-width:600px){
  .tog-author-card-grid,
  .tog-author-ref-stats{
    grid-template-columns:1fr;
  }

  .tog-author-ref-hero{
    padding:85px 0 55px;
  }
}

.tog-feature-tags-box h2,
.tog-dynamic-faqs h2{
  font-size:22px;
}

.tog-feature-tags{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.tog-feature-tags span{
  display:inline-flex;
  align-items:center;
  gap:10px;
  border:1px solid #eee;
  border-radius:999px;
  padding:13px 20px;
  font-size:12px;
  font-weight:700;
  color:#333;
  background:#fff;
}

.tog-feature-tags i{
  color:#ef1f2d;
}

.tog-dynamic-faqs{
  margin-top:35px;
}

.tog-faq-item{
  border-bottom:1px solid #eee;
}

.tog-faq-item h3{
  font-size:16px;
}

.tog-faq-item p{
  color:#555;
  line-height:1.7;
  margin:0;
  font-size:14px;
}
/* ==============================
   SINGLE CASINO + SINGLE GAME FIX
   Match reference design
================================ */

/* Hero height smaller like reference */
.tog-single-hero-mini,
.tog-game-single-hero{
  padding: 200px 0 55px !important;
  background-position: center top !important;
}

/* Main grey background */
.tog-casino-review-box,
.tog-game-single-wrap,
.tog-related-games-section{
 background: #f4f5f700 !important;
}

/* Casino white card same reference */
.tog-review-card-large{
  width:min(1060px, calc(100% - 32px));
  margin:-45px auto 0 !important;
  padding:28px 34px 34px !important;
  border-radius:10px !important;
  box-shadow:0 18px 45px rgba(0,0,0,.10) !important;
}

/* Casino top spacing */
.tog-review-top{
  gap:14px !important;
  align-items:center !important;
}

.tog-review-logo{
  width:78px !important;
  height:78px !important;
  border-radius:6px !important;
}

.tog-review-top h1{
  font-size:31px !important;
  line-height:1.1 !important;
  margin-bottom:6px !important;
}

.tog-review-top p{
  font-size:12px !important;
  margin:4px 0 0 !important;
}

/* Stats same reference */
.tog-review-stats{
  margin:28px 0 24px !important;
  padding-top:22px;
  border-top:1px solid #eee;
}

.tog-review-stats strong{
  font-size:24px !important;
}

.tog-review-stats span{
  font-size:10px !important;
}

/* Bonus box compact */
.tog-bonus-box{
  padding:14px 16px !important;
  margin-bottom:26px !important;
  background-color: rgba(229, 57, 53, 0.04);
  border-radius: 14px;
}

/* Content typography smaller like reference */
.tog-single-content{
  font-size:14px !important;
  line-height:1.75 !important;
  color:#111 !important;
}

.tog-single-content h1,
.tog-single-content h2{
  font-size:18px !important;
  line-height:1.35 !important;
  margin:28px 0 14px !important;
  font-weight:900 !important;
}

.tog-single-content h2{
  border-left:3px solid #e82935 !important;
  padding-left:13px !important;
}

.tog-single-content h3{
  font-size:20px !important;
  line-height:1.35 !important;
  margin:24px 0 12px !important;
  font-weight:900 !important;
}

.tog-single-content p,
.tog-single-content li{
  font-size:14px !important;
  line-height:1.75 !important;
}

.tog-single-content table{
  font-size:13px !important;
}

.tog-single-content table td,
.tog-single-content table th{
  padding:9px 12px !important;
}

/* Features proper pill design */


.tog-feature-tags-box h2{
  font-size:13px !important;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#1d1b1b;
  margin-bottom:18px !important;
}

.tog-feature-tags{
  gap:10px 14px !important;
}

.tog-feature-tags span{
  padding:8px 13px !important;
  font-size:11px !important;
  font-weight:700 !important;
  border:1px solid #eee !important;
  box-shadow:0 3px 10px rgba(0,0,0,.03);
}

/* Games at casino section */
.tog-games-strip{
  background:#f4f5f7 !important;
  padding:55px 0 70px !important;
}

.tog-games-strip .tog-container{
  width:min(1060px, calc(100% - 32px));
}

.tog-games-strip .tog-section-head h2{
  font-size:28px !important;
  color: #111;
}

/* Single game card same reference */
.tog-game-single-card{
  width:min(1060px, calc(100% - 32px));
  margin:-45px auto 0 !important;
  padding:28px 34px 34px !important;
  border-radius:10px !important;
  box-shadow:0 18px 45px rgba(0,0,0,.10) !important;
}

.tog-game-single-thumb{
  width:78px !important;
  height:78px !important;
  flex:0 0 78px !important;
  border-radius:7px !important;
}

.tog-game-single-top h1{
  font-size:31px !important;
}

.tog-game-single-content{
  font-size:14px !important;
  line-height:1.75 !important;
}

/* Related game cards smaller */
.tog-single-game-page .tog-game-card,
.small-game-grid .tog-game-card{
  max-width:210px !important;
}

.tog-single-game-page .tog-game-img,
.small-game-grid .tog-game-img{
  height:120px !important;
}

.tog-single-game-page .tog-game-content h3,
.small-game-grid .tog-game-content h3{
  font-size:15px !important;
}

/* Mobile */
@media(max-width:760px){
  .tog-review-card-large,
  .tog-game-single-card{
    width:calc(100% - 24px);
    padding:22px !important;
    margin-top:-34px !important;
  }

  .tog-review-top,
  .tog-game-single-top{
    flex-direction:row !important;
    align-items:center !important;
  }

  .tog-review-logo,
  .tog-game-single-thumb{
    width:68px !important;
    height:68px !important;
    flex:0 0 68px !important;
  }

  .tog-review-top h1,
  .tog-game-single-top h1{
    font-size:24px !important;
  }

  .tog-review-stats{
    grid-template-columns:repeat(3,1fr) !important;
    gap:10px !important;
  }

  .tog-review-stats strong{
    font-size:18px !important;
  }
}

@media (max-width: 767px) {
  .tog-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 16px 0;
    background: transparent !important;
    box-shadow: none !important;
  }

  .admin-bar .tog-header {
    top: 0;
  }

  .tog-header-inner {
    width: calc(100% - 32px);
    display: grid;
    grid-template-columns: 48px 1fr 48px;
    align-items: center;
    margin: 0 auto;
  }

  .tog-logo {
    grid-column: 2;
    justify-content: center;
  }

  .tog-logo img {
    width: 85px !important;
    max-width: 122px !important;
    filter: brightness(0) invert(1);
  }

  .tog-menu-toggle {
    grid-column: 1;
    grid-row: 1;
    display: flex !important;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 0 !important;
    background: transparent !important;
    color: #fff !important;
    font-size: 38px;
    line-height: 1;
    padding: 0;
  }

  .tog-search-open {
    grid-column: 3;
    grid-row: 1;
    display: flex !important;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 0 !important;
    background: transparent !important;
    color: #fff !important;
    padding: 0;
  }

  .tog-search-open i {
    font-size: 20px;
    color: #fff !important;
  }

  .tog-nav {
    position: fixed;
    top: 0;
    left: -82%;
    width: 80%;
    max-width: 340px;
    height: 100vh;
    background: #fff !important;
    padding: 15px 15px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    z-index: 99999;
    transition: left .3s ease;
    box-shadow: 12px 0 30px rgba(0,0,0,.18);
  }

  .tog-nav.active {
    left: 0;
  }

  .tog-nav::before {
    content: "";
    width: 85px;
    height: 75px;
    background: url("/wp-content/themes/hello-child/assets/images/logo.png") center/contain no-repeat;
    display: block;
  }

  .tog-nav a {
    color: #222 !important;
    font-size: 16px;
    font-weight: 400 !important;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1;
  }

  .tog-nav .tog-search-open {
    display: none !important;
  }

  .tog-nav .tog-search-overlay {
    display: none;
  }

  .tog-header.scrolled {
    background: #fff !important;
    padding: 5px 0;
    box-shadow: 0 3px 12px rgba(0,0,0,.08) !important;
  }

  .tog-header.scrolled .tog-logo img {
    filter: none;
  }

  .tog-header.scrolled .tog-menu-toggle,
  .tog-header.scrolled .tog-search-open,
  .tog-header.scrolled .tog-search-open i {
    color: #111 !important;
  }
}
@media (max-width:767px){

  body.menu-open{
    overflow:hidden;
  }

  .tog-nav{
    z-index:99999;
  }

  .tog-header{
    z-index:100000;
  }
	.tog-article-hero h1 {
		font-size:20px;
	}
	.tog-article-content h2{
		font-size:20px;
        line-height: 1.3;
	}
}
.tog-black-btn i{
    margin-left:8px;
    transition:.3s ease;
    font-size: 16px;
}

.tog-black-btn:hover i{
    transform:translateX(4px);
}

