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

:root {
  --primary: #1a1a2e;
  --secondary: #16213e;
  --accent: #ab8e2c;
  --background: #f8f9fa;
  --text: #0f3460;
  --light-gray: #e8eaed;
  --white: #ffffff;
  --shadow: 0 2px 8px rgba(15, 52, 96, 0.1);
  --shadow-hover: 0 8px 16px rgba(15, 52, 96, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background-color: var(--background);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'IBM Plex Serif', Georgia, serif;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

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

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

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

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

p {
  margin-bottom: 1rem;
  color: var(--text);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary);
}

/* Header Styles */
.header {
  background-color: var(--primary);
  color: var(--white);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

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

.logo {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tagline {
  font-size: 0.75rem;
  color: var(--accent);
  font-style: italic;
  margin-top: 0.25rem;
}

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

.nav a {
  color: var(--white);
  font-weight: 500;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
  display: inline-block;
}

.nav a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 4rem 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 top right, rgba(171, 142, 44, 0.1), transparent);
  pointer-events: none;
}

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

.hero .casino-icon {
  width: 64px;
  height: 64px;
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Button Styles */
.button, button {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
  font-family: 'IBM Plex Sans', sans-serif;
}

.button-primary {
  background-color: var(--accent);
  color: var(--primary);
}

.button-primary:hover {
  background-color: #93753d;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(171, 142, 44, 0.3);
}

.button-secondary {
  background-color: var(--white);
  color: var(--primary);
  border: 2px solid var(--accent);
}

.button-secondary:hover {
  background-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.button-outline {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.button-outline:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
}

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

/* Section Styles */
.section {
  padding: 4rem 1rem;
  background-color: var(--white);
  margin-bottom: 2rem;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--primary), var(--accent)) 1;
}

.section-dark {
  background-color: var(--primary);
  color: var(--white);
}

.section-dark h2, .section-dark h3, .section-dark h4 {
  color: var(--accent);
}

.section-light {
  background-color: var(--background);
}

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

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

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

/* Card Styles */
.card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border-top: 4px solid var(--accent);
  display: flex;
  flex-direction: column;
}

.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.card-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 3rem;
}

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

.card h3 {
  margin-top: 0;
}

.card p {
  flex-grow: 1;
  color: #666;
  margin-bottom: 1rem;
}

.card-footer {
  padding-top: 1rem;
  border-top: 1px solid var(--light-gray);
}

.card-footer a {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.card-footer a::after {
  content: '→';
  transition: transform 0.3s ease;
}

.card-footer a:hover::after {
  transform: translateX(4px);
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

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

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* Blog List */
.blog-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.article {
  background-color: var(--white);
  padding: 1.5rem;
  border-left: 4px solid var(--accent);
  border-radius: 4px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.article:hover {
  box-shadow: var(--shadow-hover);
  padding-left: 2rem;
}

.article-date {
  font-size: 0.875rem;
  color: var(--accent);
  font-weight: 600;
}

.article h3 {
  margin: 0;
}

.article p {
  margin: 0;
  color: #666;
  font-size: 0.95rem;
}

.article-link {
  align-self: flex-start;
  margin-top: 0.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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