* {
  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: #e8e8f0;
  line-height: 1.6;
  font-size: 16px;
}

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

h1 {
  font-size: 3rem;
  font-weight: 700;
}

h2 {
  font-size: 2.25rem;
  font-weight: 700;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
}

h4 {
  font-size: 1.375rem;
  font-weight: 600;
}

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

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

a:hover {
  color: #00f0ff;
}

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

.header {
  background-color: #0f3460;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(124, 124, 135, 0.2);
}

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

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

.brand-name {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #e8e8f0;
}

.brand-tagline {
  font-size: 0.75rem;
  color: #00d4ff;
  font-weight: 500;
  letter-spacing: 0.05em;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  color: #d0d0dc;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  display: block;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid transparent;
}

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

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

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

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

.hero .casino-icon {
  width: 64px;
  height: 64px;
  animation: float 3s ease-in-out infinite;
}

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

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: #e8e8f0;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #00d4ff;
  margin-bottom: 2rem;
  font-weight: 500;
}

.hero-description {
  font-size: 1.1rem;
  color: #d0d0dc;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.cta-button {
  display: inline-block;
  background-color: #00d4ff;
  color: #0f3460;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: "IBM Plex Sans", sans-serif;
}

.cta-button:hover {
  background-color: #00f0ff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 212, 255, 0.3);
}

.cta-button:active {
  transform: translateY(-1px);
}

.secondary-button {
  display: inline-block;
  background-color: transparent;
  color: #00d4ff;
  padding: 1rem 2.5rem;
  border: 2px solid #00d4ff;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: "IBM Plex Sans", sans-serif;
  margin-left: 1rem;
}

.secondary-button:hover {
  background-color: rgba(0, 212, 255, 0.1);
  border-color: #00f0ff;
  color: #00f0ff;
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
  position: relative;
}

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

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #7c7c87 0%, #00d4ff 100%);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.section-subtitle {
  color: #00d4ff;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

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

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background-color: #16213e;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
  border-top: 4px solid #00d4ff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.card-icon {
  padding: 2rem 2rem 1rem;
}

.card-icon .casino-icon {
  width: 48px;
  height: 48px;
}

.card-content {
  padding: 1.5rem 2rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
  color: #e8e8f0;
}

.card-description {
  color: #d0d0dc;
  margin-bottom: 1.5rem;
  flex: 1;
}

.card-link {
  color: #00d4ff;
  font-weight: 600;
  display: inline-block;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.card-link:hover {
  color: #00f0ff;
  border-bottom-color: #00f0ff;
}

.blog-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.article {
  background-color: #16213e;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
  border-left: 4px solid #00d4ff;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

.article-date {
  color: #7c7c87;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.article-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: #e8e8f0;
}

.article-excerpt {
  color: #d0d0dc;
  margin-bottom: 1.25rem;
  line-height: 1.
