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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #0a0e14;
  color: #e8eef5;
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: #e8eef5;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

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

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

p {
  margin-bottom: 1rem;
  color: #c5cfe0;
  font-weight: 400;
}

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

a:hover {
  color: #00f0ff;
}

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

.btn-primary {
  background-color: #00d9ff;
  color: #0a0e14;
}

.btn-primary:hover {
  background-color: #00f0ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 217, 255, 0.3);
}

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

.btn-secondary:hover {
  background-color: #00d9ff;
  color: #0a0e14;
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  border-color: #00d9ff;
  color: #00d9ff;
}

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

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

.header {
  background-color: rgba(26, 35, 50, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(91, 95, 98, 0.2);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00d9ff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  text-decoration: none;
  letter-spacing: 0.05em;
}

.tagline {
  font-size: 0.75rem;
  color: #c5cfe0;
  font-weight: 400;
  letter-spacing: 0.03em;
  margin-top: 2px;
}

.nav {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav a {
  color: #e8eef5;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav a:hover {
  color: #00d9ff;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #00d9ff;
  transition: width 0.3s ease;
}

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

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

.hero {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, rgba(91, 95, 98, 0.15) 0%, rgba(26, 35, 50, 0.3) 50%, rgba(0, 217, 255, 0.05) 100%);
  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(0, 217, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

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

.hero h1 {
  color: #e8eef5;
  margin-bottom: 1.5rem;
}

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

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.hero-icon-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.section {
  padding: 5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section:nth-child(even) {
  background-color: rgba(26, 35, 50, 0.3);
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #5b5f62 50%, transparent 100%);
  margin: 0;
}

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

.section-title h2 {
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #00d9ff;
  border-radius: 2px;
}

.section-subtitle {
  color: #c5cfe0;
  font-size: 1.1rem;
  margin-top: 1rem;
}

.card {
  background-color: rgba(91, 95, 98, 0.08);
  border-top: 4px solid #00d9ff;
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(91, 95, 98, 0.15);
  border-top: 4px solid #00d9ff;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 217, 255, 0.1);
  background-color: rgba(91, 95, 98, 0.12);
}

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

.card p {
  color: #c5cfe0;
  font-size: 0.95rem;
}

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

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

.blog-list {
  display: grid;
  gap: 2rem;
}

.article {
  background-color: rgba(91, 95, 98, 0.08);
  border-left: 4px solid #00d9ff;
  border-radius: 6px;
  padding: 2rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(91, 95, 98, 0.15);
  border-left: 4px solid #00d9ff;
}

.article:hover {
  box-shadow: 0 12px 36px rgba(0, 217, 255, 0.08);
  background-color: rgba(91, 95, 98, 0.12);
}

.article-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #9aa5b8;
}

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

.article h3 {
  margin-bottom: 0.75rem;
  color: #e8eef5;
}

.article p {
  color: #c5cfe0;
  margin-bottom: 1.5rem;
}

.article-link {
  color: #00d9ff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.article-link:hover {
  color: #00f0ff;
  gap: 1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap:
