.casino-card.exclusive {
  position: relative;
  background: #1a1c29;
  border-radius: 18px;
  overflow: hidden;
  z-index: 1;
}
.casino-card.exclusive::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 20px;
  background: conic-gradient(
    from 0deg,
    #FFD700,
    #E63946,
    #ff4d6d,
    #FFD700,
    #E63946
  );
  animation: rotateBorder 2.5s linear infinite;
  z-index: -1;
}
.casino-card.exclusive::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: #1a1c29;
  z-index: -1;
}
.casino-card.exclusive {
  box-shadow: 0 0 25px rgba(230, 57, 70, 0.5),
              0 0 40px rgba(255, 215, 0, 0.2);
  animation: glowPulse 2.5s ease-in-out infinite;
}
@keyframes rotateBorder {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.4),
                0 0 35px rgba(255, 215, 0, 0.2);
  }
  50% {
    box-shadow: 0 0 30px rgba(230, 57, 70, 0.7),
                0 0 50px rgba(255, 215, 0, 0.35);
  }
}
@media (max-width: 767px) {
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    opacity: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    background: rgba(17, 17, 17, 0.9);
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    grid-gap: 12px;
    justify-items: center;
    align-content: start;
    padding: 120px 25px 30px;
    box-sizing: border-box;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    z-index: 999;
    border: none;
    pointer-events: none;
  }
  .mobile-menu.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-menu.closing {
    transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
  }
  .mobile-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    min-height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.35s ease;
  }
  .mobile-menu.open a {
    opacity: 1;
    transform: translateY(0);
  }
  .mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #facc15;
    transform: scale(1.04);
  }
  .menu-toggle {
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
    display: inline-block;
    transition: transform 0.3s ease;
  }
  .menu-toggle.animate {
    animation: pulseRotate 0.4s ease forwards;
  }
  @keyframes pulseRotate {
    0% { transform: scale(1) rotate(0deg); }
    40% { transform: scale(1.2) rotate(10deg); }
    70% { transform: scale(0.9) rotate(-5deg); }
    100% { transform: scale(1) rotate(0deg); }
  }
  body.menu-open::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
    opacity: 1;
    transition: opacity 0.3s ease;
  }
  body:not(.menu-open)::before {
    opacity: 0;
    pointer-events: none;
  }
}
.score-btn {
  display: inline-block;
  padding: 3px 8px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: #2c2f40;
  border: 1px solid #FFD700;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
  text-align: center;
}
.predictions-section {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 15px;
    font-family: 'Poppins', sans-serif;
  }
  .predictions-section h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 20px;
    letter-spacing: 1px;
  }
  .predictions-card {
    background: #161a27;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    border: 1px solid #2c2f40;
    color: #fff;
    position: relative;
    padding-top: 30px;
  }
  .predictions-table {
    display: grid;
    grid-template-columns: 1fr;
  }
.ribbon3 {
  position: absolute;
  top: -20px;
  left: 0;
  padding: 8px 12px;
  background: #F47530;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  box-shadow: -1px 2px 5px rgba(0,0,0,0.4);
  border-radius: 0 12px 12px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.fire-wrapper {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
}
.fire {
  position: relative;
  font-size: 20px;
  display: inline-block;
  animation: fire-burn 0.25s infinite alternate;
  z-index: 2;
}
@keyframes fire-burn {
  0% {
    transform: scale(1) translateY(0) rotate(0deg);
    filter: drop-shadow(0 -1px 6px #ff4d00) drop-shadow(0 -2px 10px #ff6600);
  }
  25% {
    transform: scale(1.15) translateY(-2px) rotate(-2deg);
    filter: drop-shadow(0 -1px 8px #ffaa00) drop-shadow(0 -2px 12px #ff4500);
  }
  50% {
    transform: scale(1.05) translateY(-4px) rotate(3deg);
    filter: drop-shadow(0 -2px 10px #ffff66) drop-shadow(0 -3px 14px #ff2200);
  }
  75% {
    transform: scale(1.2) translateY(-3px) rotate(-1deg);
    filter: drop-shadow(0 -1px 8px #ffd000) drop-shadow(0 -3px 12px #ff3300);
  }
  100% {
    transform: scale(1.1) translateY(-2px) rotate(1deg);
    filter: drop-shadow(0 -2px 6px #ff7700) drop-shadow(0 -3px 10px #ff2200);
  }
}
.smoke {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 8px;
  height: 8px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: smoke-rise 1.2s infinite;
  z-index: 1;
}
.smoke.delay {
  animation-delay: 0.6s;
}
@keyframes smoke-rise {
  0% {
    opacity: 0.4;
    transform: translateX(-50%) translateY(0) scale(0.6);
  }
  50% {
    opacity: 0.2;
    transform: translateX(-60%) translateY(-10px) scale(0.8);
  }
  100% {
    opacity: 0;
    transform: translateX(-40%) translateY(-20px) scale(1);
  }
}
.ribbon3:before, .ribbon3:after {
  content: "";
  position: absolute;
}
.ribbon3:before {
  width: 7px;
  height: 100%;
  top: 0;
  left: -6.5px;
  padding: 0 0 7px;
  background: #F47530;
  border-radius: 5px 0 0 5px;
}
.ribbon3:after {
  width: 5px;
  height: 5px;
  bottom: -5px;
  left: -4.5px;
  background: #C85620;
  border-radius: 5px 0 0 5px;
 }
  .pred-row {
    display: grid;
    grid-template-columns: 2.8fr 1.5fr 0.8fr 0.6fr 0.6fr;
    align-items: center;
    padding: 14px 16px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    column-gap: 14px;
    transition: all 0.3s ease-in-out;
    margin-bottom: 12px;
  }
  .pred-row.hidden {
    opacity: 0;
    max-height: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
  }
  .pred-row.header {
    background: #0b0e17;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #2c2f40;
    grid-template-columns: 2.8fr 1.5fr 0.8fr 0.6fr 0.6fr;
  }
  .confidence {
  margin-left: 8px;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
  display: inline-block;
  color: #ffffff;
  background-color: rgba(210, 2, 2, 0.9);
  box-shadow: 0 0 8px rgba(210, 2, 2, 0.6);
  transition: transform 0.2s ease, box-shadow 0.4s ease;
}
.confidence.high {
  background-color: rgba(46, 204, 113, 0.9);
  box-shadow: 0 0 10px rgba(46, 204, 113, 0.7);
}
.confidence.medium {
  background-color: rgba(255, 215, 0, 0.9);
  color: #000000;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}
.confidence.low {
  background-color: rgba(255, 69, 0, 0.9);
  box-shadow: 0 0 10px rgba(255, 69, 0, 0.7);
}
.confidence:hover {
  transform: scale(1.1);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
}
  .match-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }
  .team-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }
  .pred-row:hover .team-icon { transform: scale(1.1); }
  .team-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  .vs-badge {
    font-size: 12px;
    font-weight: 700;
    color: #FFD700;
    background: #0b0e17;
    padding: 3px 6px;
    border-radius: 6px;
    border: 1px solid #2c2f40;
    box-shadow: 0 1px 4px rgba(0,0,0,0.4);
    flex-shrink: 0;
  }
  .tip { color: #FFD700; font-weight: 600; }
  .odds { font-weight: 700; color: #2ecc71; }
  .status-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .status-upcoming {
    flex-direction: column;
    padding: 6px 8px;
    min-width: 70px;
    background: #2c2f40;
    color: #FFD700;
    display: inline-flex;
  }
  .status-live {
    background: #E63946;
    color: #fff;
    font-size: 10px;
    padding: 2px 5px;
    animation: pulse 1.2s infinite;
    cursor: default !important;
  }
  .status-finished {
    background: #2ecc71;
    color: #fff;
    font-size: 10px;
    padding: 2px 5px;
  }
.status-live[onclick] {
  cursor: pointer !important;
  transition: transform 0.2s ease, background 0.2s ease;
}
.status-live[onclick]:hover {
  background: #ff4d6d;
  transform: scale(1.05);
}
  @keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
  }
  .status-upcoming .date {
    font-size: 11px;
    font-weight: 500;
    color: #fff;
    opacity: 0.85;
    margin-top: 2px;
  }
.league-badge {
  display: flex;
  justify-content: left;
  align-items: center;
}
.league-badge img {
  height: 26px;
  width: auto;
  display: block;
}
.league-badge:hover {
  animation: bouncePulse 0.6s ease;
}
@keyframes bouncePulse {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.15); }
  60%  { transform: scale(0.95); }
  80%  { transform: scale(1.05); }
  100% { transform: scale(1); }
}
  .result-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    width: 22px;
    height: 22px;
    border: 2px solid currentColor;
    border-radius: 4px;
  }
  .result-correct { color: #2ecc71; }
  .result-wrong { color: #E63946; }
  .show-buttons {
    text-align: center;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .show-btn {
    background: #E63946;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
  }
  .show-btn:hover { background: #c72f3a; }
@media (max-width: 768px) {
  .pred-row.header {
    display: none;
  }
  .ribbon3 {
    display: none !important;
  }
  .confidence {
    display: none !important;
  }
  .pred-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 10px;
    padding: 14px;
    border: 1px solid #2c2f40;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    margin-bottom: 12px;
  }
  .match-info span:not([class]) {
    display: none !important;
  }
  .match-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    width: 100%;
  }
  .team-icon {
    width: 32px;
    height: 32px;
  }
  .vs-badge {
    font-size: 12px;
    padding: 2px 5px;
  }
  .pred-row > div:nth-child(2),
  .pred-row > div:nth-child(3),
  .pred-row > div:nth-child(4),
  .pred-row > div:nth-child(5) {
    width: 100%;
    padding: 6px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    align-items: center;
  }
  .pred-row > div:nth-child(2)::before {
    content: "Prediction:";
    font-weight: bold;
    color: #FFD700;
  }
  .pred-row > div:nth-child(2) {
    justify-content: space-between;
  }
  .pred-row > div:nth-child(2) .tip {
    display: inline-flex;
    align-items: center;
  }
  .pred-row > div:nth-child(3)::before {
    content: "Odds:";
    font-weight: bold;
    color: #FFD700;
    margin-right: auto;
  }
  .pred-row > div:nth-child(4)::before {
    content: "Result:";
    font-weight: bold;
    color: #FFD700;
    margin-right: auto;
  }
  .pred-row > div:nth-child(5)::before {
    content: "League:";
    font-weight: bold;
    color: #FFD700;
    margin-right: auto;
  }
}
  #acceptCookies {
    background: #161a27;
    color: #fff;
    padding: 10px 18px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  #acceptCookies:hover {
    background: #FFD700;
    color: #0a0c14;
    border-color: #FFD700;
  }
  @media (max-width: 600px) {
  #cookieConsent {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: unset;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 15px;
    font-size: 13px;
  }
  #cookieConsent p {
    margin-bottom: 8px;
  }
  #acceptCookies {
    width: 100%;
    text-align: center;
    padding: 12px;
    font-size: 14px;
  }
}
.body2 {
    font-family: 'Poppins', sans-serif;
    background: #0b0e17;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
  }
  .casino-card2 {
    background: #161a27;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    width: 100%;
    max-width: 1200px;
    position: relative;
    margin-bottom: 15px;
    border: 1px solid #2c2f40;
  }
  .casino-top2 {
    display: grid;
    grid-template-columns: 160px 1fr 1.2fr 220px;
    gap: 20px;
    align-items: center;
  }
  .casino-left2 {
    position: relative;
  }
  .casino-left2 img {
    width: 160px;
    border-radius: 6px;
  }
.usecaution1 {
  position: absolute;
  top: -12px;
  left: -12px;
  background: linear-gradient(45deg, #000000, #2c2c2c);
  color: #ffffff;
  font-size: 13px;
  font-weight: bold;
  padding: 6px 14px 6px 10px;
  border-radius: 25px 5px 25px 5px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.4);
  transform: rotate(-4deg);
  display: flex;
  align-items: center;
  gap: 6px;
  animation: warningPulse 3s ease-in-out infinite;
}

.usecaution1::before {
  content: "15";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid #fff;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  background: transparent;
  margin-right: 6px;
}

.usecaution1 span {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.3px;
}

@keyframes warningPulse {
  0% {
    box-shadow: 0 0 6px rgba(255, 255, 0, 0.2);
    transform: rotate(-4deg) scale(1);
  }
  50% {
    box-shadow: 0 0 14px rgba(255, 0, 0, 0.5), 0 0 25px rgba(255, 255, 0, 0.3);
    transform: rotate(-4deg) scale(1.05);
  }
  100% {
    box-shadow: 0 0 6px rgba(255, 255, 0, 0.2);
    transform: rotate(-4deg) scale(1);
  }
}
.badge1 {
  position: absolute;
  top: -12px;
  left: -12px;
  background: linear-gradient(45deg, #FFD700, #E63946);
  color: #0b0e17;
  font-size: 13px;
  font-weight: bold;
  padding: 6px 14px 6px 10px;
  border-radius: 25px 5px 25px 5px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.25);
  transform: rotate(-4deg);
  display: flex;
  align-items: center;
  gap: 6px;
  overflow: hidden;
  white-space: nowrap;
}

.badge1::before {
  content: "1";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid #000;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  background: transparent;
  margin-right: 6px;
}

#typingText {
  border-right: 2px solid rgba(0,0,0,0.6);
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  animation: blinkCursor 0.7s step-end infinite;
}

@keyframes blinkCursor {
  from, to { border-color: transparent; }
  50% { border-color: rgba(0,0,0,0.6); }
}
.badge2 {
  position: absolute;
  top: -12px;
  left: -12px;
  background: linear-gradient(45deg, #FFD700, #E63946);
  color: #0b0e17;
  font-size: 13px;
  font-weight: bold;
  padding: 6px 14px 6px 10px;
  border-radius: 25px 5px 25px 5px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.25);
  transform: rotate(-4deg);
  display: flex;
  align-items: center;
  gap: 6px;
  overflow: hidden;
}

.badge2::before {
  content: "2";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid #000;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  background: transparent;
  margin-right: 6px;
}

.badge2 span {
  background: linear-gradient(90deg, #000, #FFD700, #000);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 2.5s linear infinite;
}

@keyframes shine {
  0% { background-position: 200% center; }
  100% { background-position: 0% center; }
}
.badge3 {
  position: absolute;
  top: -12px;
  left: -12px;
  background: linear-gradient(45deg, #FFD700, #E63946);
  color: #0b0e17;
  font-size: 13px;
  font-weight: bold;
  padding: 6px 14px 6px 10px;
  border-radius: 25px 5px 25px 5px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.25);
  transform: rotate(-4deg);
  display: flex;
  align-items: center;
  gap: 6px;
  position: absolute;
  overflow: hidden;
  animation: pulseGlow 2s ease-in-out infinite;
}

.badge3::before {
  content: "3";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid #000;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  background: transparent;
  margin-right: 6px;
}

.badge3 span {
  display: inline-block;
  background: linear-gradient(90deg, #000, #0b0e17, #000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #0b0e17;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.3px;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 6px rgba(255, 215, 0, 0.4), 0 0 12px rgba(230, 57, 70, 0.3);
    transform: rotate(-4deg) scale(1);
  }
  50% {
    box-shadow: 0 0 16px rgba(255, 215, 0, 0.8), 0 0 25px rgba(230, 57, 70, 0.6);
    transform: rotate(-4deg) scale(1.05);
  }
  100% {
    box-shadow: 0 0 6px rgba(255, 215, 0, 0.4), 0 0 12px rgba(230, 57, 70, 0.3);
    transform: rotate(-4deg) scale(1);
  }
}
.badge4 {
    position: absolute;
    top: -12px;
    left: -12px;
    background: linear-gradient(45deg, #FFD700, #E63946);
    color: #0b0e17;
    font-size: 13px;
    font-weight: bold;
    padding: 6px 14px 6px 10px;
    border-radius: 25px 5px 25px 5px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
    transform: rotate(-4deg);
    display: flex;
    align-items: center;
    gap: 6px;
  }
.badge4::before {
  content: "4";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid #000;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  background: transparent;
  margin-right: 6px;
}
.badge5 {
    position: absolute;
    top: -12px;
    left: -12px;
    background: linear-gradient(45deg, #FFD700, #E63946);
    color: #0b0e17;
    font-size: 13px;
    font-weight: bold;
    padding: 6px 14px 6px 10px;
    border-radius: 25px 5px 25px 5px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
    transform: rotate(-4deg);
    display: flex;
    align-items: center;
    gap: 6px;
  }
.badge5::before {
  content: "5";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid #000;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  background: transparent;
  margin-right: 6px;
}
.badge6 {
    position: absolute;
    top: -12px;
    left: -12px;
    background: linear-gradient(45deg, #FFD700, #E63946);
    color: #0b0e17;
    font-size: 13px;
    font-weight: bold;
    padding: 6px 14px 6px 10px;
    border-radius: 25px 5px 25px 5px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
    transform: rotate(-4deg);
    display: flex;
    align-items: center;
    gap: 6px;
  }
.badge6::before {
  content: "6";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid #000;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  background: transparent;
  margin-right: 6px;
}
.badge7 {
    position: absolute;
    top: -12px;
    left: -12px;
    background: linear-gradient(45deg, #FFD700, #E63946);
    color: #0b0e17;
    font-size: 13px;
    font-weight: bold;
    padding: 6px 14px 6px 10px;
    border-radius: 25px 5px 25px 5px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
    transform: rotate(-4deg);
    display: flex;
    align-items: center;
    gap: 6px;
  }
.badge7::before {
  content: "7";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid #000;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  background: transparent;
  margin-right: 6px;
}
.badge8 {
    position: absolute;
    top: -12px;
    left: -12px;
    background: linear-gradient(45deg, #FFD700, #E63946);
    color: #0b0e17;
    font-size: 13px;
    font-weight: bold;
    padding: 6px 14px 6px 10px;
    border-radius: 25px 5px 25px 5px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
    transform: rotate(-4deg);
    display: flex;
    align-items: center;
    gap: 6px;
  }
.badge8::before {
  content: "8";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid #000;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  background: transparent;
  margin-right: 6px;
}
.badge9 {
    position: absolute;
    top: -12px;
    left: -12px;
    background: linear-gradient(45deg, #FFD700, #E63946);
    color: #0b0e17;
    font-size: 13px;
    font-weight: bold;
    padding: 6px 14px 6px 10px;
    border-radius: 25px 5px 25px 5px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
    transform: rotate(-4deg);
    display: flex;
    align-items: center;
    gap: 6px;
  }
.badge9::before {
  content: "9";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid #000;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  background: transparent;
  margin-right: 6px;
}
.badge10 {
    position: absolute;
    top: -12px;
    left: -12px;
    background: linear-gradient(45deg, #FFD700, #E63946);
    color: #0b0e17;
    font-size: 13px;
    font-weight: bold;
    padding: 6px 14px 6px 10px;
    border-radius: 25px 5px 25px 5px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
    transform: rotate(-4deg);
    display: flex;
    align-items: center;
    gap: 6px;
  }
.badge10::before {
  content: "10";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid #000;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  background: transparent;
  margin-right: 6px;
}
.badge11 {
    position: absolute;
    top: -12px;
    left: -12px;
    background: linear-gradient(45deg, #FFD700, #E63946);
    color: #0b0e17;
    font-size: 13px;
    font-weight: bold;
    padding: 6px 14px 6px 10px;
    border-radius: 25px 5px 25px 5px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
    transform: rotate(-4deg);
    display: flex;
    align-items: center;
    gap: 6px;
  }
.badge11::before {
  content: "11";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid #000;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  background: transparent;
  margin-right: 6px;
}
.badge12 {
    position: absolute;
    top: -12px;
    left: -12px;
    background: linear-gradient(45deg, #FFD700, #E63946);
    color: #0b0e17;
    font-size: 13px;
    font-weight: bold;
    padding: 6px 14px 6px 10px;
    border-radius: 25px 5px 25px 5px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
    transform: rotate(-4deg);
    display: flex;
    align-items: center;
    gap: 6px;
  }
.badge12::before {
  content: "12";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid #000;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  background: transparent;
  margin-right: 6px;
}
.badge13 {
    position: absolute;
    top: -12px;
    left: -12px;
    background: linear-gradient(45deg, #FFD700, #E63946);
    color: #0b0e17;
    font-size: 13px;
    font-weight: bold;
    padding: 6px 14px 6px 10px;
    border-radius: 25px 5px 25px 5px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
    transform: rotate(-4deg);
    display: flex;
    align-items: center;
    gap: 6px;
  }
.badge13::before {
  content: "13";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid #000;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  background: transparent;
  margin-right: 6px;
}
.badge14 {
    position: absolute;
    top: -12px;
    left: -12px;
    background: linear-gradient(45deg, #FFD700, #E63946);
    color: #0b0e17;
    font-size: 13px;
    font-weight: bold;
    padding: 6px 14px 6px 10px;
    border-radius: 25px 5px 25px 5px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
    transform: rotate(-4deg);
    display: flex;
    align-items: center;
    gap: 6px;
  }
.badge14::before {
  content: "14";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid #000;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  background: transparent;
  margin-right: 6px;
}
.badge15 {
    position: absolute;
    top: -12px;
    left: -12px;
    background: linear-gradient(45deg, #FFD700, #E63946);
    color: #0b0e17;
    font-size: 13px;
    font-weight: bold;
    padding: 6px 14px 6px 10px;
    border-radius: 25px 5px 25px 5px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
    transform: rotate(-4deg);
    display: flex;
    align-items: center;
    gap: 6px;
  }
.badge15::before {
  content: "15";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid #000;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  background: transparent;
  margin-right: 6px;
}
.badge16 {
    position: absolute;
    top: -12px;
    left: -12px;
    background: linear-gradient(45deg, #FFD700, #E63946);
    color: #0b0e17;
    font-size: 13px;
    font-weight: bold;
    padding: 6px 14px 6px 10px;
    border-radius: 25px 5px 25px 5px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
    transform: rotate(-4deg);
    display: flex;
    align-items: center;
    gap: 6px;
  }
.badge16::before {
  content: "16";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid #000;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  background: transparent;
  margin-right: 6px;
}
.badge17 {
    position: absolute;
    top: -12px;
    left: -12px;
    background: linear-gradient(45deg, #FFD700, #E63946);
    color: #0b0e17;
    font-size: 13px;
    font-weight: bold;
    padding: 6px 14px 6px 10px;
    border-radius: 25px 5px 25px 5px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
    transform: rotate(-4deg);
    display: flex;
    align-items: center;
    gap: 6px;
  }
.badge17::before {
  content: "17";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid #000;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  background: transparent;
  margin-right: 6px;
}
.badge18 {
    position: absolute;
    top: -12px;
    left: -12px;
    background: linear-gradient(45deg, #FFD700, #E63946);
    color: #0b0e17;
    font-size: 13px;
    font-weight: bold;
    padding: 6px 14px 6px 10px;
    border-radius: 25px 5px 25px 5px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
    transform: rotate(-4deg);
    display: flex;
    align-items: center;
    gap: 6px;
  }
.badge18::before {
  content: "18";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid #000;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  background: transparent;
  margin-right: 6px;
}
.badge19 {
    position: absolute;
    top: -12px;
    left: -12px;
    background: linear-gradient(45deg, #FFD700, #E63946);
    color: #0b0e17;
    font-size: 13px;
    font-weight: bold;
    padding: 6px 14px 6px 10px;
    border-radius: 25px 5px 25px 5px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
    transform: rotate(-4deg);
    display: flex;
    align-items: center;
    gap: 6px;
  }
.badge19::before {
  content: "19";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid #000;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  background: transparent;
  margin-right: 6px;
}
.badge20 {
    position: absolute;
    top: -12px;
    left: -12px;
    background: linear-gradient(45deg, #FFD700, #E63946);
    color: #0b0e17;
    font-size: 13px;
    font-weight: bold;
    padding: 6px 14px 6px 10px;
    border-radius: 25px 5px 25px 5px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
    transform: rotate(-4deg);
    display: flex;
    align-items: center;
    gap: 6px;
  }
.badge20::before {
  content: "20";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid #000;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  background: transparent;
  margin-right: 6px;
}
.features2 {
    list-style: none;
    font-size: 14px;
    margin: 0;
    color: #ccc;
    padding: 0;
  }
  .features2 li {
    margin-bottom: 6px;
    display: flex;
    align-items: center;
  }
  .features2 li::before {
    content: "✔";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin-right: 6px;
    font-size: 12px;
    color: #0b0e17;
    background: #FFD700;
    border-radius: 50%;
  }
  .offer2 {
    text-align: center;
    margin-left: -50px;
  }
  .offer2 h3 {
    font-size: 16px;
    margin: 0 0 4px 0;
    color: #FFD700;
    font-weight: 700;
  }
  .offer2 .sub2 {
    font-size: 13px;
    color: #aaa;
    margin: 0 0 5px 0;
  }
  .stars2 {
    color: #ffdd57;
    font-size: 16px;
  }
  .stars2.empty {
    color: #555;
  }
  .casino-right2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .btn2 {
    background: #E63946;
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: bold;
    transition: 0.2s;
  }
  .btn2:hover {
    background: #c72f3a;
  }
  .more2 {
    font-size: 13px;
    color: #ccc;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .arrow2 {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
  }
  .arrow2.open {
    transform: rotate(180deg);
  }
.extra-info2 {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  display: block;
  position: relative;
  margin-top: 0;
  padding-top: 0;
}
.extra-info2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, #2c2f40, transparent);
}
.extra-info2.open {
  max-height: 999px;
  opacity: 1;
  margin-top: 15px;
  padding-top: 15px;
}
  .extra-info2 table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
  }
  .extra-info2 td {
    padding: 8px 6px;
    white-space: nowrap;
  }
  .extra-info2 td:first-child {
    font-weight: bold;
    color: #ccc;
    width: 180px;
  }
  .extra-info2 .yes2 {
    color: #2ecc71;
    font-weight: bold;
  }
  .extra-info2 .no2 {
    color: #E63946;
    font-weight: bold;
  }
  .disclaimer2 {
    font-size: 11px;
    color: #aaa;
    margin: 8px 0 25px 0;
    max-width: 1200px;
    text-align: left;
  }
  @media (max-width: 768px) {
    .casino-card2 {
      padding: 15px;
    }
    .casino-top2 {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
    .casino-left2 img {
      width: 120px;
      margin: 0 auto;
    }
    .offer2 {
      margin-left: 0;
    }
    .offer2 h3 {
      font-size: 15px;
    }
    .offer2 .sub2 {
      font-size: 13px;
    }
    .casino-right2 {
      flex-direction: column;
      gap: 10px;
    }
    .btn2 {
      padding: 10px 18px;
      font-size: 13px;
      width: 100%;
      max-width: 220px;
    }
    .features2 {
      font-size: 13px;
      text-align: left;
    }
    .extra-info2 table {
      font-size: 12px;
    }
    .extra-info2 td:first-child {
      width: 130px;
    }
  }
body { margin: 0; font-family: 'Poppins', sans-serif; background-color: #0b0e17; color: #fff; }
  header { background: #0a0c14; padding: 20px 40px; display: flex; justify-content: space-between; align-items: center; border-bottom: 2px solid #FFD700; position: sticky; top: 0; z-index: 1000; }
  header h1 { color: #FFD700; font-size: 28px; font-weight: 700; }
  nav { display: flex; gap: 15px; }
  nav a { color: #fff; padding: 10px 18px; border: 1px solid transparent; border-radius: 6px; text-decoration: none; font-size: 15px; font-weight: 600; transition: all 0.3s ease; background: #161a27; cursor: pointer; }
  nav a:hover { background: #FFD700; color: #0a0c14; border-color: #FFD700; }
  .hero { text-align: center; padding: 60px 20px; background: url('../images/banners/banner.png') center/cover no-repeat; border-bottom: 2px solid #FFD700; position: relative; }
  .hero::after { content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.6); }
  .hero h2, .hero p, .hero button { position: relative; z-index: 1; }
  .hero h2 { font-size: 36px; margin-bottom: 15px; color: #FFD700; font-weight: 700; }
  .hero p { font-size: 18px; margin-bottom: 25px; max-width: 700px; margin-left: auto; margin-right: auto; color: #ccc; }
  .hero button { background: #E63946; color: #fff; padding: 14px 30px; border: none; border-radius: 8px; font-size: 16px; font-weight: 600; cursor: pointer; transition: 0.3s; }
  .hero button:hover { background: #c72f3a; }
  .casino-list { padding: 50px 20px; max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
  .casino-card { background: #161a27; border-radius: 14px; overflow: hidden; box-shadow: 0 6px 14px rgba(0,0,0,0.5); transition: transform 0.3s ease; display: flex; flex-direction: column; height: 100%; }
  .casino-card:hover { transform: translateY(-8px); }
  .casino-image img { width: 100%; height: 150px; object-fit: cover; }
  .casino-body { padding: 20px; flex-grow: 1; }
  .casino-body h3 { margin-top: 0; color: #FFD700; font-size: 22px; font-weight: 600; }
  .casino-rating { margin: 8px 0; font-size: 16px; }
  .star { color: #ffdd57; font-size: 18px; }
  .star.empty { color: #555; }
  .casino-details { font-size: 14px; color: #bbb; margin-bottom: 12px; line-height: 1.5; min-height: 60px; }
  .casino-meta { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-bottom: 10px; }
  .casino-meta span { display: block; background: #1f2233; padding: 6px 10px; border-radius: 6px; font-size: 13px; border: 1px solid #333; text-align: center; }
  .casino-footer { padding: 15px; text-align: center; border-top: 1px solid #2c2f40; background: #11141f; margin-top: auto; }
  .casino-footer button { background: #E63946; color: #fff; padding: 10px 22px; border: none; border-radius: 6px; font-size: 15px; font-weight: 600; cursor: pointer; transition: 0.3s; }
  .casino-footer button:hover { background: #c72f3a; }
  .info-section { padding: 60px 20px; max-width: 1200px; margin: 0 auto; }
  .info-section h2 { text-align: center; font-size: 28px; color: #FFD700; margin-bottom: 30px; }
  .info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
  .info-card { background: #161a27; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.4); text-align: center; }
  .info-card img { width: 100%; height: 150px; object-fit: cover; }
  .info-card-content { padding: 20px; }
  .info-card h3 { margin-top: 0; color: #FFD700; font-size: 20px; margin-bottom: 10px; }
  .info-card p { color: #bbb; font-size: 14px; line-height: 1.6; }
  footer { background: #0a0c14; padding: 40px 20px; text-align: center; font-size: 13px; color: #ccc; border-top: 2px solid #FFD700; }
  footer a { color: #FFD700; margin: 0 10px; text-decoration: none; cursor: pointer; }
  footer a:hover { text-decoration: underline; }
  .age-warning { margin-top: 10px; font-weight: bold; color: #E63946; }
  .modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.7); }
  .modal-content { background: #161a27; margin: 10% auto; padding: 30px; border: 2px solid #FFD700; border-radius: 12px; width: 90%; max-width: 500px; text-align: center; color: #fff; }
  .modal-content h2 { margin-top: 0; color: #FFD700; }
  .close { color: #aaa; float: right; font-size: 28px; font-weight: bold; cursor: pointer; }
  .close:hover { color: #fff; }
  .contact-form input, .contact-form textarea { width: 100%; padding: 10px; margin: 10px 0; border-radius: 6px; border: none; font-family: inherit; }
  .contact-form button { background: #FFD700; color: #0a0c14; padding: 12px 20px; border: none; border-radius: 6px; font-weight: bold; cursor: pointer; }
  .contact-form button:hover { background: #e6c200; }
.desktop-only {
  display: block;
}
@media (max-width: 767px) {
  .desktop-only {
    display: none;
  }
}
  @media (max-width: 768px) {
  .casino-card2,
  .disclaimer2 {
    display: none !important;
  }
}
.trust-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}
.section-title {
  font-size: 26px;
  margin-bottom: 30px;
  color: #FFD700;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.trust-card {
  background: #161a27;
  border: 1px solid #2c2f40;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.6);
}
.trust-icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.trust-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #FFD700;
}
.trust-card p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.4;
}
.terms-text ul { 
    text-align: left; 
    margin: 15px 0; 
    padding-left: 20px; 
  } 
  .terms-text li { 
    margin-bottom: 10px; 
    font-size: 14px; 
    line-height: 1.6; 
    color: #ddd; 
  } 
@media (max-width: 768px) {
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(6px);
  }
  .modal-content {
    background: #111;
    width: 92%;
    margin: 80px auto;
    padding: 15px;
    border-radius: 12px;
    color: white;
    box-sizing: border-box;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  }
  .close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: color 0.2s ease;
  }
  .close:hover {
    color: #facc15;
  }
  .terms-text ul {
    padding-left: 16px;
  }
  .terms-text li {
    font-size: 13px;
    line-height: 1.5;
  }
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    box-sizing: border-box;
    font-size: 14px;
  }
  button[type="submit"] {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    border-radius: 8px;
  }
}
@media (min-width: 769px) {
  #contactModal .contact-form input,
  #contactModal .contact-form textarea,
  #contactModal .contact-form button {
    width: 96%;
    margin-left: auto;
    margin-right: auto;
    display: block;
    box-sizing: border-box;
  }
}
#backToTop {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 100;
  background: #FFD700;
  color: #0a0c14;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,0.5);
  transition: opacity 0.6s ease, background 0.3s ease, transform 0.3s ease;
}
#backToTop.show {
  opacity: 1;
  pointer-events: auto;
}
#backToTop:hover {
  background: #e6c200;
  transform: translateY(-4px);
}
#backToTop svg {
  vertical-align: middle;
}
.card-title {
  font-size: 20px;
  font-weight: 600;
  color: #FFD700;
  text-align: center;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}
.card-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 2px;
  background: #FFD700;
  border-radius: 2px;
  opacity: 0.7;
  transition: width 0.3s ease, opacity 0.3s ease;
}
.card-title:hover::after {
  width: 80%;
  opacity: 1;
}
.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #FFD700;
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(90deg, #161a27, #0a0c14);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  animation: fadeInUp 1s ease;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: #FFD700;
  border-radius: 2px;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.logo {
        width: 150px;
        height: auto;
    }
@media (max-width: 1024px) {
  .casino-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .casino-list, .info-grid {
    grid-template-columns: 1fr;
  }
  nav {
    display: none;
    flex-direction: column;
    background: #0a0c14;
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    border-left: 2px solid #FFD700;
  }
  nav a {
    border-bottom: 1px solid #333;
    padding: 12px;
    text-align: left;
  }
  .menu-toggle {
    display: block;
    cursor: pointer;
    font-size: 24px;
    color: #FFD700;
  }
}
@media (min-width: 769px) {
  .menu-toggle {
    display: none;
  }
}
  @media (max-width: 768px) {
  .modal-content {
    width: 95% !important;
    margin: 20% auto !important;
    padding: 20px !important;
    border-radius: 8px;
  }
  .modal-content h2 {
    font-size: 20px;
  }
  .contact-form input,
  .contact-form textarea {
    font-size: 14px;
    padding: 8px;
  }
  .contact-form button {
    width: 100%;
    font-size: 15px;
    padding: 10px;
  }
}
.casino-card {
  position: relative;
  overflow: hidden;
}
.casino-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #e63946;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  padding: 8px 0;
  text-transform: uppercase;
  border-bottom-left-radius: 50% 20px;
  border-bottom-right-radius: 50% 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.desktop-menu a i {
  margin-right: 8px;
}
@media (max-width: 768px) {
  .desktop-menu a i {
    display: none;
  }
}
.facebook-icon {
  color: #FFD700;
  font-size: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
.facebook-icon:hover {
  color: #ffffff;
  transform: translateY(-5px) scale(1.2);
}
.status-badge.status-live {
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.status-badge.status-live:hover {
  background: #ff4d6d;
  transform: scale(1.05);
}
.status-badge.status-live[onclick] {
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.status-badge.status-live[onclick]:hover {
  background: #ff4d6d;
  transform: scale(1.05);
}
.pred-row.football {
  position: relative;
  background: #161a27;
  overflow: hidden;
}
.pred-row.football::after {
  content: "";
  position: absolute;
  right: -80px;
  top: 50%;
  width: 40px;
  height: 40px;
  transform: translateY(-50%);
  background: url("../images/sports/football.png") no-repeat center/contain;
  opacity: 0;
  transition: all 0.4s ease;
}
.pred-row.football:hover::after {
  right: 10px;
  opacity: 0.8;
}
.pred-row.basketball {
  position: relative;
  background: #161a27;
  overflow: hidden;
}
.pred-row.basketball::after {
  content: "";
  position: absolute;
  right: -80px;
  top: 50%;
  width: 40px;
  height: 40px;
  transform: translateY(-50%);
  background: url("../images/sports/basketball.png") no-repeat center/contain;
  opacity: 0;
  transition: all 0.4s ease;
}
.pred-row.basketball:hover::after {
  right: 10px;
  opacity: 0.8;
}
.pred-row.mma {
  position: relative;
  background: #161a27;
  overflow: hidden;
}
.pred-row.mma::after {
  content: "";
  position: absolute;
  right: -80px;
  top: 50%;
  width: 40px;
  height: 40px;
  transform: translateY(-50%);
  background: url("../images/sports/boxing.png") no-repeat center/contain;
  opacity: 0;
  transition: all 0.4s ease;
}
.pred-row.mma:hover::after {
  right: 10px;
  opacity: 0.8;
}
.pred-row.esports {
  position: relative;
  background: #161a27;
  overflow: hidden;
}
.pred-row.esports::after {
  content: "";
  position: absolute;
  right: -80px;
  top: 50%;
  width: 40px;
  height: 40px;
  transform: translateY(-50%);
  background: url("../images/sports/esports.png") no-repeat center/contain;
  opacity: 0;
  transition: all 0.4s ease;
}
.pred-row.esports:hover::after {
  right: 10px;
  opacity: 0.8;
}
@media (max-width: 768px) {
  .pred-row.football::after,
  .pred-row.basketball::after,
  .pred-row.mma::after,
  .pred-row.esports::after {
    right: 50%;
    top: auto;
    bottom: -60px;
    transform: translateX(50%);
  }
  .pred-row.football:hover::after,
  .pred-row.basketball:hover::after,
  .pred-row.mma:hover::after,
  .pred-row.esports:hover::after {
    bottom: 10px;
    right: 50%;
    opacity: 0.8;
  }
}
.search-container {
  position: relative;
  display: flex;
  align-items: center;
}
.search-icon,
.close-icon {
  color: #FFD700;
  font-size: 18px;
  cursor: pointer;
  padding: 10px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.search-icon:hover,
.close-icon:hover {
  transform: scale(1.2);
  color: #fff;
}
#searchInput {
  width: 0;
  opacity: 0;
  padding: 8px 0;
  border-radius: 6px;
  border: 1px solid #FFD700;
  background: #161a27;
  color: #fff;
  font-size: 14px;
  margin-left: 8px;
  transition: width 0.4s ease, opacity 0.4s ease;
  pointer-events: none;
}
#searchInput.active {
  width: 180px;
  opacity: 1;
  pointer-events: auto;
}
.close-icon {
  display: none;
}
.search-container.active .search-icon {
  display: none;
}
.search-container.active .close-icon {
  display: inline-block;
}
#searchInput {
  width: 0;
  opacity: 0;
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid #FFD700;
  background: #161a27;
  color: #fff;
  font-size: 14px;
  margin-left: 8px;
  transition: width 0.4s ease, opacity 0.4s ease;
  pointer-events: none;
  font-family: 'Poppins', sans-serif;
}
#searchInput::placeholder {
  color: #aaa;
  font-weight: 500;
}
#searchInput.active {
  width: 200px;
  opacity: 1;
  pointer-events: auto;
}
#noResults {
  display: none;
  text-align: center;
  margin: 120px auto 40px auto;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
}
@media (max-width: 768px) {
  .search-container {
    display: none !important;
  }
}
.footer-line {
  width: 100%;
  height: 1px;
  margin: 20px auto;
  background: linear-gradient(to right, transparent, #2c2f40, transparent);
}
nav a {
  color: #fff;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  background: #161a27;
  cursor: pointer;
}
nav a:hover {
  background: #FFD700;
  color: #0a0c14;
  border-color: #FFD700;
}
nav a.active {
  background: #FFD700;
  color: #0a0c14;
  border-color: #FFD700;
}
.boomerang-bg {
  position: relative;
  color: #fff;
  background: none;
}
.boomerang-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/banners/boomerang-milan.avif') top center/cover no-repeat;
  z-index: 0;
}
.boomerang-bg * {
  position: relative;
  z-index: 1;
}
.made-with {
  font-size: 14px;
  color: #aaa;
  margin-top: 5px;
}
.heart {
  color: #e63946;
  display: inline-block;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}
#tipsters.tipsters-grid-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tipsters-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  justify-items: center;
  width: 100%;
}
@media(max-width:980px){
  .tipsters-grid-container { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media(max-width:640px){
  .tipsters-grid-container { grid-template-columns: 1fr; gap: 20px; }
}
.tipster-card {
  position: relative;
  border-radius: 18px;
  padding: 42px 22px 32px;
  text-align: center;
  transition: .3s ease;
  overflow: hidden;
  background-color: transparent;
  border: 1px solid rgba(255,215,0,0.4);
  backdrop-filter: blur(2px);
  max-width: 330px;
  width: 100%;
}
.tipster-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,215,0,0.8);
}
.top-badge {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  background: linear-gradient(90deg,#3a3a3a,#555);
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: .4px;
}
.verified-badge {
  background: linear-gradient(90deg,#FFD700,#FFB347);
  color: #111;
  font-weight: 700;
  box-shadow: 0 0 15px rgba(255,215,0,0.3);
}
.tick-icon {
  width: 16px;
  height: 16px;
  border: 2px solid #111;
  border-radius: 50%;
  animation: glow 2s ease-in-out infinite alternate;
}
@keyframes glow {
  from { filter: drop-shadow(0 0 4px rgba(255,215,0,0.4)); }
  to { filter: drop-shadow(0 0 8px rgba(255,215,0,0.8)); }
}
.photo-ring {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 28px auto 18px;
  background: radial-gradient(circle at center,#1a1c29 48%,transparent 49%),linear-gradient(135deg,#888,#aaa);
  padding: 1px;
}
.verified-ring {
  background: radial-gradient(circle at center,#1a1c29 48%,transparent 49%),linear-gradient(135deg,#FFD700,#FFB347);
  box-shadow: 0 0 8px rgba(255,215,0,0.3);
}
.photo-ring img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  transition: .3s ease;
}
.tipster-card:hover .photo-ring img {
  transform: scale(1.04);
}
.tipster-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 6px 0 6px;
  background: linear-gradient(90deg,#FFD700,#FFB347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tipster-card .role {
  font-size: .93rem;
  color: #bbb;
  margin-bottom: 16px;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.divider {
  height: 1px;
  width: 80%;
  background: linear-gradient(90deg,transparent,#FFD700,transparent);
  margin: 12px auto 18px;
  opacity: 0.6;
}
.tipster-card .stats {
  display: flex;
  justify-content: space-around;
  font-size: .9rem;
  padding-top: 10px;
  text-align: center;
}
.stat strong {
  display: block;
  font-size: .8rem;
  color: #bbb;
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stat span {
  font-weight: 700;
  font-size: 1rem;
}
.stat.win span { color: #00d186; }
.stat.lose span { color: #e63946; }
.stat.acc span { color: #FFD700; }
.tipster-card.highlight {
  border-color: #FFD700;
  box-shadow: 0 0 20px rgba(255,215,0,0.7);
  transition: all 0.4s ease;
}
.by-tipster {
  display: inline-block;
  margin-top: 4px;
  color: #bbb;
  font-size: 0.85rem;
  cursor: pointer;
  font-weight: 600;
}
.by-tipster:hover {
  text-decoration: underline;
}
img.protected {
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
@media (max-width: 768px) {
  ul.footer-links {
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 10px 0;
  }

  ul.footer-links li {
    width: 85%;
    max-width: 340px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
  }

  ul.footer-links li:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: scale(1.02);
  }

  ul.footer-links li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 15px;
    width: 100%;
    text-align: left;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
  }

  ul.footer-links li img,
  ul.footer-links li i {
    margin-right: 10px;
  }
}

.odds-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  background: #252525;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.2s ease;
  width: 70px;
  box-sizing: border-box;
}

.odds-link:hover {
  background: #333;
  transform: scale(1.05);
}

.odds-logo {
  height: 20px;
  width: auto;
  border-radius: 4px;
}

.odds-value {
  color: #00ff88;
  font-weight: bold;
  font-size: 14px;
  white-space: nowrap;
}

.odds-link.no-affiliate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #252525;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.2s ease;
  width: 70px;
}

.odds-link.no-affiliate:hover {
  background: #333;
  transform: scale(1.05);
}

.odds-link.no-affiliate .odds-value {
  color: #00ff88;
  font-weight: bold;
  font-size: 14px;
}

.pred-row.header div {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  text-transform: uppercase;
}

.pred-row.header i {
  font-size: 14px;
  color: #f5c400;
}

.header-icon {
  height: 16px;
  width: auto;
  vertical-align: middle;
  pointer-events: none;
  user-select: none;
}

#live-scores .predictions-card {
  margin-top: 10px !important;
}

#live-scores .pred-row.header {
  background: #101114;
  color: #999;
  font-weight: 600;
  text-transform: uppercase;
  display: grid;
  grid-template-columns: 1fr 100px 80px;
  align-items: center;
  padding: 14px 20px;
  border-radius: 14px;
  letter-spacing: 0.5px;
  border: 1px solid #1f2025;
}

#live-scores .pred-row.header i {
  margin-right: 8px;
  color: #facc15;
}

#live-scores .live-row {
  display: grid;
  grid-template-columns: 1fr 100px 80px;
  align-items: center;
  padding: 14px 20px;
  background: linear-gradient(90deg, #181a22 0%, #181a22 80%, #1c1e27 100%);
  margin-bottom: 6px;
  border-radius: 14px;
  transition: all 0.25s ease;
  border: 1px solid #1f2025;
}

#live-scores .live-row:hover {
  background: linear-gradient(90deg, #1e202a 0%, #1e202a 80%, #22242f 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

#live-scores .match-teams {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-weight: 500;
  color: #fff;
}

#live-scores .team-name {
  display: flex;
  align-items: center;
  gap: 6px;
}

#live-scores .vs-line {
  color: #666;
  font-weight: 600;
  font-size: 14px;
  margin: 0 6px;
}

#live-scores .team-logo {
  width: 34px;
  height: auto;
  object-fit: contain;
  background: none;
  border-radius: 0;
  box-shadow: none;
}

#live-scores .live-badge {
  background: #ff2d2d;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  margin-left: 8px;
  letter-spacing: 0.5px;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
  text-transform: uppercase;
}

#live-scores .score {
  text-align: left;
  font-weight: 700;
  font-size: 18px;
  color: #00ff7f;
  letter-spacing: 0.5px;
}

#live-scores .time {
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  color: #facc15;
  display: flex;
  align-items: center;
  gap: 6px;
}

#live-scores .time::before {
  content: "\f017";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 13px;
  color: #facc15;
}

@media (max-width: 600px) {
  #live-scores .pred-row.header {
    display: none;
  }

  #live-scores .live-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px;
    border-radius: 12px;
    background: #181a22;
    margin: 0 auto 10px auto;
    width: 90%;
    max-width: 340px;
    box-sizing: border-box;
  }

  #live-scores .match-teams {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
    width: 100%;
    overflow: hidden;
  }

  #live-scores .team-name {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  #live-scores .vs-line {
    font-size: 13px;
    color: #888;
    margin: 2px 0;
  }

  #live-scores .score {
    font-size: 17px;
    font-weight: 600;
    color: #00ff7f;
  }

  #live-scores .time {
    font-size: 14px;
    color: #facc15;
    display: flex;
    align-items: center;
    gap: 4px;
  }
}

#live-scores.predictions-section {
  margin-top: 5px !important;
}

#live-scores .predictions-card {
  margin-top: 10px !important;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
    cursor: pointer;
  }

.stat-card:hover div:first-child {
    letter-spacing: 1.2px;
    transition: all 0.3s ease;
  }
.hidden {
  display: none !important;
}

.info-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: transform 0.3s ease;
  background-color: #1a1e29;
  color: #eee;
  padding: 20px;
  max-width: 300px;
}

.info-card:hover {
  transform: translateY(-5px);
}

.card-title {
  white-space: nowrap;
  font-size: 1.4rem;
}
.profile-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  margin-top: 6px;
  transition: all 0.25s ease;
  background: rgba(255, 215, 0, 0.06);
  border: 1px solid rgba(255, 215, 0, 0.15);
  padding: 6px 12px;
  border-radius: 8px;
}

.profile-link:hover {
  background: rgba(255, 215, 0, 0.15);
  color: #fff;
}

.profile-link i {
  font-size: 12px;
  color: var(--gold);
}

.language-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  transform: translateY(1px);
}

.lang-btn {
  background: none;
  border: none;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  padding: 8px 12px;
  border-radius: 6px;
  transition: 0.2s ease;
}

.lang-btn i {
  font-size: 16px;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffd700;
}

.caret-icon {
  transition: transform 0.3s ease;
}

.caret-icon.rotate {
  transform: rotate(180deg);
}

.lang-menu {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 40px;
  background-color: #1c1c1c;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  min-width: 130px;
  z-index: 100;
  text-align: center;
}

.lang-menu.show {
  display: block;
}

.lang-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  padding: 8px 12px;
  font-size: 14px;
  transition: background 0.2s ease;
}

.lang-menu a img {
  width: 20px;
  height: 14px;
  border-radius: 2px;
}

.lang-menu a:hover {
  background: #2a2a2a;
  color: #ffd700;
}
