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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  color: #e8e8e8;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

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

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

h3 {
  font-size: 1.75rem;
  line-height: 1.4;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

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

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

a:hover {
  color: #7c7c87;
}

/* ==================== HEADER ==================== */

.header {
  background-color: #16213e;
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  border-bottom: 2px solid #7c7c87;
}

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

.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #00d4ff;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  display: inline-block;
}

.tagline {
  font-size: 0.75rem;
  color: #7c7c87;
  font-weight: 400;
  letter-spacing: 1px;
  display: none;
}

/* ==================== NAVIGATION ==================== */

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

.nav a {
  color: #e8e8e8;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 0.5rem;
  transition: color 0.3s ease;
}

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

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

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

/* ==================== HERO SECTION ==================== */

.hero {
  background: linear-gradient(135deg, #16213e 0%, #0f3460 50%, #16213e 100%);
  padding: 6rem 1.5rem;
  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, 212, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124, 124, 135, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero .casino-icon {
  width: 64px;
  height: 64px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 16px;
  margin-bottom: 1rem;
  color: #00d4ff;
}

.hero h1 {
  margin-bottom: 1rem;
  color: #00d4ff;
  text-shadow: 0 2px 10px rgba(0, 212, 255, 0.3);
}

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

.hero-description {
  font-size: 1.1rem;
  color: #e8e8e8;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

/* ==================== BUTTONS ==================== */

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

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

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

.btn-secondary {
  background-color: #7c7c87;
  color: #0f3460;
}

.btn-secondary:hover {
  background-color: #9a9aa7;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(124, 124, 135, 0.3);
}

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

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

.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ==================== SECTION DIVIDER ==================== */

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

.divider-accent {
  height: 3px;
  background: linear-gradient(90deg, transparent, #00d4ff, transparent);
  margin: 3rem 0;
}

/* ==================== SECTION ==================== */

.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-subtitle {
  font-size: 1.1rem;
  color: #7c7c87;
  max-width: 600px;
  margin: 0 auto;
}

/* ==================== CARD LAYOUT ==================== */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background-color: #16213e;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s ease;
  border-top: 4px solid #00d4ff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 212, 255, 0.15);
  border-top-color: #00b8d4;
}

.card-icon {
  padding: 2rem 1.5rem 1rem 1.5rem;
}

.casino-icon {
  width: 48px;
  height: 48px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  color: #00d4ff;
}

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

.card h3 {
  margin-bottom: 1rem;
  color: #00d4ff;
}

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

.card-footer {
  padding: 0 1.5rem 1.5rem 1.5rem;
}

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

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

/* ==================== BLOG LIST ==================== */

.blog-list {
  list-style: none;
  margin-top: 2rem;
}

.article {
  background-color: #16213e;
  border-left: 4px solid #00d4ff;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.article:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 20px rgba(
