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

:root {
  --primary: #7c7c87;
  --secondary: #16213e;
  --accent: #ffd700;
  --background: #0f3460;
  --text: #f5f5f5;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.35);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
  color: var(--accent);
  position: relative;
  padding-bottom: 1rem;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

h3 {
  font-size: 1.75rem;
  color: var(--accent);
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.1rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  color: rgba(245, 245, 245, 0.95);
}

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

a:hover {
  color: #ffed4e;
  text-decoration: underline;
}

/* Header */
.header {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--background) 100%);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
  border-bottom: 2px solid var(--primary);
}

.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;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text .brand {
  color: var(--accent);
  font-size: 1.5rem;
}

.logo-text .tagline {
  font-size: 0.65rem;
  color: var(--primary);
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-top: 0.25rem;
}

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

.header .casino-icon {
  width: 48px;
  height: 48px;
}

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

.nav-item a {
  display: block;
  padding: 0.5rem 0;
  color: var(--text);
  font-weight: 500;
  position: relative;
  transition: var(--transition);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition);
}

.nav-item a:hover::after,
.nav-item a:focus::after {
  width: 100%;
}

.nav-item a:hover,
.nav-item a:focus {
  color: var(--accent);
  text-decoration: none;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--background) 50%, var(--primary) 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.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(124, 124, 135, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

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

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

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

.hero p {
  font-size: 1.1rem;
  color: rgba(245, 245, 245, 0.9);
  margin-bottom: 2rem;
}

.hero-subtitle {
  color: var(--primary);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border: 2px solid var(--accent);
  background-color: var(--accent);
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
  text-decoration: none;
}

.btn:hover {
  background-color: transparent;
  color: var(--accent);
  box-shadow: inset 0 0 20px rgba(255, 215, 0, 0.3);
}

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

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

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

/* Section */
.section {
  padding: 5rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.section-dark {
  background-color: rgba(22, 33, 62, 0.5);
}

.section-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.section-text {
  color: rgba(245, 245, 245, 0.95);
}

.section-text p {
  margin-bottom: 1.5rem;
}

.highlight {
  color: var(--accent);
  font-weight: 600;
}

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

.card {
  background: linear-gradient(135deg, rgba(22, 33, 62, 0.8) 0%, rgba(124, 124, 135, 0.1) 100%);
  border: 1px solid rgba(124, 124, 135, 0.3);
  border-top: 3px solid var(--accent);
  border-radius: 4px;
  padding: 2rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  border-top-color: #ffed4e;
  transform: translateY(-8px);
}

.card:hover::before {
  left: 100%;
}

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

.card-title {
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-family: 'Bebas Neue', sans-serif;
