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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter Regular", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #0f3460;
  color: #e8e8e8;
  line-height: 1.6;
  font-size: 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: "Inter Bold", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #e8e8e8;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.015em;
}

h3 {
  font-size: 1.875rem;
  letter-spacing: -0.01em;
}

h4 {
  font-size: 1.5rem;
  letter-spacing: 0;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1.5rem;
  color: #e8e8e8;
  font-weight: 400;
}

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

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

/* Header */
.header {
  background-color: #16213e;
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(124, 124, 135, 0.2);
}

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

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

.brand-name {
  font-family: "Inter Bold", sans-serif;
  font-size: 1.5rem;
  color: #e8e8e8;
  font-weight: 700;
}

.brand-tagline {
  font-size: 0.75rem;
  color: #00d4ff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  color: #e8e8e8;
  font-weight: 500;
  font-size: 0.95rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
  display: inline-block;
}

.nav-link:hover {
  border-bottom-color: #00d4ff;
  color: #00d4ff;
  text-decoration: none;
}

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

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

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(124, 124, 135, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

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

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

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

.hero h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 8vw, 3.5rem);
}

.hero p {
  font-size: 1.25rem;
  color: #b0b0b8;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.tagline-accent {
  color: #00d4ff;
  font-weight: 600;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 4px;
  font-family: "Inter Bold", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary {
  background-color: #00d4ff;
  color: #16213e;
}

.btn-primary:hover {
  background-color: #00e6ff;
  box-shadow: 0 8px 24px rgba(0, 212, 255, 0.3);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: #7c7c87;
  color: #e8e8e8;
}

.btn-secondary:hover {
  background-color: #8f8f9a;
  box-shadow: 0 6px 20px rgba(124, 124, 135, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid #00d4ff;
  color: #00d4ff;
}

.btn-outline:hover {
  background-color: #00d4ff;
  color: #16213e;
}

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

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

.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: 80px;
  height: 4px;
  background: linear-gradient(90deg, #7c7c87 0%, #00d4ff 100%);
  border-radius: 2px;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #7c7c87 20%, #7c7c87 80%, transparent 100%);
  margin: 3rem 0;
}

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

.card {
  background-color: #16213e;
  border-radius: 8px;
  padding: 2rem;
  border-top: 4px solid #00d4ff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  background: rgba(0, 212, 255, 0.05);
  border-radius: 50%;
  transition: width 0.3s ease, height 0.3s ease;
}

.card:hover {
  box-shadow: 0 12px 32px rgba(0, 212, 255, 0.15);
  transform: translateY(-4px);
}

.card:hover::before {
  width: 200px;
  height: 200px;
}

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

.card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #e8e8e8;
}

.card-content {
  flex-grow: 1;
}

.card-description {
  font-size: 0.95rem;
  color: #b0b0b8;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

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

.card-link {
  color: #00d4ff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.card-link:hover {
  color: #00e6ff;
  transform: translateX(4px);
  text-decoration: none;
}

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

.article {
  background-color: #16213e;
  border-radius: 8px;
  padding: 2rem;
  border-left: 4px solid #00d4ff;
  box-shadow:
