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

:root {
  --primary: #7c7c87;
  --secondary: #16213e;
  --accent: #00d4ff;
  --background: #0f3460;
  --text: #f0f0f0;
  --text-dark: #1a1a1a;
  --border-light: #2a3f5f;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 8px 24px rgba(0, 212, 255, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Audiowide', cursive;
  color: var(--text);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

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

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

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

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

p {
  margin-bottom: 1rem;
  color: var(--text);
  font-size: 1rem;
  font-weight: 300;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #00b8cc;
}

/* HEADER & NAVIGATION */
.header {
  background: linear-gradient(135deg, var(--secondary) 0%, #1a2a4e 100%);
  padding: 1.5rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
  border-bottom: 1px solid var(--border-light);
}

.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 h1 {
  font-size: 1.5rem;
  margin: 0;
  background: linear-gradient(90deg, var(--accent), #00b8cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-tagline {
  font-size: 0.65rem;
  color: var(--primary);
  font-style: italic;
  margin-top: 0.25rem;
  display: none;
}

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

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

.nav a {
  color: var(--text);
  font-weight: 400;
  font-size: 0.95rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.nav a:hover {
  border-bottom-color: var(--accent);
  color: var(--accent);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--accent);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, var(--secondary) 0%, #1a2a4e 50%, var(--background) 100%);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--accent);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.03) 0%, transparent 70%);
  border-radius: 50%;
}

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

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

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

.hero h1 {
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.hero p {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-tagline {
  display: inline-block;
  color: var(--accent);
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 2rem;
  font-family: 'Inter', sans-serif;
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--accent);
  border-radius: 50px;
  background: rgba(0, 212, 255, 0.05);
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border: 2px solid transparent;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary {
  background: linear-gradient(90deg, var(--accent), #00b8cc);
  color: var(--text-dark);
  border-color: var(--accent);
}

.btn-primary:hover {
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-secondary:hover {
  background: rgba(0, 212, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

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

/* MAIN CONTENT */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* SECTIONS */
.section {
  padding: 4rem 0;
  position: relative;
}

.section:not(:last-child)::after {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin-top: 4rem;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--border-light);
}

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

.section-title p {
  color: var(--primary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

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

.card {
  background: linear-gradient(135deg, rgba(22, 33, 62, 0.6) 0%, rgba(124, 124, 135, 0.1) 100%);
  border: 1px solid var(--border-light);
  border-top: 4px solid var(--accent);
  border-radius: 4px;
  padding: 2rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: var(--accent);
}

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  fill: var(--accent);
}

.card h3 {
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.card p {
  flex-grow: 1;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.card-link {
  color: var(--accent);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

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

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

.article {
  background: linear-gradient(135deg, rgba(22, 33, 62, 0.6) 0%, rgba(124, 124, 135, 0.1) 100%);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--accent);
  padding: 2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: grid;
  grid-template-columns: 200px 1
