/* Загальні стилі */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f5f5f5;
  color: #333;
}

a {
  text-decoration: none;
  color: #1a73e8;
}

a:hover {
  color: #0b4da0;
}

/* Header */
header {
  background: #111;
  color: #fff;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  font-size: 24px;
  font-weight: bold;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.hero {
  text-align: center;
  padding: 100px 20px;
  background: url('images/banner.png') no-repeat center center;
  background-size: cover;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 20px;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.hero p {
  font-size: 20px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Casino Cards */
.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 30px;
}

.casino-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  width: 220px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.casino-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.casino-card img {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}

.casino-card h2 {
  margin: 10px 0;
}

.casino-card p {
  margin: 5px 0;
}

/* Slots Table */
.slots-table {
  padding: 30px;
  overflow-x: auto;
}

.slots-table table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.slots-table th, .slots-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.slots-table th {
  background: #1a73e8;
  color: #fff;
}

.slots-table tr:hover {
  background: #f1f1f1;
}
/* Content Section */
.content {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
  line-height: 1.6;
  color: #333;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.content h1 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #1a73e8;
}

.content h2 {
  margin-top: 30px;
  font-size: 22px;
  color: #0b4da0;
}

.content h3 {
  margin-top: 20px;
  font-size: 18px;
  color: #333;
}

.content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.content li {
  margin-bottom: 10px;
}


/* Footer */
footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 30px;
}

/* Адаптивність */
@media (max-width: 768px) {
  .card-container {
    flex-direction: column;
    align-items: center;
  }
}
