:root {
  --primary-color: #ff0098;
  --secondary-color: #000000;
  --accent-color: #000000;
  --text-light: #ffffff;
  --text-dark: #000000;
  --border-color: #e0e0e0;
  --gradient-bg: linear-gradient(135deg, #ff0098 0%, #f71eab 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Nunito", sans-serif;
  background-color: var(--secondary-color);
  color: var(--text-light);
  line-height: 1.6;
}

.main-header {
  background: var(--secondary-color);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand img {
  width: 160px;
}

.navbar-collapse {
  flex-grow: unset;
  flex-basis: unset;
}

.navbar-nav .nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
}

.btn-primary {
  background: var(--gradient-bg);
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.hero-section {
  background: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    var(--accent-color) 100%
  );
  padding: 100px 0;
  text-align: center;
}

.hero-title {
  font-family: "Comfortaa", cursive;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: var(--gradient-bg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.stats-section {
  background: rgba(255, 255, 255, 0.05);
  padding: 60px 0;
}

.stat-card {
  text-align: center;
  padding: 30px 20px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.8;
}

.games-section {
  padding: 80px 0;
}

.section-title {
  font-family: "Comfortaa", cursive;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  color: var(--text-light);
}

.yoo-filter {
  background: rgba(255, 107, 53, 0.1);
  border: 2px solid var(--primary-color);
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 40px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.filter-group {
  display: flex;
  flex-direction: column;
  min-width: 150px;
}

.filter-label {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 0.9rem;
}

.filter-select {
  background: var(--accent-color);
  border: 1px solid var(--primary-color);
  color: var(--text-light);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
}

.search-box {
  flex: 1;
  min-width: 200px;
}

.search-input {
  background: var(--accent-color);
  border: 1px solid var(--primary-color);
  color: var(--text-light);
  padding: 10px 15px;
  border-radius: 8px;
  width: 100%;
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.game-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  justify-content: center;
}

.category-btn {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--text-light);
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.category-btn:hover,
.category-btn.active {
  background: var(--primary-color);
  color: white;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.game-card {
  background: var(--accent-color);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

.game-image {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 9/12;
}

.game-info {
  padding: 15px;
}

.game-title {
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-light);
}

.game-provider {
  color: var(--primary-color);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.game-rtp {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-bottom: 10px;
}

.play-btn {
  background: var(--gradient-bg);
  border: none;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  width: 100%;
  transition: transform 0.3s ease;
}

.play-btn:hover {
  transform: scale(1.05);
}

.features-section {
  background: rgba(255, 255, 255, 0.05);
  padding: 80px 0;
}

.feature-card {
  background: var(--accent-color);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: transform 0.3s ease;
}

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

.feature-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature-title {
  font-family: "Comfortaa", cursive;
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-light);
}

.feature-description {
  opacity: 0.9;
  line-height: 1.6;
}

.providers-section {
  padding: 80px 0;
}

.providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.provider-card {
  background: var(--accent-color);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: transform 0.3s ease;
}

.provider-card:hover {
  transform: scale(1.05);
}

.provider-name {
  font-weight: 600;
  margin-bottom: 5px;
}

.provider-games {
  font-size: 0.8rem;
  opacity: 0.7;
}

.footer {
  background: var(--accent-color);
  border-top: 1px solid rgba(255, 107, 53, 0.2);
  padding: 60px 0 30px;
}

.footer-section {
  margin-bottom: 30px;
}

.footer-title {
  font-family: "Comfortaa", cursive;
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.footer-logo {
    display: block;
    margin-bottom: 15px;
}

.footer-logo img {
    width: 160px;
}

.footer-link {
  color: var(--text-light);
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-link:hover {
  opacity: 1;
  color: var(--primary-color);
}

.payment-methods {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.payment-icon {
  width: 40px;
  height: 30px;
  background: white;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-dark);
}

.license-info {
  background: rgba(255, 107, 53, 0.1);
  padding: 20px;
  border-radius: 10px;
  margin-top: 30px;
  border: 1px solid var(--primary-color);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 107, 53, 0.2);
  opacity: 0.7;
}

.language-selector {
  position: relative;
}

.language-dropdown {
  background: var(--accent-color);
  border: 1px solid var(--primary-color);
  color: var(--text-light);
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
}

.currency-display {
  color: var(--primary-color);
  font-weight: 600;
  margin-left: 15px;
}

.live-chat-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--gradient-bg);
  color: white;
  border: none;
  padding: 15px 20px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
  z-index: 1000;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.live-chat-btn:hover {
  transform: scale(1.05);
}

.responsible-gaming {
  margin-top: 20px;
  opacity: 0.8;
}

.responsible-gaming a {
  color: var(--primary-color);
  text-decoration: none;
}

.responsible-gaming a:hover {
  text-decoration: underline;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
table th,
table td {
  border: 1px solid var(--border-color);
  padding: 10px;
  text-align: left;
}
table thead tr th {
  color: #ffffff;
  background-color: var(--primary-color);
}

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

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .filter-row {
    flex-direction: column;
    align-items: stretch;
  }

  .games-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
  }

  .providers-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
  }

  .navbar-brand img, .footer-logo img {
    width: 100px;
  }

  .navbar-nav .nav-link {
    margin: 0;
    font-size: 14px;
  }

  .navbar .btn {
    font-size: 12px;
    padding: 6px 12px;
  }
}
@media (max-width: 991px) {
    .details-block table {
        display: inline-block;
    	vertical-align: top;
    	max-width: 100%;
    	overflow-x: auto;
    	white-space: nowrap;
    	-webkit-overflow-scrolling: touch;
    }
}