* {
  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;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Mono', monospace;
  color: #e8e8e8;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

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.375rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

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

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

a:hover {
  color: #00e6ff;
}

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

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

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

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

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

.brand .casino-icon {
  width: 40px;
  height: 40px;
  margin-right: 0;
}

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

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

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

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

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

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

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

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

.hero h1 {
  color: #00d4ff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.125rem;
  color: #e8e8e8;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-tagline {
  font-size: 0.95rem;
  color: #7c7c87;
  font-style: italic;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
}

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

.btn-primary {
  background-color: #00d4ff;
  color: #0f3460;
  border: 2px solid #00d4ff;
}

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

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

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

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

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

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

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

.section-title h2 {
  margin-bottom: 0.5rem;
}

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

.section-title p {
  color: #7c7c87;
  font-size: 1.025rem;
  margin: 0;
}

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

.card {
  background-color: #16213e;
  border-top: 4px solid #00d4ff;
  padding: 2rem;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  box-shadow: 0 12px 32px rgba(0, 212, 255, 0.15);
  transform: translateY(-4px);
  border-top-color: #00e6ff;
}

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

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

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

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

.card-link:hover {
  color: #00e6ff;
  gap: 0.75rem;
}

.card-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.card-link:hover::after {
  transform: translateX(4px);
}

/* Blog/Article List */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.article {
  background-color: #16213e;
  border-left: 4px solid #00d4ff;
  padding: 2rem;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.article:hover {
  box-shadow: 0 8px 24px rgba(0, 212, 255, 0.12);
  border-left-color: #00e6ff;
}

.article-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
  flex-wrap: wrap;
}

.article h3 {
  margin: 0;
  color: #00d4ff;
  flex: 1;
}

.article-meta {
  color: #7c7c87;
  font-size: 0.9rem;
  white-space: nowrap;
}

.article p {
  margin: 0;
  color: #e8e8e8;
}

.article-tags {
  display: flex;
