:root {
  --kazino-cat-primary-color: #ff00ff;
  --kazino-cat-secondary-color: #333;
  --kazino-cat-accent-color: #9e00ff;
  --kazino-cat-text-color: #fff;
  --kazino-cat-background-dark: #0f0f1f;
  --kazino-cat-background-light: #1a1a2f;
  --kazino-cat-card-bg: #23233b;
  --kazino-cat-border-radius: 8px;
  --kazino-cat-transition: all 0.3s ease;
}

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

body.kazino-cat {
  font-family: "Arial", sans-serif;
  background: var(--kazino-cat-background-dark);
  color: var(--kazino-cat-text-color);
  line-height: 1.6;
}

.kazino-cat-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.kazino-cat h1,
.kazino-cat h2,
.kazino-cat h3 {
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--kazino-cat-text-color);
}

.kazino-cat h1 {
  font-size: 36px;
  text-align: center;
  margin: 20px 0;
}

.kazino-cat h2 {
  font-size: 28px;
  border-left: 4px solid var(--kazino-cat-primary-color);
  padding-left: 15px;
}

.kazino-cat p {
  margin-bottom: 15px;
}

.kazino-cat a {
  color: var(--kazino-cat-primary-color);
  text-decoration: none;
  transition: var(--kazino-cat-transition);
}

.kazino-cat a:hover {
  color: var(--kazino-cat-accent-color);
}

.kazino-cat ul,
.kazino-cat ol {
  margin-left: 20px;
  margin-bottom: 15px;
}

.kazino-cat img {
  max-width: 100%;
  height: auto;
  border-radius: var(--kazino-cat-border-radius);
}

.kazino-cat-section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Header */
.kazino-cat-header {
  background-color: var(--kazino-cat-background-light);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.kazino-cat-header .kazino-cat-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.kazino-cat-logo {
  width: 105px;
}

.kazino-cat-logo svg {
  width: 100%;
  height: auto;
}

.kazino-cat-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
}

.kazino-cat-nav ul li {
  margin-left: 30px;
}

.kazino-cat-nav ul li a {
  color: var(--kazino-cat-text-color);
  font-weight: 600;
  position: relative;
  padding-bottom: 5px;
}

.kazino-cat-nav ul li a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--kazino-cat-primary-color);
  transition: var(--kazino-cat-transition);
}

.kazino-cat-nav ul li a:hover:after {
  width: 100%;
}

/* Hero Section */
.kazino-cat-hero {
  background: linear-gradient(
    135deg,
    var(--kazino-cat-background-light) 0%,
    var(--kazino-cat-background-dark) 100%
  );
  padding-top: 80px;
}

/* Features Section */
.kazino-cat-features {
  background-color: var(--kazino-cat-background-light);
}

.kazino-cat table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background-color: var(--kazino-cat-card-bg);
  border-radius: var(--kazino-cat-border-radius);
  overflow: hidden;
}

.kazino-cat table td {
  padding: 12px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.kazino-cat table tr:last-child td {
  border-bottom: none;
}

.kazino-cat table tr:nth-child(odd) {
  background-color: rgba(0, 0, 0, 0.2);
}

.kazino-cat table tr:first-child {
  background-color: var(--kazino-cat-primary-color);
  color: var(--kazino-cat-text-color);
  font-weight: 600;
}

/* Games Grid */
.kazino-cat-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 30px;
  margin: 30px 0;
  justify-items: center;
}

.kazino-cat-game-card {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  transition: var(--kazino-cat-transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
}

.kazino-cat-game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.kazino-cat-game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Registration Section */
.kazino-cat-registration {
  background: linear-gradient(
    45deg,
    var(--kazino-cat-background-dark) 0%,
    var(--kazino-cat-background-light) 100%
  );
}

/* Bonuses Section */
.kazino-cat-bonuses {
  background-color: var(--kazino-cat-background-light);
}

/* Payments Section */
.kazino-cat-payments {
  background-color: var(--kazino-cat-background-dark);
}

.kazino-cat-payment-methods {
  display: flex;
  gap: 40px;
  margin: 30px 0;
}

.kazino-cat-payment-column {
  flex: 1;
  background-color: var(--kazino-cat-card-bg);
  padding: 20px;
  border-radius: var(--kazino-cat-border-radius);
}

.kazino-cat-payment-column h3 {
  color: var(--kazino-cat-primary-color);
  margin-top: 20px;
}

.kazino-cat-payment-column h3:first-child {
  margin-top: 0;
}

/* Footer */
.kazino-cat-footer {
  background-color: var(--kazino-cat-secondary-color);
  padding: 40px 0;
}

.kazino-cat-footer .kazino-cat-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.kazino-cat-footer-logo {
  width: 120px;
  margin-bottom: 20px;
}

.kazino-cat-footer-nav ul {
  display: flex;
  list-style: none;
  margin: 0 0 20px 0;
}

.kazino-cat-footer-nav ul li {
  margin: 0 15px;
}

.kazino-cat-footer-copyright {
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 992px) {
  .kazino-cat-payment-methods {
    flex-direction: column;
  }

  .kazino-cat-payment-column {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .kazino-cat-header .kazino-cat-container {
    flex-direction: column;
  }

  .kazino-cat-logo {
    margin-bottom: 15px;
  }

  .kazino-cat-nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .kazino-cat-nav ul li {
    margin: 5px 10px;
  }

  .kazino-cat h1 {
    font-size: 28px;
  }

  .kazino-cat h2 {
    font-size: 24px;
  }

  .kazino-cat-section {
    padding: 40px 0;
  }

  .kazino-cat-games-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .kazino-cat-game-card {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 576px) {
  .kazino-cat-games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .kazino-cat-game-card {
    width: 120px;
    height: 120px;
  }

  .kazino-cat-footer-nav ul {
    flex-direction: column;
    align-items: center;
  }

  .kazino-cat-footer-nav ul li {
    margin: 5px 0;
  }
}
