@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Playfair Display'), local('PlayfairDisplay-Regular'),
       url('https://fonts.gstatic.com/s/playfairdisplay/v29/nuFvD-vgWhiK84eNsDe3v9olm_K6f63E.woff2') format('woff2');
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local('Playfair Display Bold'), local('PlayfairDisplay-Bold'),
       url('https://fonts.gstatic.com/s/playfairdisplay/v29/nuFvD-vgWhiK84eNsDe3v9olm_K6f63E.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Inter'), local('Inter-Regular'),
       url('https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQA.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local('Inter SemiBold'), local('Inter-SemiBold'),
       url('https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQA.woff2') format('woff2');
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #f5f5f5;
  color: #1a1a2e;
  line-height: 1.6;
  font-size: 16px;
}

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

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

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

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

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

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.8;
  color: #333333;
}

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

a:hover {
  color: #1a1a2e;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.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: #1a1a2e;
}

button, .btn {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.btn-primary {
  background-color: #a98b2c;
  color: #ffffff;
  border: 2px solid #a98b2c;
}

.btn-primary:hover {
  background-color: #1a1a2e;
  border-color: #1a1a2e;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(169, 139, 44, 0.2);
}

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

.btn-secondary:hover {
  background-color: #a98b2c;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(169, 139, 44, 0.2);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

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

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

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

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

.logo .casino-icon {
  width: 36px;
  height: 36px;
  margin-right: 0.5rem;
}

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

.nav a {
  color: #ffffff;
  font-weight: 500;
  padding-bottom: 0.25rem;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
  display: block;
}

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

.nav li {
  position: relative;
}

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

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

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

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

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

.hero-subtitle {
  font-size: 1.25rem;
  color: #e0e0e0;
  margin-bottom: 2rem;
  font-weight: 300;
}

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

.section {
  padding: 5rem 1rem;
  background-color: #ffffff;
  margin-bottom: 3rem;
  position: relative;
}

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

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

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  display: inline-block;
  position: relative;
  padding-bottom: 1rem;
}

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

.card-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 #a98b2c;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image .casino-icon {
  width: 56px;
  height: 56px;
  fill: #a98b2c;
}

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

.card-title {
  margin-bottom: 0.75rem;
}

.card-text {
  font-size: 0.95rem;
  color: #555555;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.card
