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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #e8e8e8;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

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

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

a:hover {
  color: #7c7c87;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header Styles */
.header {
  background-color: #16213e;
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(124, 124, 135, 0.2);
}

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

.logo {
  font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #00d4ff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo:hover {
  color: #7c7c87;
}

.tagline {
  font-size: 0.75rem;
  color: #7c7c87;
  font-style: italic;
  margin-top: 0.25rem;
}

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

.nav a {
  color: #e8e8e8;
  font-weight: 500;
  position: relative;
  padding-bottom: 0.5rem;
  transition: all 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::after {
  width: 100%;
}

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

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #00d4ff;
  font-size: 1.5rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #16213e 0%, #0f3460 50%, #1a2d4d 100%);
  padding: 6rem 0;
  text-align: center;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, #7c7c87 0%, #00d4ff 100%) 0 0 1 0;
}

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

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #e8e8e8;
}

.hero .casino-icon {
  width: 64px;
  height: 64px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 1rem;
  color: #00d4ff;
}

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

.hero-content {
  max-width: 800px;
}

.cta-button {
  display: inline-block;
  background-color: #00d4ff;
  color: #0f3460;
  padding: 1rem 2.5rem;
  font-weight: 700;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid #00d4ff;
  font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  margin-right: 1rem;
  margin-bottom: 1rem;
}

.cta-button:hover {
  background-color: transparent;
  color: #00d4ff;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.cta-button-secondary {
  display: inline-block;
  background-color: transparent;
  color: #00d4ff;
  padding: 1rem 2.5rem;
  font-weight: 700;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid #00d4ff;
  font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  margin-right: 1rem;
  margin-bottom: 1rem;
}

.cta-button-secondary:hover {
  background-color: #00d4ff;
  color: #0f3460;
}

/* Sections */
.section {
  padding: 4rem 0;
  border-bottom: 1px solid rgba(124, 124, 135, 0.1);
}

.section:last-of-type {
  border-bottom: none;
}

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

.section-title h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

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

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

/* Card Styles */
.card {
  background-color: #16213e;
  border-radius: 6px;
  padding: 2rem;
  margin-bottom: 2rem;
  border-top: 4px solid #00d4ff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

.card h3 {
  color: #00d4ff;
  margin-top: 0;
}

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

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

.card-body {
  color: #e8e8e8;
}

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

.card-footer a {
  color: #00d4ff;
  font-weight: 600;
  transition: color 0.3s ease;
}

.card-footer a:hover {
  color: #7c7c87;
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

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

.article {
  background-color: #16213e;
  border-left: 4px solid #00d4ff;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.article:hover {
  box-shadow: 0 8px 16px rgba(0, 212, 255, 0.1);
}

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

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

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

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

.article-category {
  display: inline-block;
  background-color: rgba(0, 212, 255, 0.1);
  color: #00d4ff;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-right: 0
