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

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

body {
  font-family: 'Roboto', sans-serif;
  background-color: #0f3460;
  color: #ecf0f1;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #ecf0f1;
  margin-bottom: 1rem;
}

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

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  color: #ecf0f1;
  font-weight: 300;
}

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

a:hover {
  color: #e8860d;
}

/* ===== HEADER & NAVIGATION ===== */

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

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

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

.logo h1 {
  font-size: 1.75rem;
  margin: 0;
  color: #f39c12;
  letter-spacing: 1px;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: #7c7c87;
  font-weight: 400;
  letter-spacing: 0.5px;
}

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

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

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

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

/* ===== HERO SECTION ===== */

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

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(243, 156, 18, 0.05);
  border-radius: 50%;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(124, 124, 135, 0.05);
  border-radius: 50%;
  z-index: 1;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

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

.hero .casino-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #ecf0f1;
  font-weight: 300;
}

.hero-tagline {
  font-size: 1.5rem;
  color: #f39c12;
  font-style: italic;
  margin-bottom: 2.5rem;
  letter-spacing: 0.5px;
}

/* ===== BUTTONS ===== */

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: #f39c12;
  color: #16213e;
  border: 2px solid #f39c12;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn:hover {
  background-color: #e8860d;
  border-color: #e8860d;
  box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background-color: #f39c12;
  color: #16213e;
}

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

/* ===== SECTIONS ===== */

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

.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: 60px;
  height: 3px;
  background: linear-gradient(90deg, #7c7c87 0%, #f39c12 50%, #7c7c87 100%);
  border-radius: 2px;
}

/* ===== CARDS ===== */

.card {
  background: linear-gradient(180deg, #16213e 0%, #0f3460 100%);
  border-radius: 8px;
  overflow: hidden;
  border-top: 4px solid #f39c12;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

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

.card-content {
  padding: 1.5rem;
  flex-grow: 1;
}

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

.card-title {
  margin: 0 0 0.5rem 0;
  color: #f39c12;
}

.card-subtitle {
  font-size: 0.875rem;
  color: #7c7c87;
  margin: 0;
}

.card-text {
  font-size: 0.95rem;
  margin: 0;
  color: #ecf0f1;
}

/* ===== GRID LAYOUTS ===== */

.grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* ===== BLOG LIST ===== */

.blog-list {
  display: grid;
  gap: 2rem;
}

.article {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 2rem;
  background: linear-gradient(180deg, rgba(22, 33, 62, 0.8) 0%, rgba(15, 52, 96, 0.8) 100%);
  border-radius: 8px;
  border-left: 4px solid #f39c12;
  transition: all 0.3s ease;
}

.article:hover {
  box-shadow: 0 6px 18px rgba(243, 156, 18, 0.1);
}

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

.article-title {
  margin: 0 0 0.5rem 0;
  color: #f39c12;
  flex: 1;
  min-width: 200px;
}

.article
