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

:root {
  --primary: #7c7c87;
  --secondary: #16213e;
  --accent: #ffd700;
  --background: #0f3460;
  --text: #f5f5f5;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 8px 12px rgba(0, 0, 0, 0.4);
}

html {
  scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

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

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

a:hover {
  color: #ffed4e;
}

/* Header and Navigation */
.header {
  background: linear-gradient(135deg, var(--secondary) 0%, rgba(22, 33, 62, 0.95) 100%);
  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;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand h1 {
  font-size: 1.5rem;
  margin: 0;
  color: var(--accent);
  letter-spacing: 1px;
}

.brand-tagline {
  font-size: 0.75rem;
  color: var(--primary);
  display: none;
}

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

.nav a {
  color: var(--text);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 0.5rem;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.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(8px, -8px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--background) 0%, var(--secondary) 50%, var(--primary) 100%);
  padding: 6rem 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(255, 215, 0, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

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

.hero .casino-icon {
  width: 64px;
  height: 64px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.3));
}

.hero h1 {
  color: var(--accent);
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--text);
}

.cta-button {
  display: inline-block;
  background-color: var(--accent);
  color: var(--background);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid var(--accent);
  font-size: 0.9rem;
  cursor: pointer;
}

.cta-button:hover {
  background-color: transparent;
  color: var(--accent);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

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

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

/* Sections */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1rem;
  position: relative;
}

.section-divider {
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  margin: 0;
  opacity: 0.6;
}

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

.section-title h2 {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

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

.section-subtitle {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 1rem;
}

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

.card {
  background: linear-gradient(135deg, rgba(22, 33, 62, 0.8) 0%, rgba(124, 124, 135, 0.1) 100%);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border-top: 4px solid var(--accent);
  backdrop-filter: blur(10px);
}

.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
  border-top-color: #ffed4e;
}

.card-header {
  padding: 0;
  overflow: hidden;
  height: 200px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: block;
  margin: 20px auto 0;
  filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.2));
}

.card-body {
  padding: 2rem;
}

.card-title {
  color: var(--accent);
  margin-bottom: 1rem;
}

.card-text {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  transition: gap 0.3s ease;
}

.card-link:hover {
  gap: 1rem;
}

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

.article {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(22, 33, 62, 0.6) 0%, rgba(124, 124, 135, 0.05) 100%);
  border-radius: 8px;
  border-left: 4px solid var(--accent);
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.article:hover {
  box-shadow: var(--shadow-hover);
  transform: translateX(5px);
}

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

.article-content h3 {
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.article-meta {
  display: flex;
  gap: 1rem;
  margin-bottom
