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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #2c2c2c;
  background-color: #f8f7f4;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  line-height: 1.3;
  color: #1a1a2e;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  color: #2c2c2c;
}

a {
  color: #aa8c2c;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #1a1a2e;
}

.casino-icon {
  width: 48px;
  height: 48px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  fill: #aa8c2c;
}

header {
  background-color: #1a1a2e;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.logo {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #aa8c2c;
  letter-spacing: 1px;
}

.tagline {
  font-size: 0.7rem;
  color: #aa8c2c;
  font-style: italic;
  margin-top: 0.25rem;
  letter-spacing: 0.5px;
}

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  color: #f8f7f4;
  font-weight: 500;
  font-size: 0.95rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

nav a:hover {
  color: #aa8c2c;
  border-bottom-color: #aa8c2c;
}

.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
  color: #f8f7f4;
  padding: 4rem 1rem;
  text-align: center;
  margin-bottom: 3rem;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero .casino-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  fill: #aa8c2c;
}

.hero h1 {
  color: #f8f7f4;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.hero p {
  color: #e8e6e0;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: #aa8c2c;
  color: #1a1a2e;
  font-weight: 600;
  border: 2px solid #aa8c2c;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
}

.btn:hover {
  background-color: transparent;
  color: #aa8c2c;
}

.btn-primary {
  background-color: #aa8c2c;
  color: #1a1a2e;
}

.btn-primary:hover {
  background-color: #1a1a2e;
  color: #aa8c2c;
  border-color: #aa8c2c;
}

.btn-secondary {
  background-color: transparent;
  color: #aa8c2c;
  border-color: #aa8c2c;
}

.btn-secondary:hover {
  background-color: #aa8c2c;
  color: #1a1a2e;
}

.btn:focus {
  outline: 2px solid #aa8c2c;
  outline-offset: 2px;
}

button {
  font-family: 'Source Sans Pro', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 3rem 1rem;
  margin-bottom: 2rem;
}

.section h2 {
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #1a1a2e, #aa8c2c, #1a1a2e);
  border-radius: 2px;
}

.section-dark {
  background-color: #16213e;
  color: #f8f7f4;
}

.section-dark h2, .section-dark h3 {
  color: #f8f7f4;
}

.section-dark p {
  color: #e8e6e0;
}

.card {
  background-color: #fff;
  border-radius: 6px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-top: 4px solid #aa8c2c;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  fill: #aa8c2c;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.article {
  background-color: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.article:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.article-header {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 2rem 1.5rem;
  color: #f8f7f4;
  border-top: 4px solid #aa8c2c;
  text-align: center;
}

.article-header h3 {
  color: #f8f7f4;
  margin-bottom: 0.5rem;
}

.article-meta {
  font-size: 0.85rem;
  color: #aa8c2c;
  margin-bottom: 0.75rem;
}

.article-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.article p {
  margin-bottom: 1rem;
  color: #2c2c2c;
  flex-grow: 1;
}

.article .btn {
  align-self: flex-start;
  margin-top: auto;
}

footer {
  background-color: #1a1a2e;
  color: #e8e6e0;
  padding: 3rem 1rem 1.5rem;
  border-top: 3px solid;
  border-image: linear-gradient(90deg, #1a1a2e, #aa8c2c, #1a1a2e) 0 0 1 0;
}

.footer {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: #aa8c2c;
  margin-bottom: 1rem;
}

.footer-section a {
  display: block;
  margin-bottom: 0.5rem;
  color: #e8e6e0;
}

.footer-section a:hover {
  color: #aa8c2c;
}

.footer-bottom {
  border-top: 1px solid rgba(170, 140, 44, 0.2);
  padding-top: 2rem;
  text-align: center;
  color: #999;
  font-size: 0.9rem;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  background-color: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

th {
  background-color: #1a1a2e;
  color
