* {
  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;
}

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

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

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

h3 {
  font-size: 1.875rem;
  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;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

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

.btn-secondary:hover {
  background-color: #00d4ff;
  color: #16213e;
  box-shadow: 0 8px 16px rgba(0, 212, 255, 0.2);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background-color: #00d4ff;
  color: #0f3460;
  box-shadow: 0 8px 16px rgba(0, 212, 255, 0.3);
}

/* Header */
.header {
  background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  border-bottom: 2px solid #7c7c87;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  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;
  text-transform: uppercase;
}

.tagline {
  font-size: 0.75rem;
  color: #7c7c87;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Navigation */
.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav a {
  color: #e8e8e8;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  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%, #1a2951 100%);
  padding: 6rem 2rem;
  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%;
}

.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%;
}

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

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

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #00d4ff, #7c7c87);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

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

.section h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: #00d4ff;
}

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

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

/* Card Styles */
.card {
  background-color: rgba(22, 33, 62, 0.6);
  border-left: 4px solid #00d4ff;
  border-radius: 4px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.card:hover {
  box-shadow: 0 12px 24px rgba(0, 212, 255, 0.2);
  transform: translateY(-4px);
  border-left-color: #00d4ff;
}

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

.card p {
  color: #d0d0d8;
  margin-bottom: 1rem;
}

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

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

/* Content Cards */
.content-card {
  background: linear-gradient(135deg, rgba(22, 33, 62, 0.5), rgba(15, 52, 96, 0.5));
  border-top: 3px solid #00d4ff;
  border-radius: 4px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

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

.content-card h3 {
  color: #00d4ff;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

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

.article {
  background: linear-gradient(135deg, rgba(22, 33, 62, 0.6), rgba(26, 41, 81, 0.4));
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border-left: 4px solid #00d4ff;
  display: flex;
  flex-direction: column;
}

.article:hover {
  box-shadow: 0 12px 28px rgba(0, 212, 255, 0.2);
  transform: translateY(-8px);
}

.article-header {
  padding: 2rem;
  background: linear-gradient(135deg, #16213e, #0f3460);
  border-bottom: 1px solid #7c7c87;
}

.article-category {
  display: inline-block;
  background-color: #00
