/* TOTBLOCKs Base Styles */

:root {
  --clr-bg: #111;
  --clr-accent: #d10000;
  --clr-light: #fff;
  --clr-muted: #aaa;
  --radius: 10px;
  --font: 'Segoe UI', sans-serif;
}

body {
  font-family: var(--font);
  color: var(--clr-light);
  background: var(--clr-bg);
  margin: 0;
  padding: 0;
}

/* Author Meta */
.fitchy-author-meta {
 	gap: 8px;
	line-height: 1.7em;
	font-size: 0.3em;
}
.author-avatar { width: 24px; height: 24px; border-radius: 50%; 	margin: 0 0 -5px 0;}
.meta-separator { color: var(--clr-muted); }

/* Promo Block */
.fitchy-promo {
  background: #222;
  border: 2px solid var(--clr-accent);
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
}
.promo-code-box {
  display: flex;
  justify-content: center;
  gap: 10px;
  background: #333;
  padding: 10px;
  border-radius: var(--radius);
}
.copy-btn {
  background: var(--clr-accent);
  color: #fff;
  border: none;
  padding: 5px 10px;
  border-radius: var(--radius);
  cursor: pointer;
}
.desc{
	font-size: 0.6em;
}
/* Promo List */
.fitchy-promo-list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.promo-card {
  background: #1c1c1c;
  padding: 10px;
  border-radius: var(--radius);
  border: 1px solid #333;
  text-align: center;
}
.promo-card-logo {
  width: 100%;
  max-height: 60px;
  object-fit: contain;
}
.promo-card-btn {
  background: var(--clr-accent);
  color: #fff;
  padding: 6px 12px;
  margin-top: 10px;
  border-radius: var(--radius);
  display: inline-block;
  text-decoration: none;
}

/* App Info */
.fitchy-app-info {
  background: #222;
  padding: 20px;
  border-radius: var(--radius);
}
.fitchy-app-info .app-header {
  display: flex;
  align-items: center;
  gap: 16px;
}
.app-logo {
  width: 64px;
  height: 64px;
}
.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  margin-top: 20px;
}
.app-download-btn {
  margin-top: 20px;
  display: inline-block;
  padding: 10px 16px;
  background: var(--clr-accent);
  color: #fff;
  border-radius: var(--radius);
  text-decoration: none;
}
.app-download-btn .subtext {
  display: block;
  font-size: 12px;
  color: #eee;
}

/* Download Banner */
.fitchy-download-banner {
    position: fixed;
    bottom: 0;
    right: 40%;
    width: 280px;
    background: #222;
    border-top: 2px solid var(--clr-accent);
    z-index: 1000;
    border-radius:10px;
    
}
.rank-math-breadcrumb{
	    float: right;
    margin-top: -30px;
}
.banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
}
.banner-image {
  height: 75px;
	position: absolute;
	top: -20px;
}
.banner-button {
  background: var(--clr-accent);
  color: white;
  padding: 8px 14px;
  border-radius: var(--radius);
  text-decoration: none;
  margin-left: 120px;
}
.fitchy-casino-wrapper{
    padding: 10px 10px 20px 10px;
    background: linear-gradient(90deg, #82191c 0%, transparent 130%);
    border-radius: 8px;	
    margin: 30px 0 0 0;
}

.fitchy-games-grid{
		

}
/* Live Games / Games / Casino */
.fitchy-live-grid,
.fitchy-games-grid,
.fitchy-casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;

}
.live-game-card,
.game-card,
.casino-game-card {
  position: relative;
  height: 100px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  overflow: hidden;
}
.live-overlay,
.game-overlay,
.casino-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.live-game-card:hover .live-overlay,
.game-card:hover .game-overlay,
.casino-game-card:hover .casino-overlay {
  opacity: 1;
}
.play-button,
.game-play-btn,
.casino-play-btn {
  background: var(--clr-accent);
  padding: 6px 12px;
  border-radius: var(--radius);
  color: var(--clr-light);
  font-weight: bold;
}

/* Categories */
.fitchy-category-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 12px;
    padding: 50px 10px 30px 10px;
}
.category-card {
  background: #333;
  padding: 10px 16px;
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: var(--clr-light);
      background: linear-gradient(90deg, #82191c 0%, transparent 100%);
}
.category-card .icon {
  width: 40px;
  height: 40px;
}
.bonus-btn {
color: #fff;	
}

.bonus-title{
	color: #fff;
    text-align: center;
    padding: 15px 2px 15px 2px;
    background: rgb(0 0 0 / 69%);
    width: 100%;
}
/* Bonuses */
.fitchy-bonus-grid {
	display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 12px;
    padding: 50px 10px 30px 10px;
}
.bonus-card {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.bonus-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
}
.bonus-card:hover .bonus-overlay { opacity: 1; }
.bonus-btn {
  background: var(--clr-accent);
  padding: 8px 16px;
  border-radius: var(--radius);
  font-weight: bold;
}

/* Comments */
.totblock-comments {
  margin-top: 2rem;
}
.comments-list li {
  border-top: 1px solid #444;
  padding: 8px 0;
}
.comment-form textarea,
.comment-form input {
  width: 100%;
  padding: 8px;
  border: none;
  border-radius: 4px;
  margin-bottom: 10px;
  background: #222;
  color: white;
}

/* Gallery */
.totblock-gallery {
  display: flex;
  gap: 10px;
  overflow-x: auto;
}
.gallery-slide img {
  height: 120px;
  border-radius: var(--radius);
}
.totblock-gallery {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 10px 0;
}
.totblock-gallery img {
  height: 120px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.totblock-gallery img:hover {
  transform: scale(1.05);
}

/* Rating */
.totblock-rating {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  font-size: 16px;
  color: gold;
}
.totblock-rating .star.empty { color: #444; }
.rating-text { color: #000; margin-left: 6px; }
