@font-face {
  font-family: 'Montserrat Bold';
  src: url('https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCJq5nBAxVPcR8H7MwqLvCmKIAj.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Open Sans Regular';
  src: url('https://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX5ZZjirDP9ZYzx.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans Regular', sans-serif;
  background-color: #0f3460;
  color: #f0f0f0;
  line-height: 1.6;
  letter-spacing: 0.5px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat Bold', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: #f0f0f0;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

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

h4 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
}

h5 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

h6 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #e0e0e0;
}

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

a:hover {
  color: #00f7ff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

header.header {
  background-color: #16213e;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-family: 'Montserrat Bold', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #00d4ff;
}

.logo .casino-icon {
  margin-right: 12px;
  width: 40px;
  height: 40px;
}

.tagline {
  font-size: 0.75rem;
  color: #7c7c87;
  font-style: italic;
  margin-left: 12px;
  border-left: 2px solid #7c7c87;
  padding-left: 12px;
  display: none;
}

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

nav.nav a {
  font-family: 'Montserrat Bold', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f0f0f0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background-color: #00d4ff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

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

section.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;
}

section.hero .container {
  position: relative;
  z-index: 1;
}

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

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

.hero h1 {
  color: #00d4ff;
  text-shadow: 0 2px 10px rgba(0, 212, 255, 0.2);
}

.hero p {
  font-size: 1.3rem;
  color: #e0e0e0;
  max-width: 800px;
  margin: 1.5rem auto 2rem;
}

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

.btn {
  font-family: 'Montserrat Bold', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.85rem 2.5rem;
  border: 2px solid #00d4ff;
  background-color: transparent;
  color: #00d4ff;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  display: inline-block;
}

.btn:hover {
  background-color: #00d4ff;
  color: #16213e;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

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

.btn-primary:hover {
  background-color: #00f7ff;
  border-color: #00f7ff;
  box-shadow: 0 6px 20px rgba(0, 247, 255, 0.4);
}

section.section {
  padding: 5rem 0;
  position: relative;
}

section.section:nth-child(even) {
  background-color: rgba(124, 124, 135, 0.05);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #7c7c87;
}

.section-title h2 {
  color: #00d4ff;
}

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

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

.card:hover {
  box-shadow: 0 8px 24px rgba(0, 212, 255, 0.2);
  transform: translateY(-5px);
}

.card-header {
  padding: 2rem;
  text-align: center;
}

.card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  fill: #00d4ff;
}

.card h3 {
  color: #00d4ff;
  margin-bottom: 0.5rem;
}

.card-body {
  padding: 0 2rem 2rem;
  color: #e0e0e0;
}

.card-body p {
  font-size: 0.95rem;
  color: #d0d0d0;
}

.card-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid #7c7c87;
  text-align: center;
}

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

.card-footer a:hover {
  gap: 0.8rem;
  color: #00f7ff;
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.card-list li {
  padding: 0.6rem 0;
  color: #d0d0d0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.card
