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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #0f3460;
  color: #f0f0f0;
  line-height: 1.6;
  letter-spacing: 0.3px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

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

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

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

h4 {
  font-size: 1.25rem;
  line-height: 1.5;
}

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

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

a:hover {
  color: #ffed4e;
}

.header {
  background-color: #16213e;
  padding: 1.5rem 2rem;
  border-bottom: 2px solid #7c7c87;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

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

.logo {
  font-family: 'Orbitron', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffd700;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-text {
  display: block;
}

.logo-sub {
  font-size: 0.65rem;
  color: #7c7c87;
  letter-spacing: 0.5px;
  margin-top: -0.25rem;
}

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

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

.nav li a:hover {
  color: #ffd700;
  border-bottom-color: #ffd700;
}

.nav li a.active {
  color: #ffd700;
  border-bottom-color: #ffd700;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 0.4rem;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #ffd700;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hero {
  background: linear-gradient(135deg, #16213e 0%, #0f3460 50%, #1a4d7a 100%);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

.hero-tagline {
  font-size: 1.25rem;
  color: #e0e0e0;
  margin-bottom: 2rem;
  font-weight: 500;
}

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

.cta-button {
  display: inline-block;
  background-color: #ffd700;
  color: #16213e;
  padding: 1rem 2.5rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid #ffd700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.cta-button:hover {
  background-color: transparent;
  color: #ffd700;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.cta-button.secondary {
  background-color: transparent;
  color: #ffd700;
  border-color: #ffd700;
  box-shadow: none;
}

.cta-button.secondary:hover {
  background-color: #ffd700;
  color: #16213e;
}

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

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

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

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

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

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

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.15);
}

.card-header {
  padding: 2rem;
  background-color: rgba(255, 215, 0, 0.05);
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  min-height: 80px;
  display: flex;
  align-items: center;
}

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

.card-title {
  margin: 0;
  color: #ffd700;
  font-size: 1.25rem;
}

.card-body {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-description {
  font-size: 0.95rem;
  color: #d0d0d0;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  flex-grow: 1;
}

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

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

.card-link:hover {
  gap: 0.8rem;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.article {
  background-color: #16213e;
  border-radius: 6px;
  overflow: hidden;
  border-top: 4px solid #ffd700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.article:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.15);
}

.article-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #7c7c87, #16213e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7c7c87;
  font-size: 3rem;
  overflow: hidden;
  position: relative;
}

.article-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient
