@font-face {
  font-family: 'IBM Plex Serif';
  font-style: normal;
  font-weight: 400;
  src: local('IBM Plex Serif'), local('IBMPlexSerif'), 
       url('data:font/woff2;base64,d09GMgABAAAAACJAAA0AAAAAK3AAAB3sAAAAAAAAAAAAAAAAAAAAAAAAAABmAALQggIoCNAiCDgIUAQkEEQgKiEiEUgABNgIkA0gEIAWEbAcgG8SBARAX8EYSzEsgTPwPv9+PjyAHQLCYdYRJAAAOAAGAkP2gAA0AAAAAAAAAAAAAAP+gAA==') format('woff2');
}

@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400;
  src: local('IBM Plex Sans'), local('IBMPlexSans'),
       url('data:font/woff2;base64,d09GMgABAAAAACJAAA0AAAAAK3AAAB3sAAAAAAAAAAAAAAAAAAAAAAAAAABmAALQggIoCNAiCDgIUAQkEEQgKiEiEUgABNgIkA0gEIAWEbAcgG8SBARAX8EYSzEsgTPwPv9+PjyAHQLCYdYRJAAAOAAGAkP2gAA0AAAAAAAAAAAAAAP+gAA==') format('woff2');
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'IBM Plex Sans', -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: 'IBM Plex Serif', Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 0.8em;
  color: #e8e8e8;
}

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

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

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

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.1rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1.5em;
  color: #e8e8e8;
}

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

a:hover {
  color: #7c7c87;
  text-decoration: underline;
}

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

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

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-logo {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #00d4ff, #7c7c87);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Serif', serif;
  font-weight: 700;
  color: #0f3460;
  font-size: 1.5rem;
}

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

.brand-text .tagline {
  font-size: 0.75rem;
  color: #7c7c87;
  font-family: 'IBM Plex Sans', sans-serif;
  letter-spacing: 1px;
  margin: 0;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

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

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(122, 124, 135, 0.15) 0%, rgba(0, 212, 255, 0.08) 100%), 
              radial-gradient(ellipse at 20% 50%, rgba(22, 33, 62, 0.4) 0%, transparent 50%),
              #0f3460;
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

.hero .casino-icon {
  width: 64px;
  height: 64px;
  display: inline-block;
  margin-bottom: 1.5rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero h1 {
  margin-bottom: 1rem;
  font-size: 3.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;
  color: #b8b8c8;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

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

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

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 212, 255, 0.5);
}

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

.btn-secondary:hover {
  background: rgba(0, 212, 255, 0.1);
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

/* Section Dividers */
.section-divider {
  height: 3px;
  background: linear-gradient(90deg, transparent, #7c7c87, #00d4ff, #7c7c87, transparent);
  margin: 3rem 0;
}

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

.section.alt {
  background: linear-gradient(180deg, rgba(22, 33, 62, 0.5) 0%, transparent 100%);
}

.section h2 {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1.5rem;
}

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

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

.card {
  background: linear-gradient(135deg, rgba(22, 33, 62, 0.8) 0%, rgba(122, 124, 135, 0.1) 100%);
  border-left: 4px solid #00d4ff;
  padding: 2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
}

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

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  gap: 1rem;
}

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

.card h3 {
