/* ============================================
   D333 BET - Master CSS Design System
   Style: Emerald Fortune (Style 6)
   Target Market: Brazil
   Version: 1.0
   ============================================ */

/* ===========================================
   CSS DESIGN TOKENS
   =========================================== */
:root {
  /* Brand Colors - Emerald Fortune Theme */
  --color-primary: #10B981;
  --color-primary-dark: #059669;
  --color-primary-light: #34D399;
  --color-secondary: #064E3B;
  --color-accent: #FBBF24;
  --color-accent-light: #FCD34D;

  /* Background Colors */
  --color-bg-dark: #022C22;
  --color-bg-medium: #064E3B;
  --color-bg-light: #065F46;
  --color-bg-card: rgba(6, 78, 59, 0.8);
  --color-bg-card-hover: rgba(16, 185, 129, 0.1);

  /* Text Colors */
  --color-text-primary: #ECFDF5;
  --color-text-secondary: #A7F3D0;
  --color-text-muted: #6EE7B7;
  --color-text-dark: #022C22;

  /* State Colors */
  --color-success: #10B981;
  --color-warning: #F59E0B;
  --color-error: #EF4444;
  --color-info: #3B82F6;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 20px rgba(16, 185, 129, 0.4);
  --shadow-gold: 0 0 20px rgba(251, 191, 36, 0.4);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Poppins', var(--font-primary);
  --font-mono: 'Fira Code', 'Consolas', monospace;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;

  /* Font Weights */
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;

  /* Line Heights */
  --leading-tight: 1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 500ms ease;

  /* Z-Index Scale */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-tooltip: 600;

  /* Container Width */
  --container-max: 1200px;
  --container-content: 900px;
}

/* ===========================================
   CSS RESET & BASE
   =========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-text-primary);
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-secondary) 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Lazy loading support */
img[loading="lazy"] {
  opacity: 1;
  transition: opacity var(--transition-normal);
}

img.loading {
  opacity: 0;
}

input, button, textarea, select {
  font: inherit;
}

a {
  color: var(--color-primary-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-accent);
}

/* ===========================================
   TYPOGRAPHY
   =========================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

h1 {
  font-size: var(--text-4xl);
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: var(--text-3xl);
  color: var(--color-accent);
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: var(--space-sm);
  margin-top: var(--space-2xl);
}

h3 {
  font-size: var(--text-2xl);
  color: var(--color-primary-light);
  margin-top: var(--space-xl);
}

h4 {
  font-size: var(--text-xl);
  color: var(--color-text-secondary);
}

p {
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary);
}

strong, b {
  font-weight: var(--font-semibold);
  color: var(--color-text-primary);
}

/* ===========================================
   LAYOUT
   =========================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.content-wrapper {
  max-width: var(--container-content);
  margin: 0 auto;
}

main {
  padding: var(--space-2xl) 0;
}

section {
  margin-bottom: var(--space-2xl);
}

/* ===========================================
   HEADER STYLES
   =========================================== */
.site-header {
  background: linear-gradient(180deg, var(--color-bg-dark) 0%, transparent 100%);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  padding: var(--space-md) 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(16, 185, 129, 0.2);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.logo img {
  height: 40px;
  width: auto;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.main-nav {
  display: flex;
  gap: var(--space-lg);
}

.main-nav a {
  color: var(--color-text-secondary);
  font-weight: var(--font-medium);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.main-nav a:hover {
  color: var(--color-text-primary);
  background: var(--color-bg-card-hover);
}

.header-cta {
  display: flex;
  gap: var(--space-md);
}

/* Mobile Navigation */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-text-primary);
  font-size: var(--text-2xl);
  cursor: pointer;
  padding: var(--space-sm);
}

/* ===========================================
   BUTTONS
   =========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  text-decoration: none;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-text-primary);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.6);
  color: var(--color-text-primary);
}

.btn-accent {
  background: linear-gradient(135deg, var(--color-accent) 0%, #D97706 100%);
  color: var(--color-text-dark);
  box-shadow: var(--shadow-gold);
}

.btn-accent:hover {
  background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-accent) 100%);
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(251, 191, 36, 0.6);
  color: var(--color-text-dark);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary-light);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-text-primary);
}

.btn-lg {
  padding: var(--space-md) var(--space-xl);
  font-size: var(--text-lg);
}

/* CTA Button Animation */
.cta-button {
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

/* ===========================================
   CARDS
   =========================================== */
.card {
  background: var(--color-bg-card);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
}

.card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.card-header {
  margin-bottom: var(--space-md);
}

.card-title {
  font-size: var(--text-xl);
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.card-body {
  color: var(--color-text-secondary);
}

.card-footer {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(16, 185, 129, 0.2);
}

/* Featured Card */
.card-featured {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-gold);
}

.card-featured::before {
  content: '★';
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--color-accent);
  color: var(--color-text-dark);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
}

/* ===========================================
   TABLES
   =========================================== */
.table-container {
  overflow-x: auto;
  margin: var(--space-lg) 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-bg-card);
}

thead {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-bg-dark) 100%);
}

th {
  padding: var(--space-md);
  text-align: left;
  font-weight: var(--font-semibold);
  color: var(--color-accent);
  border-bottom: 2px solid var(--color-primary);
}

td {
  padding: var(--space-md);
  border-bottom: 1px solid rgba(16, 185, 129, 0.1);
  color: var(--color-text-secondary);
}

tr:hover td {
  background: var(--color-bg-card-hover);
}

tr:last-child td {
  border-bottom: none;
}

/* ===========================================
   LISTS
   =========================================== */
ul, ol {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

li {
  margin-bottom: var(--space-sm);
  color: var(--color-text-secondary);
}

ul li::marker {
  color: var(--color-primary);
}

ol li::marker {
  color: var(--color-accent);
  font-weight: var(--font-bold);
}

/* Custom List Styles */
.checklist {
  list-style: none;
  padding-left: 0;
}

.checklist li {
  padding-left: var(--space-xl);
  position: relative;
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: var(--font-bold);
}

/* ===========================================
   ALERT BOXES
   =========================================== */
.alert {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  margin: var(--space-md) 0;
  border-left: 4px solid;
}

.alert-warning {
  background: rgba(245, 158, 11, 0.1);
  border-color: var(--color-warning);
  color: var(--color-accent-light);
}

.alert-info {
  background: rgba(59, 130, 246, 0.1);
  border-color: var(--color-info);
  color: #93C5FD;
}

.alert-success {
  background: rgba(16, 185, 129, 0.1);
  border-color: var(--color-success);
  color: var(--color-primary-light);
}

.alert-danger {
  background: rgba(239, 68, 68, 0.1);
  border-color: var(--color-error);
  color: #FCA5A5;
}

.alert-title {
  font-weight: var(--font-bold);
  margin-bottom: var(--space-sm);
}

/* ===========================================
   HERO SECTION
   =========================================== */
.hero {
  position: relative;
  padding: var(--space-3xl) 0;
  text-align: center;
  overflow: hidden;
  margin-top: 70px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(2, 44, 34, 0.9) 0%, rgba(6, 78, 59, 0.8) 100%);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

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

.hero h1 {
  font-size: var(--text-5xl);
  margin-bottom: var(--space-lg);
}

.hero-subtitle {
  font-size: var(--text-xl);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ===========================================
   CONTENT SECTIONS
   =========================================== */
.content-section {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  margin-bottom: var(--space-xl);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-title {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  color: var(--color-text-muted);
  font-size: var(--text-lg);
}

/* ===========================================
   GRID LAYOUTS
   =========================================== */
.grid {
  display: grid;
  gap: var(--space-lg);
}

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

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

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

/* ===========================================
   FAQ / ACCORDION
   =========================================== */
.faq-item {
  background: var(--color-bg-card);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  overflow: hidden;
}

.faq-question {
  padding: var(--space-md) var(--space-lg);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: var(--font-semibold);
  color: var(--color-text-primary);
  transition: background var(--transition-fast);
}

.faq-question:hover {
  background: var(--color-bg-card-hover);
}

.faq-question::after {
  content: '+';
  font-size: var(--text-xl);
  color: var(--color-primary);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 var(--space-lg);
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-item.active .faq-answer {
  padding: var(--space-md) var(--space-lg);
  max-height: 500px;
}

/* ===========================================
   FOOTER
   =========================================== */
.site-footer {
  background: linear-gradient(180deg, var(--color-secondary) 0%, var(--color-bg-dark) 100%);
  border-top: 1px solid rgba(16, 185, 129, 0.2);
  padding: var(--space-2xl) 0 var(--space-lg);
  margin-top: var(--space-3xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo {
  margin-bottom: var(--space-md);
}

.footer-brand p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.footer-section h4 {
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  font-size: var(--text-base);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-primary-light);
}

.footer-bottom {
  max-width: var(--container-max);
  margin: var(--space-2xl) auto 0;
  padding: var(--space-lg) var(--space-md) 0;
  border-top: 1px solid rgba(16, 185, 129, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-bottom p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin: 0;
}

.age-restriction {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--color-error);
  color: white;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
}

/* ===========================================
   RESPONSIBLE GAMBLING BANNER
   =========================================== */
.responsible-banner {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid var(--color-error);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
  margin: var(--space-lg) 0;
}

.responsible-banner p {
  margin: 0;
  font-size: var(--text-sm);
  color: #FCA5A5;
}

.responsible-banner a {
  color: var(--color-accent);
  font-weight: var(--font-semibold);
}

/* ===========================================
   BREADCRUMB
   =========================================== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--color-text-muted);
}

.breadcrumb a:hover {
  color: var(--color-primary-light);
}

.breadcrumb span {
  color: var(--color-text-muted);
}

/* ===========================================
   BLOCKQUOTE
   =========================================== */
blockquote {
  border-left: 4px solid var(--color-primary);
  padding: var(--space-md) var(--space-lg);
  background: var(--color-bg-card);
  margin: var(--space-lg) 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--color-text-secondary);
}

/* ===========================================
   RELATED PAGES
   =========================================== */
.related-pages {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-top: var(--space-2xl);
}

.related-pages h3 {
  margin-bottom: var(--space-lg);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
}

.related-link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--color-bg-medium);
  border-radius: var(--radius-md);
  color: var(--color-text-secondary);
  transition: all var(--transition-fast);
}

.related-link:hover {
  background: var(--color-primary);
  color: var(--color-text-primary);
  transform: translateX(4px);
}

/* ===========================================
   RESPONSIVE DESIGN
   =========================================== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 768px) {
  :root {
    --text-4xl: 1.875rem;
    --text-5xl: 2.25rem;
  }

  .site-header {
    padding: var(--space-sm) 0;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg-dark);
    flex-direction: column;
    padding: var(--space-md);
    border-top: 1px solid rgba(16, 185, 129, 0.2);
  }

  .main-nav.active {
    display: flex;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: var(--space-2xl) 0;
    margin-top: 60px;
  }

  .hero h1 {
    font-size: var(--text-3xl);
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

  .content-section {
    padding: var(--space-lg);
  }

  table {
    font-size: var(--text-sm);
  }

  th, td {
    padding: var(--space-sm);
  }
}

/* ===========================================
   UTILITY CLASSES
   =========================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--color-primary) !important; }
.text-accent { color: var(--color-accent) !important; }
.text-muted { color: var(--color-text-muted) !important; }

.bg-dark { background: var(--color-bg-dark); }
.bg-card { background: var(--color-bg-card); }

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-lg { margin-top: var(--space-lg); }
.mb-lg { margin-bottom: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-xl { margin-bottom: var(--space-xl); }

.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }

.rounded { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }

.shadow { box-shadow: var(--shadow-md); }
.shadow-glow { box-shadow: var(--shadow-glow); }

/* Print Styles */
@media print {
  .site-header,
  .site-footer,
  .btn,
  .cta-button {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  a {
    color: black;
    text-decoration: underline;
  }
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes glow {
  0%, 100% { box-shadow: var(--shadow-glow); }
  50% { box-shadow: 0 0 30px rgba(16, 185, 129, 0.6); }
}

.animate-fadeIn {
  animation: fadeIn 0.5s ease forwards;
}

.animate-pulse {
  animation: pulse 2s infinite;
}

.animate-glow {
  animation: glow 2s infinite;
}
