  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
* + * {
  margin-top: 0.9em;
}

        body {
            font-family: Arial, sans-serif;
            background-color: #333;
            color: white;
        }

        header {
            background-color: #cc3b3b;
            padding: 20px;
            text-align: center;
        }

        header h1 {
            color: #fff;
            font-size: 24px;
            font-weight: bold;
        }

        .description {
            padding: 20px;
            text-align: center;
        }

        .table-container {
            display: flex;
            justify-content: center;
            margin: 20px 0;
        }

        .custom-table {
            width: 80%;
            display: table;
            background-color: #444;
            border-spacing: 10px;
            border-collapse: separate;
        }

        .custom-row {
            display: table-row;
        }

        .custom-cell {
            display: table-cell;
            padding: 10px;
            background-color: #444;
            color: white;
            text-align: center;
            border-radius: 10px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
            vertical-align: middle;
        }

.intro-text {
  max-width: 800px;
  margin: 20px auto;
  padding: 10px 20px;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  text-align: center;
}

        .custom-cell.img-cell {
            width: 150px;
        }

        .custom-cell img {
            display: block;
            width: 150px;
            height: 75px;
        }

        .rating {
            color: gold;
            font-size: 20px;
        }

        .button {
            padding: 14px 28px; /* Уменьшил размеры кнопки на 30% */
            background-color: yellow;
            color: black;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            text-decoration: none;
            font-size: 16px;
        }

        .content {
            padding: 20px;
            text-align: justify;
            background-color: #444;
            margin: 20px;
            border-radius: 10px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
        }

        footer {
            background-color: #cc3b3b;
            text-align: center;
            padding: 20px;
        }

        footer p {
            color: #fff;
            font-size: 18px;
            font-weight: bold;
        }
.crypto-icons {
    display: flex;
    flex-wrap: wrap; /* перенос если много иконок */
    justify-content: flex-start;
    align-items: center;
    gap: 4px; /* чуть больше, чтобы не слипались */
    margin-top: 6px;
}

.crypto-icon {
    width: 14px;
    height: 14px;
    display: inline-block;
    vertical-align: middle;
}
.casino {
    padding: 15px;
    border: 1px solid #ccc;
}
nav.navbar {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: white;
  margin: 4px 0;
}

.menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

.menu li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 12px;
  transition: background 0.3s;
}

.menu li a:hover {
  background: rgba(255,255,255,0.2);
  border-radius: 5px;
}
/* Контейнер с прокруткой */
.scrollable-table-container {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 20px 0;
}

/* Для таблицы внутри контейнера с прокруткой */
.scrollable-table-container .custom-table {
  width: 800px; /* фиксированная ширина, больше ширины экрана */
  background-color: #444;
  border-spacing: 10px;
  border-collapse: separate;
}

.scrollable-table-container .custom-row {
  display: table-row;
}

.scrollable-table-container .custom-cell {
  display: table-cell;
  padding: 10px;
  background-color: #444;
  color: white;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  vertical-align: middle;
  white-space: nowrap;
}

.scrollable-table-container .custom-cell.img-cell {
  width: 150px;
}

.scrollable-table-container .custom-cell img {
  display: block;
  width: 150px;
  height: 75px;
}

.scrollable-table-container .rating {
  color: gold;
  font-size: 20px;
}

.scrollable-table-container .button {
  padding: 14px 28px;
  background-color: yellow;
  color: black;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  font-size: 16px;
}
.spoiler {
    margin-bottom: 1em;
  }

  .spoiler summary {
    cursor: pointer;
    font-weight: bold;
    background: #222;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
  }

  .spoiler[open] summary {
    background: #444;
  }

  .spoiler a {
    display: block;
    padding: 5px 15px;
    text-decoration: none;
    color: #ddd;
  }

  .spoiler a:hover {
    text-decoration: underline;
    color: #fff;
  }
        @media (max-width: 768px) {
            .custom-table {
                width: 100%;
            }

            .custom-cell {
                padding: 5px;
            }

            .content {
                margin: 10px;
            }
.custom-cell.img-cell img {
        width: 100px;
        height: auto;
    }
.button {
        padding: 1px 20px; /* уменьшено на 5% от 14px 28px */
        font-size: 17px;      /* уменьшено на 5% от 16px */
    }
.crypto-icon {
        width: 12px;
        height: 12px;
    }

    .crypto-icons {
        gap: 2px;
    }

  .menu {
    display: none;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    right: 10px;
    top: 60px;
    background-color: #cc3b3b;
    padding: 15px;
    border-radius: 10px;
  }

  .menu.show {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }
.responsive-img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 8px 0;
  display: block;
}
.scrollable-table-container .custom-table {
    width: 700px; /* сохраняем прокрутку */
  }

  .scrollable-table-container .custom-cell {
    padding: 6px;
  }

  .scrollable-table-container .custom-cell.img-cell img {
    width: 100px;
    height: auto;
  }

  .scrollable-table-container .button {
    padding: 6px 20px;
    font-size: 14px;
  }
  * + * {
    margin-top: 0.5em;
  }
}
