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

html {
  scroll-behavior: smooth;
}

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;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #e8e8e8;
}

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

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

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

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

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

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

a:hover {
  color: #7c7c87;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

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

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

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand h1 {
  font-size: 1.75rem;
  margin: 0;
  color: #00d4ff;
}

.brand-tagline {
  font-size: 0.75rem;
  color: #7c7c87;
  font-style: italic;
  letter-spacing: 0.5px;
}

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

.nav a {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.95rem;
  color: #e8e8e8;
  font-weight: 600;
  padding-bottom: 8px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

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

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

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  color: #00d4ff;
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0, 212, 255, 0.2);
}

.hero-tagline {
  font-size: 1.25rem;
  color: #7c7c87;
  margin-bottom: 2rem;
  max-width: 600px;
}

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

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

.btn-primary {
  background-color: #00d4ff;
  color: #0f3460;
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

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

.btn-secondary {
  background-color: #7c7c87;
  color: #e8e8e8;
  box-shadow: 0 4px 12px rgba(124, 124, 135, 0.2);
}

.btn-secondary:hover {
  background-color: #8d8d9a;
  box-shadow: 0 6px 20px rgba(124, 124, 135, 0.4);
  transform: translateY(-2px);
}

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

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

/* Sections */
.section {
  padding: 5rem 0;
  position: relative;
}

.section:nth-child(even) {
  background-color: #16213e;
}

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

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

.section-header h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #00d4ff, transparent);
}

.section-subtitle {
  color: #7c7c87;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

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

.card {
  background-color: #0f3460;
  border-top: 4px solid #00d4ff;
  padding: 2rem;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, transparent 100%);
  pointer-events: none;
}

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

.card-content {
  position: relative;
  z-index: 1;
}

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

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

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

.card-link:hover {
  gap: 12px;
}

.card-link::after {
  content: '→';
  display: inline-block;
}

/* Blog Section */
.blog-list {
  list-style: none;
  gap: 2rem;
}

.blog-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  background-color: rgba(124, 124, 135, 0.05);
  border-left: 4px solid #00d4ff;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.blog-item:hover {
  background-color: rgba(124, 124, 135, 0.1);
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.1);
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.blog-date,
.blog-category {
  font-size: 0.85rem;
  color: #7c7c87;
  text-transform: uppercase;
}

.blog-category {
  background-color: rgba(0, 212, 255, 0.1);
  color: #00d4ff;
  padding: 4px 12px;
  border-radius: 4px;
}

.article {
  padding: 2rem;
  background-color: #16213e;
  border-radius: 4px;
}

.article h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article h2:first-child {
  margin-top: 0;
}

.article h3 {
  margin-top: 1.5
