/* Base Variables & Theme */
:root {
  --primary-color: #ffd700; /* VDCasino typical gold/yellow */
  --primary-hover: #ffea00;
  --secondary-color: #e50914; /* Red accent */
  --bg-dark: #0f1115;
  --bg-darker: #08090b;
  --bg-card: rgba(25, 28, 35, 0.7);
  --text-main: #f5f5f5;
  --text-muted: #a0a5b1;
  --glass-border: rgba(255, 255, 255, 0.05);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-darker);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  text-decoration: underline;
  color: var(--primary-hover);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
}
h1 { font-size: 2.5rem; text-align: center; margin: 2rem 0; background: linear-gradient(90deg, #fff, #ffd700); -webkit-background-clip: text; -webkit-text-fill-color: transparent;}
h2 { font-size: 2rem; border-bottom: 2px solid var(--glass-border); display: inline-block; padding-bottom: 0.5rem; margin-top: 2rem;}
p { margin-bottom: 1rem; color: var(--text-muted); }

/* Layout & Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Nav */
header {
  background: rgba(15, 17, 21, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--glass-border);
  padding: 1rem 0;
}

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

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.logo span { color: #fff; }

nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

nav a {
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem;
}
nav a:hover, nav a.active {
  color: var(--primary-color);
  text-decoration: none;
}

/* Hero Section */
.hero {
  padding: 6rem 2rem;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, var(--bg-card), var(--bg-darker));
  border-bottom: 1px solid var(--glass-border);
}

.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

/* Buttons (CTA) */
.cta-button, .btn {
  display: inline-block;
  background: linear-gradient(45deg, var(--primary-color), #ffaa00);
  color: #000;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-decoration: none !important;
}
.cta-button:hover, .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
  color: #000;
}

/* Content Blocks & Cards (Glassmorphism) */
.content-section {
  padding: 4rem 0;
}

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

.card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--glass-shadow);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.3);
}

.card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Breadcrumbs */
.breadcrumb {
  padding: 1rem 0;
  font-size: 0.9rem;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary-color); }
.breadcrumb span { margin: 0 0.5rem; color: #555; }

/* Lists */
.styled-list {
  list-style: none;
  margin: 1rem 0 2rem;
}
.styled-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}
.styled-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

/* Faq */
.faq-item {
  margin-bottom: 1.5rem;
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
}
.faq-item h3 {
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--glass-border);
  padding: 3rem 0;
  margin-top: 4rem;
  text-align: center;
}
.footer-text {
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-container { flex-direction: column; gap: 1rem; }
  nav ul { flex-wrap: wrap; justify-content: center; }
  h1 { font-size: 2rem; }
  .hero { padding: 4rem 1rem; }
}
