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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #1a1a2e;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -1px;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

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

p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

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

a:hover {
  color: #1a1a2e;
}

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

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

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo h1 {
  font-size: 1.75rem;
  color: #aa8c2c;
  margin: 0;
}

.logo p {
  margin: 0;
  color: #f8f7f3;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

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

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

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

section.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 50%, #1a1a2e 100%);
  color: #f8f7f3;
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

section.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(170, 140, 44, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(170, 140, 44, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

section.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #f8f7f3;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #e8e8e8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero .casino-icon {
  width: 64px;
  height: 64px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
  color: #aa8c2c;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

button, .btn {
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Source Sans Pro', sans-serif;
}

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

.btn-primary:hover {
  background-color: #d4a85f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(170, 140, 44, 0.3);
}

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

.btn-secondary:hover {
  background-color: #aa8c2c;
  color: #1a1a2e;
  transform: translateY(-2px);
}

section.section {
  padding: 4rem 0;
  position: relative;
}

section.section.alt-bg {
  background-color: #f1efea;
}

.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #aa8c2c, transparent);
  margin: 3rem 0;
}

section.section::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(to right, transparent, #aa8c2c 20%, #aa8c2c 80%, transparent);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.section h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: #1a1a2e;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: #2c2c2c;
}

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

.card {
  background-color: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #aa8c2c;
}

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

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

.card-header {
  padding: 2rem;
  border-bottom: 1px solid #f1efea;
  display: flex;
  align-items: center;
}

.card-content {
  padding: 2rem;
}

.card h3 {
  margin: 0;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.card p {
  margin-bottom: 1.5rem;
  color: #2c2c2c;
}

.card-footer {
  padding: 0 2rem 2rem;
}

.card .btn {
  display: inline-block;
  width: 100%;
  text-align: center;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.article {
  background-color: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #aa8c2c;
  display: flex;
  flex-direction: column;
}

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

.article-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aa8c2c;
  font-size: 3rem;
}

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

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

.article h3 {
  margin-bottom: 1rem;
  color: #1a1a2e;
}

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

.article-link {
  color: #aa8c2c;
  font-weight: 600;
  display: inline-block;
  margin-top: auto;
}

.article-link:hover {
  color: #1a1a2e;
}

footer.footer {
  background-color: #1a1a2e;
  color: #f8f7f3;
  padding: 4rem 0 2rem;
  margin-top: 4rem;
  position: relative;
}

footer.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, #1
