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

html {
  scroll-behavior: smooth;
}

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

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

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

h2 {
  font-size: 2.25rem;
  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;
  color: #e8e8e8;
  font-weight: 400;
}

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

a:hover {
  color: #7c7c87;
}

/* Header & Navigation */
.header {
  background-color: #16213e;
  padding: 1.5rem 2rem;
  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;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Orbitron', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: #00d4ff;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-main {
  font-size: 1.5rem;
}

.logo-tagline {
  font-size: 0.65rem;
  color: #7c7c87;
  font-weight: 400;
  letter-spacing: 0.05em;
}

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

.nav a {
  color: #e8e8e8;
  font-weight: 500;
  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 {
  color: #00d4ff;
}

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

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

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

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  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: 0;
  left: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124, 124, 135, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero h1 {
  margin-bottom: 1.5rem;
  font-size: 3rem;
  color: #00d4ff;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #e8e8e8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.hero .casino-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: 0.05em;
}

.btn-primary {
  background-color: #00d4ff;
  color: #16213e;
}

.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: #7c7c87;
  color: #e8e8e8;
  border: 2px solid #7c7c87;
}

.btn-secondary:hover {
  background-color: transparent;
  color: #7c7c87;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(124, 124, 135, 0.2);
}

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

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

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

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

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

.section h2 {
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: #7c7c87;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

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

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}

.card-footer {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(124, 124, 135, 0.2);
}

.card-footer a {
  display: inline-block;
  color: #00d4ff;
  font-weight: 600;
  position: relative;
}

.card-footer a::after {
  content: ' →';
  transition: margin-left 0.3s ease;
}

.card-footer a:hover::after {
  margin-left: 0.5rem;
}

/* Blog List */
.blog-list {
  list-style: none;
}

.article {
  padding: 2rem;
  border-left: 4px solid #00d4ff;
  background-color: rgba(16, 52, 96, 0.5);
  margin-bottom: 1.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.article:hover {
  background-color: rgba(16, 52, 96, 0.8);
  transform: translateX(8px);
}

.article-title {
  font-size: 1.5rem;
  color: #00d4ff;
  margin-bottom: 0.5rem;
}

.article-meta {
  font-size: 0.9rem;
  color: #7c7c87;
  margin-bottom: 1rem;
}

.article-excerpt {
  color: #e8e8e8;
  margin-bottom: 1rem;
}

.article-link {
  color: #00d4ff;
  font-weight: 600;
  display: inline-block;
  position: relative;
}

.article-link::after {
