/* Main Stylesheet */
/* Dark theme with gold accents for premium casino feel */

:root {
  --bg-primary: #0d0f14;
  --bg-secondary: #161a24;
  --bg-card: #1c2130;
  --bg-card-hover: #242a3d;
  --gold-primary: #d4af37;
  --gold-light: #f4d03f;
  --gold-dark: #b8860b;
  --text-primary: #f5f5f5;
  --text-secondary: #a8adb8;
  --text-muted: #6c7280;
  --accent-green: #22c55e;
  --accent-red: #ef4444;
  --border-color: #2a3042;
  --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.15);
  --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
  --gradient-dark: linear-gradient(180deg, #0d0f14 0%, #161a24 100%);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  min-height: 100vh;
}

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

a:hover {
  color: var(--gold-light);
}

img {
  max-width: 100%;
  height: auto;
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(13, 15, 20, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  padding: 15px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text-primary);
}

.logo img {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
}

.logo span {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navigation */
.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  color: var(--text-secondary);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: var(--transition);
}

.nav a:hover,
.nav a.active {
  color: var(--gold-primary);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--gold-primary);
  border-radius: 3px;
  transition: var(--transition);
}

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

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

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

/* Mobile Menu */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-secondary);
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 0;
    transition: var(--transition);
    border-left: 1px solid var(--border-color);
  }

  .nav.active {
    right: 0;
  }

  .nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.1rem;
  }

  .nav a::after {
    display: none;
  }
}

/* Main Content */
main {
  padding-top: 80px;
}

/* Hero Section */
.hero {
  padding: 60px 0 80px;
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

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

.hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 1;
}

.hero-logo {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
  box-shadow: var(--shadow-gold);
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero h1 span {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 520px;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gradient-gold);
  color: #000;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 16px 36px;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-download:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
  color: #000;
}

.btn-download svg {
  width: 22px;
  height: 22px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-primary);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-phone {
  position: relative;
  width: 280px;
}

.hero-phone img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-stats {
    gap: 24px;
  }

  .stat-value {
    font-size: 1.4rem;
  }
}

/* App Info Card */
.app-info {
  padding: 60px 0;
}

.info-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.info-item {
  padding: 24px;
  text-align: center;
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.info-item:hover {
  background: var(--bg-card-hover);
}

.info-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold-primary);
}

.info-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.info-value {
  font-weight: 600;
  color: var(--text-primary);
}

/* Section Titles */
.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-title h2 span {
  color: var(--gold-primary);
}

.section-title p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Introduction Section */
.introduction {
  padding: 60px 0;
  background: var(--bg-secondary);
}

.intro-content {
  max-width: 900px;
  margin: 0 auto;
}

.intro-content p {
  margin-bottom: 20px;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.intro-content p:first-of-type::first-letter {
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-primary);
  float: left;
  line-height: 1;
  margin-right: 12px;
  margin-top: 4px;
}

/* Screenshots Section */
.screenshots {
  padding: 80px 0;
}

.screenshots-wrapper {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.screenshots-wrapper::-webkit-scrollbar {
  height: 8px;
}

.screenshots-wrapper::-webkit-scrollbar-track {
  background: var(--bg-card);
  border-radius: 4px;
}

.screenshots-wrapper::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 4px;
}

.screenshot-item {
  flex: 0 0 auto;
  width: 220px;
  scroll-snap-align: center;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.screenshot-item:hover {
  transform: scale(1.05);
}

.screenshot-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: var(--radius-md);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--gold-primary);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 48px;
  color: #fff;
  cursor: pointer;
  padding: 20px;
  transition: var(--transition);
}

.lightbox-nav:hover {
  color: var(--gold-primary);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* Features Section */
.features {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 30px;
  height: 30px;
  color: var(--gold-primary);
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Install Section */
.install {
  padding: 80px 0;
}

.install-steps {
  max-width: 800px;
  margin: 0 auto;
}

.install-step {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  padding: 24px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.install-step:hover {
  border-color: var(--gold-dark);
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
  color: #000;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.step-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  .install-step {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* Game Modes Section */
.game-modes {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.modes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.mode-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: var(--transition);
}

.mode-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold-dark);
}

.mode-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mode-icon svg {
  width: 35px;
  height: 35px;
  color: var(--gold-primary);
}

.mode-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.mode-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Tips Section */
.tips {
  padding: 80px 0;
}

.tips-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.tips-list {
  list-style: none;
}

.tips-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding: 20px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.tips-list li svg {
  width: 24px;
  height: 24px;
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.tips-list li span {
  color: var(--text-secondary);
}

.tips-highlight {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.tips-highlight h3 {
  color: var(--gold-primary);
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.tips-highlight p {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .tips-content {
    grid-template-columns: 1fr;
  }
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  transition: var(--transition);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--gold-primary);
  transition: var(--transition);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  background: var(--bg-card-hover);
}

.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Footer */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

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

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.footer-links h4 {
  color: var(--gold-primary);
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

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

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .footer-brand .logo {
    justify-content: center;
  }

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

/* Page Header (for subpages) */
.page-header {
  padding: 50px 0;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.page-header p {
  color: var(--text-secondary);
}

.breadcrumb {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

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

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

/* Legal Content */
.legal-content {
  padding: 60px 0;
}

.legal-content .container {
  max-width: 900px;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 40px 0 16px;
  color: var(--gold-primary);
}

.legal-content h3 {
  font-size: 1.2rem;
  margin: 28px 0 12px;
}

.legal-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
  color: var(--text-secondary);
  margin: 16px 0 16px 24px;
}

.legal-content li {
  margin-bottom: 10px;
}

.legal-content strong {
  color: var(--text-primary);
}

.last-updated {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  margin-bottom: 32px;
  display: inline-block;
}

.last-updated span {
  color: var(--gold-primary);
  font-weight: 600;
}

/* Changelog Page */
.changelog-content {
  padding: 60px 0;
}

.changelog-content .container {
  max-width: 900px;
}

.version-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
}

.version-card.current {
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

.version-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.version-number {
  font-size: 1.4rem;
  font-weight: 700;
}

.version-card.current .version-number {
  color: var(--gold-primary);
}

.version-date {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.version-badge {
  background: var(--gradient-gold);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

.version-changes h4 {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 16px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.version-changes ul {
  list-style: none;
}

.version-changes li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--text-secondary);
}

.version-changes li::before {
    content: "•";
  position: absolute;
  left: 8px;
  color: var(--gold-primary);
}

.version-specs {
  display: flex;
  gap: 24px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  flex-wrap: wrap;
}

.spec-item {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.spec-item strong {
  color: var(--text-secondary);
}

/* Support Page */
.support-content {
  padding: 60px 0;
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
}

.support-main h2 {
  font-size: 1.5rem;
  margin: 40px 0 20px;
  color: var(--gold-primary);
}

.support-main h2:first-child {
  margin-top: 0;
}

.support-main p {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.support-main ul,
.support-main ol {
  color: var(--text-secondary);
  margin: 16px 0 16px 24px;
}

.support-main li {
  margin-bottom: 12px;
}

.support-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}

.sidebar-card h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--gold-primary);
}

.sidebar-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.sidebar-card a {
  display: block;
  margin-top: 8px;
}

.device-list {
  list-style: none;
}

.device-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.device-list li:last-child {
  border-bottom: none;
}

.device-list li svg {
  width: 18px;
  height: 18px;
  color: var(--accent-green);
  margin-right: 8px;
  vertical-align: middle;
}

@media (max-width: 900px) {
  .support-grid {
    grid-template-columns: 1fr;
  }

  .support-sidebar {
    position: static;
  }
}

/* About Page */
.about-content {
  padding: 60px 0;
}

.about-hero {
  text-align: center;
  padding: 40px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  margin-bottom: 60px;
}

.about-hero img {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
}

.about-hero h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.about-hero p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.about-card h3 {
  color: var(--gold-primary);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.about-card p {
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.about-card ul {
  list-style: none;
  color: var(--text-secondary);
}

.about-card li {
  padding: 8px 0;
  display: flex;
  gap: 12px;
}

.about-card li svg {
  width: 20px;
  height: 20px;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.team-member {
  text-align: center;
  padding: 24px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.team-avatar {
  width: 80px;
  height: 80px;
  background: var(--gradient-gold);
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: #000;
}

.team-member h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.team-member p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Contact Card */
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 40px;
}

.contact-card h3 {
  color: var(--gold-primary);
  margin-bottom: 20px;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item svg {
  width: 24px;
  height: 24px;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  margin-bottom: 4px;
}

.contact-item span {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: var(--gradient-dark);
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Utilities */
.text-gold {
  color: var(--gold-primary);
}

.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-40 {
  margin-top: 40px;
}

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

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

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}