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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #0f3460;
  color: #e8e8e8;
  line-height: 1.6;
  letter-spacing: 0.3px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #e8e8e8;
}

h1 {
  font-size: 2.5rem;
  letter-spacing: -1px;
}

h2 {
  font-size: 2rem;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

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

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

a:hover {
  color: #7c7c87;
}

/* Header & Navigation */
.header {
  background-color: #16213e;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00d4ff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-text {
  font-size: 1.25rem;
}

.tagline {
  font-size: 0.75rem;
  color: #7c7c87;
  font-weight: 400;
  display: block;
  line-height: 1.2;
}

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

.nav a {
  color: #e8e8e8;
  font-size: 0.95rem;
  font-weight: 500;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
}

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

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #16213e 0%, #0f3460 50%, #1a3a52 100%);
  padding: 4rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

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

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

.hero p {
  font-size: 1.25rem;
  color: #7c7c87;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  padding: 0.875rem 2rem;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: #00d4ff;
  color: #0f3460;
}

.btn-primary:hover {
  background-color: #7c7c87;
  color: #e8e8e8;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 212, 255, 0.2);
}

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

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

.btn-small {
  padding: 0.625rem 1.5rem;
  font-size: 0.9rem;
}

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

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

.section-header h2 {
  margin-bottom: 1rem;
}

.section-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, #7c7c87, transparent);
  margin: 4rem 0;
}

/* Cards */
.card {
  background-color: #1a3a52;
  border-radius: 4px;
  padding: 2rem;
  border-top: 4px solid #00d4ff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.card h3 {
  margin-bottom: 1rem;
}

.card-icon {
  width: 48px;
  height: 48px;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 1rem;
  margin-right: 0;
}

.card p {
  flex-grow: 1;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: #7c7c87;
}

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

.card-link:hover {
  border-bottom-color: #00d4ff;
}

/* 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));
}

/* Features Section */
.features {
  background-color: #16213e;
}

.feature-item {
  text-align: left;
}

.feature-item .casino-icon {
  display: block;
  margin-bottom: 1rem;
}

.feature-item h3 {
  margin-bottom: 0.75rem;
}

/* Blog Section */
.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.article {
  background-color: #1a3a52;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-top: 4px solid #00d4ff;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.article-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #7c7c87 0%, #16213e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f3460;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

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

.article-date {
  font-size: 0.8rem;
  color: #7c7c87;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.article h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.article p {
  flex-grow: 1;
  font-size: 0.95rem;
  color: #7c7c87;
  margin-bottom: 1.5rem;
}

.article-link {
  color: #00d4ff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.article-link:hover {
  border-bottom-color: #00d4ff;
}

/* Footer */
.footer {
  background-color: #16213e;
  color: #7c7c87
