@font-face {
  font-family: 'Bebas Neue';
  src: url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
  font-weight: 400;
  font-style: normal;
}

* {
  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;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', cursive;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.1;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h3 {
  font-size: 1.8rem;
  line-height: 1.3;
}

h4 {
  font-size: 1.4rem;
}

h5 {
  font-size: 1.1rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1.2rem;
  font-size: 1rem;
  letter-spacing: 0.3px;
}

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

a:hover {
  color: #00a8cc;
}

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

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

.logo {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: #f0f0f0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.logo-brand {
  font-size: 1.5rem;
  color: #00d4ff;
}

.logo-tagline {
  font-size: 0.65rem;
  color: #7c7c87;
  letter-spacing: 0.5px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

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

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

.nav a {
  color: #f0f0f0;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.nav a:hover,
.nav a.active {
  border-bottom-color: #00d4ff;
  color: #00d4ff;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #f0f0f0;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #16213e 0%, #0f3460 50%, rgba(0, 212, 255, 0.05) 100%);
  padding: 4rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

.hero h1 {
  color: #f0f0f0;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

.hero .casino-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: block;
}

.cta-button {
  display: inline-block;
  background-color: #00d4ff;
  color: #0f3460;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  margin: 0.5rem;
}

.cta-button:hover {
  background-color: #00a8cc;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 212, 255, 0.3);
}

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

.cta-button-secondary {
  background-color: transparent;
  color: #00d4ff;
  border: 2px solid #00d4ff;
}

.cta-button-secondary:hover {
  background-color: rgba(0, 212, 255, 0.1);
  border-color: #00a8cc;
}

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

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  color: #f0f0f0;
  margin-bottom: 1rem;
}

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

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

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

.card {
  background-color: rgba(30, 40, 70, 0.8);
  border-radius: 8px;
  padding: 2rem;
  border-top: 3px solid #00d4ff;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, transparent 100%);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 212, 255, 0.2);
  border-top-color: #00a8cc;
}

.card-content {
  position: relative;
  z-index: 1;
}

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

.card h3 {
  color: #f0f0f0;
  margin-bottom: 1rem;
}

.card p {
  color: #c0c0c7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

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

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

/* Blog and Articles */
.blog-list {
  max-width: 900px;
  margin: 0 auto;
}

.article {
  background-color: rgba(30, 40, 70, 0.6);
  border-left: 4px solid #00d4ff;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.article:hover {
  background-color: rgba(30, 40, 70, 0.9);
  box-shadow: 0 6px 12px rgba(0, 212, 255, 0.15);
}

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

.article h3 {
  color: #f0f0f0;
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.article-date {
  color: #7c7c87;
  font-size: 0.9rem;
  white-space: nowrap;
}

.article p
