@font-face {
  font-family: 'Bebas Neue';
  src: url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
  font-weight: 300;
  font-style: normal;
}

* {
  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;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', cursive;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

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

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

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

h4 {
  font-size: 1.375rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 16px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
}

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

a:hover {
  opacity: 0.8;
}

/* SVG Icon Styles */
.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: 20px 0;
  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;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #00d4ff;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.nav {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav a {
  font-weight: 500;
  color: #e8e8e8;
  position: relative;
  font-size: 0.95rem;
}

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #16213e 0%, #0f3460 50%, #7c7c87 100%);
  padding: 100px 20px;
  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.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero h1 {
  color: #e8e8e8;
  margin-bottom: 16px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero .tagline {
  font-size: 1.25rem;
  color: #00d4ff;
  font-weight: 500;
  margin-bottom: 32px;
  letter-spacing: 0.5px;
}

.hero p {
  font-size: 1.125rem;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

.hero-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-icon-item .casino-icon {
  margin-right: 0;
}

.hero-icon-item span {
  font-size: 0.9rem;
  color: #e8e8e8;
  font-weight: 500;
}

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

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

.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: #e8e8e8;
}

.btn-secondary:hover {
  background-color: #8a8a96;
  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: #16213e;
}

.hero .btn {
  margin: 0 10px;
}

/* Sections */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, #00d4ff 50%, transparent 100%);
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  margin-bottom: 16px;
}

.section-title p {
  font-size: 1.1rem;
  color: #a0a0a8;
  max-width: 600px;
  margin: 0 auto;
}

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

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

.card-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #7c7c87 0%, #16213e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00d4ff;
  font-size: 2.5rem;
}

.card-content {
  padding: 30px;
}

.card-content h3 {
  margin-bottom: 12px;
}

.card-content p {
  color: #a0a0a8;
  margin-bottom: 20px;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #7c7c87;
}

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

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

/* Grid Layouts */
.grid {
  display: grid;
  gap: 30px;
  margin-bottom: 40px;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* Content Card for Articles/Blog */
.article {
  background-color: #16213e;
  border-radius: 6px;
  padding: 40px;
  border-left: 4px solid #00d4ff;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.article h3 {
  margin-bottom: 12px;
}

.article-meta {
  display: flex;
  gap: 20px;
  font-size: 0.85
