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

html {
  scroll-behavior: smooth;
}

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

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

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

h2 {
  font-size: 2.25rem;
  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;
  line-height: 1.8;
}

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

a:hover {
  color: #16213e;
}

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

.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.15);
}

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

.logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #a98b2c;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.85;
}

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

.nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}

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

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #a98b2c;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

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

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(169, 139, 44, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

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

.hero .tagline {
  font-size: 1.5rem;
  color: #a98b2c;
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.hero p {
  font-size: 1.125rem;
  color: #e0e0e0;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero .casino-icon {
  width: 64px;
  height: 64px;
}

.cta-button {
  display: inline-block;
  background-color: #a98b2c;
  color: #1a1a2e;
  padding: 1rem 2.5rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid #a98b2c;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-button:hover {
  background-color: transparent;
  color: #a98b2c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(169, 139, 44, 0.3);
}

.cta-button.secondary {
  background-color: transparent;
  color: #a98b2c;
  border-color: #a98b2c;
}

.cta-button.secondary:hover {
  background-color: #a98b2c;
  color: #1a1a2e;
}

.section {
  padding: 4rem 0;
  background-color: #f5f5f5;
  position: relative;
}

.section:nth-child(even) {
  background-color: #ffffff;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #a98b2c, transparent);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1.5rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #a98b2c, transparent);
}

.card {
  background-color: #ffffff;
  border-radius: 4px;
  padding: 2rem;
  border-top: 4px solid #a98b2c;
  box-shadow: 0 2px 8px rgba(26, 26, 46, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.card h3 {
  color: #1a1a2e;
  margin-top: 1rem;
}

.card p {
  color: #555;
  margin-bottom: 1rem;
}

.card a {
  color: #a98b2c;
  font-weight: 600;
  margin-top: auto;
  display: inline-block;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.card a:hover {
  border-bottom-color: #a98b2c;
}

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

.grid.three-col {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.article {
  background-color: #ffffff;
  padding: 2rem;
  border-left: 4px solid #a98b2c;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(26, 26, 46, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.article:hover {
  box-shadow: 0 6px 16px rgba(26, 26, 46, 0.12);
  transform: translateX(4px);
}

.article-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #999;
}

.article-meta span {
  display: flex;
  align-items: center;
}

.article h3 {
  color: #1a1a2e;
  margin: 0.5rem 0 1rem;
}

.article p {
  color: #555;
  margin-bottom: 1rem;
}

.article a {
  color: #a98b2c;
  font-weight: 600;
  align-self: flex-start;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.article a:hover {
  border-bottom-color: #a98b2c;
}

.footer {
  background-color: #1a1a2e;
  color: #f5f5f5;
  padding: 3rem 0 1.5rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1a1a2e, #a98b2c, #1a1a2e);
}

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

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

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: #e0e0e0;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(169, 139,
