/*
 Theme Name: Multibetting
 Theme URI: https://bets-betting.com
 Author: Bets-Betting.com Team
 Author URI: Bets-Betting.com Team
 Description: A custom WordPress theme for bets-betting.com, designed for sports betting rankings and reviews with a modern, responsive, and SEO-friendly layout.
 Version: 1.0
 License: GNU General Public License v2 or later
 License URI: http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain: bets-betting.com
 Tags: betting, casino online, ranking, reviews, responsive, bet
*/

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Roboto:wght@400;700;900&display=swap');

:root {
  --primary-color: #121212;
  --accent-color: #0A3D62;
  --text-color: #FF8C00;
  --bright-blue: #1E90FF;
  --green: #00ff39;
  --bg-color: #000000;
  --card-bg: #08385c8f;
  --button-bg: #0A3D62;
  --neon-glow: #00FFFF;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--bg-color);
  color: #F5F5F5;
  line-height: 1.6;
}

h1 {
  font-size: 40px;
  font-family: 'Anton', sans-serif;
  color: var(--text-color);
  margin-bottom: 20px;
  text-align: center;
}

h2 {
  font-size: 36px;
  font-family: 'Anton', sans-serif;
  color: var(--text-color);
  margin-bottom: 20px;
  text-align: center;
}

h3 {
  font-size: 32px;
  font-family: cursive;
  color: #008c25;
  margin-bottom: 20px;
  text-align: center;
}

.container, .content-container {
max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
}
.containeres {
max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
}
header {
  background: #000000;
  padding: 10px 0;
  position: relative;
  z-index: 1000;
  border-bottom: 2px solid var(--accent-color);
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Anton', sans-serif;
  color: #F5F5F5;
  text-transform: uppercase;
  gap: 5px;
  margin-top: -5px;
}

.logo a {
  text-decoration: none;
  color: #F5F5F5;
}

.logo span {
  display: inline-block;
  font-size: 63px;
  opacity: 0;
}

.logo .bets {
  animation: bounceIn 0.8s ease-in-out forwards;
  color: #F5F5F5;
}

.logo .dash {
  color: var(--text-color);
  animation: bounceIn 0.8s 0.2s ease-in-out forwards;
}

.logo .betting {
  animation: bounceIn 0.8s 0.4s ease-in-out forwards;
  color: #F5F5F5;
}

.logo .com {
  color: var(--text-color);
  animation: bounceIn 0.8s 0.6s ease-in-out forwards;
}

.main-navigation {
  display: block;
}

.site-main {
  min-height: 450px;
}

.main-nav {
  display: flex;
  list-style: none;
  gap: 30px;
  justify-content: center;
  margin-top: 10px;
}

.main-nav li {
  position: relative;
}

.main-nav a {
  color: var(--green);
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: color 0.5s ease;
  position: relative;
  z-index: 1002;
}

.main-nav a:hover {
  color: var(--bright-blue);
}

.main-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--bright-blue);
  transition: width 0.5s ease;
  z-index: 1003;
}

.main-nav a:hover::after {
  width: 100%;
}

.main-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #040404eb;
  min-width: 200px;
  z-index: 1001;
  list-style: none;
  padding: 10px 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.7s ease, max-height 0.7s ease;
}

.main-nav li:hover .sub-menu {
  display: block;
  opacity: 1;
  max-height: 300px;
}

.main-nav .sub-menu li {
  margin: 0;
}

.main-nav .sub-menu a {
  padding: 10px 20px;
  display: block;
  color: var(--bright-blue);
  font-size: 16px;
  transition: color 0.5s ease;
  position: relative;
  z-index: 1002;
}

.main-nav .sub-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 4px;
  left: 20px;
  background-color: var(--text-color);
  transition: width 0.5s ease;
  z-index: 1003;
}

.main-nav .sub-menu a:hover::after {
  width: calc(100% - 40px);
}

.main-nav .sub-menu a:hover {
  color: var(--text-color);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 28px;
  cursor: pointer;
}

@keyframes bounceIn {
  0% { opacity: 0; transform: scale(0.3); }
  50% { opacity: 1; transform: scale(1.05); }
  70% { transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 5px var(--neon-glow), 0 0 10px rgba(0, 255, 255, 0.3); }
  50% { box-shadow: 0 0 15px var(--neon-glow), 0 0 25px rgba(0, 255, 255, 0.5); }
  100% { box-shadow: 0 0 5px var(--neon-glow), 0 0 10px rgba(0, 255, 255, 0.3); }
}

@keyframes slideIn {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.rating-section {
  padding: 60px 0;
  position: relative;
  z-index: 10;
}

.section-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-color);
  font-family: 'Anton', sans-serif;
}

.rating-list {
  list-style: none;
  display: grid;
  gap: 25px;
}

.rating-item {
  display: flex;
  background: #002038e6;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid var(--text-color);
}

.rating-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 10px var(--accent-color), 0 0 20px rgba(10, 61, 98, 0.5);
}

.rating-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rating-value {
  color: #F5F5F5;
  font-size: 18px;
  margin-bottom: 2px;
}

.rating-stars svg {
  width: 22px;
  height: 22px;
  fill: #333;
}

.rating-stars .full {
  fill: var(--text-color);
}

.partner-number {
  background: var(--accent-color);
  color: #F5F5F5;
  font-size: 28px;
  font-weight: bold;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-card {
  display: flex;
  flex: 1;
  padding: 25px;
  align-items: stretch;
}

.partner-thumbnail {
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-thumbnail img {
  width: 350px;
  height: 250px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
}

.partner-info {
  padding: 18px 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.partner-info-item {
  font-size: 14px;
  line-height: 1;
}

.label {
  font-weight: bold;
  color: var(--bright-blue);
}

.partner-info-item .value {
  color: var(--green);
}

.partner-right-column {
  flex: 2;
  padding-left: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.partner-title {
  margin-bottom: 12px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.partner-title a {
  font-size: 28px;
  color: var(--bright-blue);
  text-decoration: none;
  font-family: 'Anton', sans-serif;
}

.partner-title a:hover,
.partner-title a:focus {
  color: var(--text-color);
  outline-offset: 2px;
}

.partner-description {
  font-size: 15px;
  margin-bottom: 12px;
  flex-grow: 1;
}

.partner-categories {
  color: var(--bright-blue);
}

.partner-buttons {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  position: relative;
  z-index: 10;
}

.partner-btn a {
  display: block;
  padding: 11px 71px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  background: linear-gradient(45deg, #08385C, var(--accent-color));
  color: #F5F5F5;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1px solid var(--text-color);
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.partner-btn a:focus {
  animation: pulseGlow 1.2s ease-in-out infinite;
  transform: translateY(-2px);
}

.partner-btn a:hover::before {
  left: 100%;
}

.partner-btn a:hover {
  transform: translateY(-2px);
  animation: pulseGlow 1.2s ease-in-out infinite;
}

.partner-btn a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.partner-btn a:hover::before,
.partner-btn a:focus::before {
  left: 100%;
}

.partner-btn.review a {
  background: linear-gradient(45deg, #005016, #00a32a);
  border: 1px solid var(--text-color);
  color: #F5F5F5;
}

.partner-btn.review a:hover,
.partner-btn.review a:focus {
  background: linear-gradient(45deg, #006218, #00b32c);
  transform: translateY(-2px);
}

.seo-text {
  padding: 40px 0;
  background: #000000;
  text-align: center;
}

.seo-text p {
  max-width: 85%;
  margin: 0 auto;
  font-size: 17px;
  color: #F5F5F5;
  text-align: justify;
}

footer {
  background: var(--primary-color);
  padding: 50px 0 25px;
  position: relative;
  z-index: 1000;
  border-top: 2px solid var(--accent-color);
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: space-between;
}

.footer-logo {
  flex: 0 0 auto;
  max-width: 200px;
}

.footer-logo h3 {
  font-size: 26px;
  color: var(--bright-blue);
  font-family: 'Anton', sans-serif;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  flex: 1;
}

.footer-column {
  flex: 1;
  min-width: 150px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 15px;
}

.footer-column-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column h3 {
  font-size: 20px;
  margin-bottom: 10px;
  text-align: center;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.footer-column a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 15px;
}

.footer-column a:hover,
.footer-column a:focus {
  color: var(--bright-blue);
}

.footer-bottom {
  text-align: center;
  margin-top: 25px;
  border-top: 1px solid #2a2a2a;
  padding-top: 25px;
}

.language-switcher {
  margin: 15px 0;
}

.language-switcher select {
  background: var(--accent-color);
  color: #F5F5F5;
  border: 1px solid var(--text-color);
  border-radius: 5px;
  padding: 8px 15px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.language-switcher select:hover,
.language-switcher select:focus {
  background: var(--bright-blue);
  border-color: var(--neon-glow);
  box-shadow: 0 0 5px var(--neon-glow);
}

.social-links a {
  margin: 0 12px;
  color: var(--text-color);
  text-decoration: none;
}

.social-links a:hover,
.social-links a:focus {
  color: var(--bright-blue);
  outline: 2px solid var(--neon-glow);
  outline-offset: 2px;
}

.betting-hero {
  background-size: cover;
  background-position: center;
  padding: 10px 0;
  position: relative;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.betting-title {
  font-family: 'Anton', sans-serif;
  font-size: 40px;
  color: var(--bright-blue);
  text-align: center;
  margin-bottom: 15px;
}

.advantages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.advantage-card {
  background: var(--card-bg);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  color: var(--text-color);
}

.advantage-card i {
  font-size: 30px;
  color: var(--bright-blue);
  margin-bottom: 10px;
}

.advantage-text--large { font-size: 18px; }
.advantage-text--medium { font-size: 16px; }
.advantage-text--small { font-size: 14px; }

.betting-features-section {
  padding: 50px 0;
}

.betting-features {
  list-style: none;
  display: grid;
  gap: 15px;
}

.betting-features li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.betting-features i {
  font-size: 20px;
  color: var(--bright-blue);
}

.cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(45deg, var(--accent-color), #4682B4);
  color: #F5F5F5;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600 Isla;
}

.cta-button:hover,
.cta-button:focus {
  background: linear-gradient(45deg, #4682B4, var(--accent-color));
  transform: translateY(-2px);
  outline: 2px solid var(--neon-glow);
  outline-offset: 2px;
}

.divider {
  height: 3px;
  background: var(--accent-color);
  margin: 0 auto;
  width: 100%;
  max-width: none;
  position: relative;
  overflow: hidden;
}

.divider::before,
.divider::after {
  content: '';
  position: absolute;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
}

.divider::before {
  left: 0;
  border-width: 1.5px 0 1.5px 10px;
  border-color: transparent transparent transparent var(--accent-color);
}

.divider::after {
  right: 0;
  border-width: 1.5px 10px 1.5px 0;
  border-color: transparent var(--accent-color) transparent transparent;
}

.page-content h2 {
  font-size: 28px;
  color: var(--bright-blue);
  margin-bottom: 20px;
}

.page-content p {
  font-size: 16px;
  margin-bottom: 20px;
}

.hero {
	margin: auto;
  position: relative;
  z-index: -1;
  padding: 100px 0 0;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  min-height: 600px;
  overflow: hidden;
	max-width: 1280px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.7) 70%);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: 'Anton', sans-serif;
  font-size: 4rem;
  color: var(--bright-blue);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);
}

.slogan {
  font-family: 'Roboto', sans-serif;
  font-size: 2rem;
  font-weight: bold;
  color: var(--green);
  margin: 0.5rem auto;
  padding: 5px 10px;
  border-radius: 5px;
  display: block;
  max-width: fit-content;
}

.slogan span {
  font-size: 2rem;
  margin-right: 5px;
  color: var(--text-color);
}

.rating-label {
  font-family: 'Roboto', sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--bright-blue);
  margin-top: 20px;
  margin-bottom: 5px;
  position: relative;
  z-index: 2;
}

.rating-stars {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin: 0.5rem 0;
  position: relative;
  z-index: 2;
}

.rating-star {
  width: 22px;
  height: 22px;
  fill: #333;
}

.rating-star.full {
  fill: #FFD700;
}

.rating-stars span {
  font-size: 1.25rem;
  color: var(--text-color);
}

.btn-glow-wrapper {
    display: flex
;
    justify-content: center;
    margin-top: -30px;
    position: relative;
    z-index: 3;
    margin-bottom: 23px;
}

.btn-glow {
  display: inline-block;
  padding: 11px 80px;
  background: linear-gradient(90deg, var(--accent-color), #4682B4);
  color: #F5F5F5;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: bold;
  border-radius: 10px;
  border: 1px solid var(--neon-glow);
  box-shadow: 0 0 10px var(--neon-glow);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 3;
  overflow: hidden;
  animation: pulseGlow 1.5s infinite ease-in-out;
}

.btn-glow:hover,
.btn-glow:focus {
  background: linear-gradient(90deg, #4682B4, var(--accent-color));
  box-shadow: 0 0 20px var(--neon-glow), 0 0 30px rgba(0, 255, 255, 0.5);
  transform: translateY(-2px);
  animation: none;
}

.btn-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-glow:hover::before,
.btn-glow:focus::before {
  left: 100%;
}

.betting-content {
  padding: 20px 0 80px;
  background: var(--bg-color);
  position: relative;
  z-index: 10;
  text-align: center;
  visibility: visible !important;
}

.betting-content h2 {
  font-family: 'Anton', sans-serif;
  font-size: 2.5rem;
  color: var(--bright-blue);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.betting-content p.main {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: #F5F5F5;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.betting-content p {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.betting-content ul {
  list-style: none;
  margin-bottom: 1.5rem;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.betting-content ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.betting-content ul li i {
  font-size: 1.2rem;
}

.betting-content ul li i.fa-check {
  color: var(--bright-blue);
}

.betting-content ul li i.fa-times {
  color: #FF4500;
}

.txtcontent {
  margin: 0 auto;
  padding: 40px 20px;
  background: var(--primary-color);
  text-align: justify;
  position: relative;
  z-index: 100;
  visibility: visible !important;
	width: 85%;
}

.txtcontent h2 {
  text-align: center;
  color: var(--bright-blue);
  margin-bottom: 20px;
}

.txtcontent p {
  font-size: 16px;
  color: #F5F5F5;
  margin-bottom: 20px;
}

ol, ul {
  box-sizing: border-box;
  text-align: center;
}

#particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

#hero-particles {
  display: none;
}

.betting-content,
.betting-content ~ *,
.txtcontent,
.txtcontent ~ *,
.content-container {
  position: relative;
  z-index: 10;
  background: var(--bg-color);
}

@media (min-width: 769px) {
  .main-navigation {
    display: block !important;
  }
  .main-nav {
    display: flex !important;
  }
  .partner-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
  }
  .partner-title {
    margin-bottom: 12px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container, .content-container {
    max-width: 960px;
  }
  .partner-thumbnail img {
    width: 250px;
    height: 180px;
  }
  .partner-btn a {
    padding: 10px 50px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 28px;
  }
  .logo span {
    font-size: 40px;
  }
  header {
    border-bottom: 2px solid var(--accent-color);
  }
  .menu-toggle {
    display: block;
    position: absolute;
    top: 20px;
    right: 15px;
  }
  .main-navigation {
    display: none;
    width: 100%;
  }
  .main-navigation.active {
    display: block;
    animation: slideIn 0.3s ease-out;
  }
  .main-nav {
    flex-direction: column;
    text-align: center;
    margin-top: 10px;
  }
  .main-nav .sub-menu {
    position: static;
    transform: none;
    width: 100%;
  }
  .rating-section {
    padding: 0;
  }
  .section-title {
    font-size: 31px;
    color: var(--text-color);
  }
  .rating-item {
    flex-direction: column;
  }
  .partner-number {
    width: 100%;
    text-align: center;
    padding: 0px 0;
    order: -3;
  }
  .partner-card {
    flex-direction: column;
    align-items: center;
    position: relative;
  }
  .partner-title {
    order: -2 !important;
    width: 100%;
    text-align: center;
    margin: 10px 0 15px 0;
    position: relative;
    z-index: 3;
  }
  .partner-thumbnail {
    width: 100%;
    order: -1;
    z-index: 1;
  }
  .partner-thumbnail img {
    width: 100%;
    max-width: 350px;
    height: 250px;
    margin: 0 auto;
    display: block;
  }
  .partner-info {
    padding: 10px;
    width: 100%;
    text-align: center;
    order: 1;
  }
  .partner-right-column {
    padding: 10px;
    width: 100%;
    text-align: center;
    order: 2;
    position: relative;
  }
  .partner-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
  .partner-btn a {
    padding: 10px 40px;
  }
  .hero {
    padding: 50px 0 0;
    min-height: 300px;
    background-size: cover;
    background-position: center;   
	
    margin: auto;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .slogan {
    font-size: 1.5rem;
  }
  .slogan span {
    font-size: 1.5rem;
  }
  .rating-stars span {
    font-size: 1rem;
  }
  .btn-glow-wrapper {
    margin-top: -60px;
  }
  .btn-glow {
    padding: 11px 40px;
    font-size: 18px;
  }
  .betting-content {
    padding: 10px 0 40px;
  }
  .betting-content h2 {
    font-size: 2rem;
  }
  .betting-content p,
  .betting-content ul li {
    font-size: 0.9rem;
  }
  #particles {
    height: 100%;
  }
  #hero-particles {
    display: none;
  }
  .language-switcher select {
    width: 100%;
    max-width: 200px;
  }
}

.rating-star.full {
  fill: #FFD700;
}

.rating-star.empty {
  fill: #D3D3D3;
}

strong {
  color: #008c25;
}

.tight {
  text-align: justify;
}