/* style/fishing-games.css */

/* Biến màu sắc */
:root {
  --primary-color: #FFD700; /* Vàng */
  --secondary-color: #1E90FF; /* Xanh lam đậm */
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-dark: #000000;
  --background-light: #f0f0f0;
  --border-color: rgba(255, 255, 255, 0.1);
}

/* Reset cơ bản và màu nền chung */
.page-fishing-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Màu chữ sáng trên nền tối */
  background-color: var(--background-dark); /* Nền tối từ body */
  overflow-x: hidden;
}