* {
  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: #f5f5f5;
  line-height: 1.6;
  letter-spacing: 0.3px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #f5f5f5;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

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

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

a:hover {
  color: #ffed4e;
}

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

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

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

.logo-text {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #f5f5f5;
  letter-spacing: 1.2px;
}

.logo-subtext {
  font-size: 0.65rem;
  color: #ffd700;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.8px;
  font-weight: 600;
}

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

.nav a {
  color: #f5f5f5;
  font-weight: 500;
  font-size: 0.95rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

/* MOBILE MENU */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #f5f5f5;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #16213e 0%, #7c7c87 50%, #0f3460 100%);
  padding: 6rem 1rem;
  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 {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

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

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

.hero p {
  font-size: 1.35rem;
  margin-bottom: 2rem;
  color: #ffd700;
  font-weight: 500;
}

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

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

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

/* SECTION DIVIDER */
.section-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffd700, transparent);
  margin: 3rem 0;
}

/* SECTIONS */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

.section.dark {
  background-color: #0f3460;
}

.section.light {
  background-color: #16213e;
}

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

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: #ffd700;
  margin: 1rem auto 0;
  border-radius: 2px;
}

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

.card {
  background-color: #1a2a47;
  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 #ffd700;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

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

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

.card-title {
  font-size: 1.35rem;
  margin: 0;
  color: #f5f5f5;
}

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

.card-body p {
  font-size: 0.95rem;
  color: #d4d4d4;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.card-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  background-color: rgba(255, 215, 0, 0.02);
}

.card-link {
  display: inline-block;
  color: #ffd700;
  font-weight: 600;
  font-size: 0.95rem;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-link:hover {
  color: #ffed4e;
  border-bottom-color: #ffd700;
}

/* BLOG LIST */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

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

.article:hover {
  box-shadow: 0 6px 16px rgba(255, 215, 0, 0.1);
  transform: translateX(4px);
}

.article-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.article-icon {
  width: 48px;
  height: 48px;
  display: inline-block;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.article-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: #b0b0b0;
  flex-wrap: wrap;
  align-items: center;
