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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 0.5em;
  color: #f0f0f0;
}

h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 0.75em;
}

h2 {
  font-size: 2.25rem;
  line-height: 1.3;
  margin-bottom: 0.75em;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.6em;
}

h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5em;
}

p {
  margin-bottom: 1em;
  color: #f0f0f0;
  opacity: 0.95;
}

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

a:hover {
  color: #ffed4e;
  opacity: 0.8;
}

/* Header & Navigation */
.header {
  background-color: rgba(22, 33, 62, 0.98);
  padding: 1.5rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(124, 124, 135, 0.3);
  backdrop-filter: blur(10px);
}

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

.logo {
  font-family: 'Orbitron', monospace;
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffd700;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: text-shadow 0.3s ease;
}

.logo:hover {
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.tagline {
  font-size: 0.75rem;
  color: #7c7c87;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0.25rem;
  display: none;
}

.nav {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav a {
  color: #f0f0f0;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffd700, #ffed4e);
  transition: width 0.3s ease;
}

.nav a:hover {
  color: #ffd700;
}

.nav a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #ffd700;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
  color: #ffed4e;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #16213e 0%, #0f3460 50%, #1a472a 100%);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid #7c7c87;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero .casino-icon {
  width: 64px;
  height: 64px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
}

.hero h1 {
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #ffd700, #f0f0f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.25rem;
  color: #f0f0f0;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #0f3460;
  padding: 1rem 2.5rem;
  border-radius: 4px;
  font-weight: 700;
  font-family: 'Orbitron', monospace;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid #ffd700;
  cursor: pointer;
  font-size: 0.95rem;
}

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

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

.secondary-button {
  display: inline-block;
  background: transparent;
  color: #ffd700;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid #ffd700;
  cursor: pointer;
  font-size: 0.9rem;
  margin-left: 1rem;
}

.secondary-button:hover {
  background: rgba(255, 215, 0, 0.1);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

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

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  position: relative;
}

.section-header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #ffd700, #7c7c87);
}

.section-header h2 {
  margin-bottom: 0.5rem;
}

.section-header p {
  font-size: 1.1rem;
  color: #7c7c87;
  max-width: 600px;
  margin: 0 auto;
}

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

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

.card {
  background: linear-gradient(135deg, rgba(22, 33, 62, 0.6), rgba(124, 124, 135, 0.1));
  border-radius: 6px;
  overflow: hidden;
  border-top: 4px solid #ffd700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(255, 215, 0, 0.15);
  border-top-color: #ffed4e;
}

.card-icon {
  width: 48px;
  height: 48px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.3));
}

.card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.card p {
  flex-grow: 1;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.card-link {
  color: #ffd700;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.card-link::after {
  content: '→';
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

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

.card:hover .card-link::after {
  transform: translateX(4px);
}

/* Blog Section */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.article {
  background: linear-gradient(135deg, rgba(22, 33, 62, 0.5), rgba(124, 124, 135, 0.05));
  padding: 2rem;
  border-left
