/* =================================
   WAGECRAFT.SHOP - CASINO INFORMATION
   Baccarat Rules & Variations
   ================================= */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #0f0f0f;
  color: #f0f0f0;
  line-height: 1.6;
  letter-spacing: 0.3px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 1px;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #f0f0f0;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #f0f0f0;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #f0f0f0;
}

h4 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: #d4af37;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.8;
  color: #f0f0f0;
}

a {
  color: #d4af37;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

/* Header and Navigation */
.header {
  background-color: #2d2d2d;
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  border-bottom: 2px solid #5f5f5f;
}

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

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #d4af37;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

.logo-main {
  font-size: 1.5rem;
}

.logo-tagline {
  font-size: 0.65rem;
  color: #5f5f5f;
  font-family: 'Lato', sans-serif;
  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;
}

.nav {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-item {
  position: relative;
}

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

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

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  padding: 6rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #d4af37;
}

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

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(95, 95, 95, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

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

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #f0f0f0;
}

.hero p {
  font-size: 1.25rem;
  color: #d4af37;
  margin-bottom: 2rem;
  font-weight: 500;
}

.hero-subtitle {
  font-size: 1rem;
  color: #b0b0b0;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #d4af37;
  color: #0f0f0f;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn:hover {
  background-color: #e6c547;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
  color: #0f0f0f;
  text-decoration: none;
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #d4af37;
  border: 2px solid #d4af37;
  box-shadow: none;
}

.btn-secondary:hover {
  background-color: #d4af37;
  color: #0f0f0f;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-small {
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
}

/* Sections */
.section {
  padding: 5rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 2rem;
}

.section-title h2 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
}

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

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #5f5f5f, #d4af37, #5f5f5f);
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #5f5f5f, transparent);
  margin: 4rem 0;
  width: 100%;
}

/* Cards */
.card {
  background-color: #2d2d2d;
  border-radius: 4px;
  padding: 2rem;
  border-top: 4px solid #d4af37;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
  transform: translateY(-4px);
}

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

.card h3 {
  color: #d4af37;
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.card p {
  color: #d0d0d0;
  flex: 1;
  margin-bottom: 1.5rem;
}

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

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

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-cols-1 {
  grid-template-columns: 1fr;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-
