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

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

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #f5f5f5;
  color: #1a1a2e;
  line-height: 1.6;
  letter-spacing: 0.3px;
}

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: 3.5rem;
  letter-spacing: 1px;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: 0.8px;
}

h3 {
  font-size: 1.75rem;
  letter-spacing: 0.5px;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #2a2a3e;
}

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

a:hover {
  color: #c9a83c;
}

.casino-icon {
  width: 48px;
  height: 48px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  fill: #a98b2c;
  transition: fill 0.3s ease;
}

.casino-icon:hover {
  fill: #c9a83c;
}

button, .btn {
  display: inline-block;
  padding: 12px 32px;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: #a98b2c;
  color: #ffffff;
}

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

.btn-secondary {
  background-color: #16213e;
  color: #ffffff;
}

.btn-secondary:hover {
  background-color: #1a1a2e;
  box-shadow: 0 4px 12px rgba(26, 26, 46, 0.3);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: #a98b2c;
  border: 2px solid #a98b2c;
}

.btn-outline:hover {
  background-color: #a98b2c;
  color: #ffffff;
}

.section-divider {
  height: 4px;
  background: linear-gradient(90deg, #1a1a2e 0%, #a98b2c 50%, #1a1a2e 100%);
  margin: 3rem 0;
}

.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-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #a98b2c;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.logo .casino-icon {
  width: 40px;
  height: 40px;
  margin-right: 12px;
}

.tagline {
  font-family: 'Roboto', sans-serif;
  font-size: 0.75rem;
  color: #b8b8d0;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 300;
  display: none;
}

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

.nav a {
  color: #ffffff;
  font-weight: 500;
  font-size: 0.95rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s ease;
  letter-spacing: 0.3px;
}

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

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

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #a98b2c;
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

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

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

.hero .btn {
  margin: 0.5rem;
}

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

.section {
  padding: 4rem 1rem;
  background-color: #ffffff;
  margin-bottom: 2rem;
}

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

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

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

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

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

.card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.card-content {
  padding: 1.5rem;
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
}

.card-meta {
  font-size: 0.875rem;
  color: #888888;
  margin-bottom: 1rem;
}

.card-description {
  color: #2a2a3e;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  color: #a98b2c;
  font-weight: 600;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.card-link:hover {
  border-bottom-color: #a98b2c;
  padding-left: 4px;
}

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

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

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