/* ============================================
   澳门彩 - 澳门博彩文化与赌场深度导览平台
   CSS前缀: am-
   平台备案编号: MACU-AM-2026-2401
   ============================================ */

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

:root {
  --am-gold: #C9A84C;
  --am-gold-light: #E8D48B;
  --am-dark: #1A1A2E;
  --am-dark-deep: #0F0F1A;
  --am-emerald: #0D4D3A;
  --am-emerald-dark: #0A3A2C;
  --am-emerald-light: #1A6B52;
  --am-red: #C41E3A;
  --am-red-dark: #8B0000;
  --am-white: #F5F0E8;
  --am-cream: #FDF8EF;
  --am-text: #333;
  --am-text-light: #999;
  --am-border: rgba(201,168,76,0.3);
  --am-shadow: 0 4px 20px rgba(0,0,0,0.15);
  --am-radius: 8px;
  --am-transition: all 0.3s ease;
  --am-font-heading: 'Noto Serif SC', 'Georgia', serif;
  --am-font-body: 'Noto Sans SC', 'Helvetica Neue', Arial, sans-serif;
}

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

body {
  font-family: var(--am-font-body);
  color: var(--am-text);
  background: var(--am-cream);
  line-height: 1.8;
  overflow-x: hidden;
}

a { color: var(--am-gold); text-decoration: none; transition: var(--am-transition); }
a:hover { color: var(--am-red); }

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

h1, h2, h3, h4, h5, h6 { font-family: var(--am-font-heading); font-weight: 700; line-height: 1.4; }

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

/* === Header / Navigation === */
.am-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: linear-gradient(135deg, var(--am-dark-deep) 0%, var(--am-dark) 100%);
  border-bottom: 2px solid var(--am-gold);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  transition: var(--am-transition);
}

.am-nav { display: flex; align-items: center; justify-content: space-between; padding: 0 30px; height: 70px; }

.am-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--am-font-heading); font-size: 1.6rem; font-weight: 700;
  color: var(--am-gold); text-decoration: none;
}
.am-logo-icon {
  width: 42px; height: 42px; background: linear-gradient(135deg, var(--am-gold), var(--am-gold-light));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--am-dark); font-weight: 900;
}

.am-nav-links { display: flex; list-style: none; gap: 5px; }
.am-nav-links a {
  display: block; padding: 8px 16px; color: var(--am-white); font-size: 0.9rem;
  border-radius: var(--am-radius); transition: var(--am-transition); position: relative;
}
.am-nav-links a:hover, .am-nav-links a.am-active {
  color: var(--am-gold); background: rgba(201,168,76,0.1);
}
.am-nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px;
  background: var(--am-gold); transition: var(--am-transition); transform: translateX(-50%);
}
.am-nav-links a:hover::after, .am-nav-links a.am-active::after { width: 60%; }

.am-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 5px;
}
.am-hamburger span { width: 25px; height: 2px; background: var(--am-gold); transition: var(--am-transition); }

/* === Hero Banner === */
.am-hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--am-dark-deep) 0%, var(--am-emerald-dark) 50%, var(--am-dark) 100%);
  overflow: hidden;
}
.am-hero-bg {
  position: absolute; inset: 0; z-index: 1;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  opacity: 0.3;
}
.am-hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(15,15,26,0.6) 0%, rgba(13,77,58,0.4) 50%, rgba(15,15,26,0.8) 100%);
}
.am-hero-pattern {
  position: absolute; inset: 0; z-index: 3; opacity: 0.08;
  background-image: repeating-conic-gradient(var(--am-gold) 0% 25%, transparent 0% 50%);
  background-size: 40px 40px;
  animation: am-pattern-scroll 60s linear infinite;
}
@keyframes am-pattern-scroll { to { background-position: 400px 400px; } }

.am-hero-content {
  position: relative; z-index: 10; text-align: center; padding: 40px 20px;
}
.am-hero-badge {
  display: inline-block; padding: 6px 20px; border: 1px solid var(--am-gold);
  border-radius: 30px; color: var(--am-gold); font-size: 0.85rem; letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 20px;
}
.am-hero h1 {
  font-size: 3.5rem; color: var(--am-white); margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.am-hero h1 span { color: var(--am-gold); display: block; font-size: 1.2em; }
.am-hero-desc {
  font-size: 1.15rem; color: rgba(245,240,232,0.8); max-width: 700px; margin: 0 auto 30px;
  line-height: 1.9;
}
.am-hero-cta {
  display: inline-flex; gap: 15px; flex-wrap: wrap; justify-content: center;
}
.am-btn {
  display: inline-block; padding: 14px 36px; border-radius: 50px; font-size: 1rem;
  font-weight: 600; cursor: pointer; transition: var(--am-transition); border: none;
  text-decoration: none;
}
.am-btn-primary {
  background: linear-gradient(135deg, var(--am-gold), var(--am-gold-light));
  color: var(--am-dark); box-shadow: 0 4px 15px rgba(201,168,76,0.4);
}
.am-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(201,168,76,0.6); color: var(--am-dark); }
.am-btn-outline {
  background: transparent; border: 2px solid var(--am-gold); color: var(--am-gold);
}
.am-btn-outline:hover { background: var(--am-gold); color: var(--am-dark); }

/* === Section Common === */
.am-section {
  padding: 80px 0; position: relative;
}
.am-section-dark {
  background: linear-gradient(135deg, var(--am-dark-deep), var(--am-dark));
  color: var(--am-white);
}
.am-section-emerald {
  background: linear-gradient(135deg, var(--am-emerald-dark), var(--am-emerald));
  color: var(--am-white);
}
.am-section-header {
  text-align: center; margin-bottom: 50px;
}
.am-section-header h2 {
  font-size: 2.2rem; margin-bottom: 15px; position: relative; display: inline-block;
}
.am-section-header h2::after {
  content: ''; display: block; width: 60px; height: 3px;
  background: var(--am-gold); margin: 12px auto 0;
}
.am-section-dark .am-section-header h2 { color: var(--am-gold); }
.am-section-header p { font-size: 1.05rem; color: var(--am-text-light); max-width: 600px; margin: 0 auto; }
.am-section-dark .am-section-header p { color: rgba(245,240,232,0.7); }

/* === Casino Cards (Module 2) === */
.am-casino-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.am-casino-card {
  background: var(--am-white); border-radius: var(--am-radius); overflow: hidden;
  box-shadow: var(--am-shadow); transition: var(--am-transition); cursor: pointer;
  border: 1px solid var(--am-border);
}
.am-casino-card:hover { transform: translateY(-8px); box-shadow: 0 12px 40px rgba(0,0,0,0.2); }
.am-casino-card-img {
  height: 200px; overflow: hidden;
}
.am-casino-card-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--am-transition); }
.am-casino-card:hover .am-casino-card-img img { transform: scale(1.08); }
.am-casino-card-body { padding: 20px; }
.am-casino-card-body h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--am-dark); }
.am-casino-card-body p { font-size: 0.9rem; color: var(--am-text-light); margin-bottom: 12px; }
.am-casino-card-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.am-casino-card-tag {
  padding: 3px 10px; background: rgba(201,168,76,0.1); border: 1px solid var(--am-border);
  border-radius: 20px; font-size: 0.75rem; color: var(--am-gold);
}

/* === Timeline (Module 3) === */
.am-timeline { position: relative; padding: 20px 0; }
.am-timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(to bottom, var(--am-gold), var(--am-gold-light), var(--am-gold));
  transform: translateX(-50%);
}
.am-timeline-item {
  display: flex; align-items: flex-start; margin-bottom: 40px; position: relative;
}
.am-timeline-item:nth-child(odd) { flex-direction: row; }
.am-timeline-item:nth-child(even) { flex-direction: row-reverse; }
.am-timeline-content {
  width: 45%; padding: 25px; background: rgba(255,255,255,0.05);
  border: 1px solid var(--am-border); border-radius: var(--am-radius);
  backdrop-filter: blur(10px); transition: var(--am-transition);
}
.am-timeline-content:hover { background: rgba(201,168,76,0.08); border-color: var(--am-gold); }
.am-timeline-dot {
  position: absolute; left: 50%; transform: translateX(-50%);
  width: 16px; height: 16px; background: var(--am-gold); border-radius: 50%;
  border: 3px solid var(--am-dark); z-index: 2;
}
.am-timeline-year {
  font-family: var(--am-font-heading); font-size: 1.4rem; color: var(--am-gold);
  font-weight: 700; margin-bottom: 8px;
}
.am-timeline-content h3 { font-size: 1.1rem; color: var(--am-white); margin-bottom: 8px; }
.am-timeline-content p { font-size: 0.9rem; color: rgba(245,240,232,0.7); }

/* === VR Section (Module 4) === */
.am-vr-section {
  position: relative; min-height: 500px; display: flex; align-items: center;
  justify-content: center; overflow: hidden;
}
.am-vr-bg {
  position: absolute; inset: 0; z-index: 1;
  background: url('../images/macau-panorama.jpg') center/cover no-repeat;
  filter: brightness(0.3);
}
.am-vr-content {
  position: relative; z-index: 10; text-align: center; padding: 60px 20px;
}
.am-vr-content h2 { font-size: 2.5rem; color: var(--am-white); margin-bottom: 15px; }
.am-vr-content h2 span { color: var(--am-gold); }
.am-vr-content p { color: rgba(245,240,232,0.8); font-size: 1.1rem; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* === Game Cards (Module 5) === */
.am-game-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.am-game-card {
  background: var(--am-white); border-radius: var(--am-radius); overflow: hidden;
  box-shadow: var(--am-shadow); transition: var(--am-transition);
  border: 1px solid var(--am-border); text-align: center; padding: 30px 20px;
}
.am-game-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.am-game-card-icon {
  width: 80px; height: 80px; margin: 0 auto 15px; border-radius: 50%;
  background: linear-gradient(135deg, var(--am-gold), var(--am-gold-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--am-dark);
}
.am-game-card h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--am-dark); }
.am-game-card p { font-size: 0.9rem; color: var(--am-text-light); margin-bottom: 15px; }

/* === Food Map (Module 6) === */
.am-food-map-container { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: start; }
.am-food-map {
  background: var(--am-dark); border-radius: var(--am-radius); overflow: hidden;
  height: 450px; position: relative; display: flex; align-items: center; justify-content: center;
}
.am-food-map-placeholder {
  color: var(--am-gold); text-align: center; padding: 20px;
}
.am-food-map-placeholder svg { width: 80px; height: 80px; margin-bottom: 15px; fill: var(--am-gold); }
.am-food-list { display: flex; flex-direction: column; gap: 15px; }
.am-food-item {
  display: flex; gap: 15px; padding: 15px; background: var(--am-white);
  border-radius: var(--am-radius); border: 1px solid var(--am-border);
  transition: var(--am-transition); cursor: pointer;
}
.am-food-item:hover { border-color: var(--am-gold); box-shadow: 0 4px 15px rgba(201,168,76,0.2); }
.am-food-item-img { width: 80px; height: 80px; border-radius: var(--am-radius); overflow: hidden; flex-shrink: 0; }
.am-food-item-img img { width: 100%; height: 100%; object-fit: cover; }
.am-food-item-info h4 { font-size: 1rem; color: var(--am-dark); margin-bottom: 4px; }
.am-food-item-info p { font-size: 0.85rem; color: var(--am-text-light); }
.am-food-item-rating { color: var(--am-gold); font-size: 0.85rem; margin-top: 4px; }

/* === Masonry / Waterfall (Module 7) === */
.am-masonry { column-count: 3; column-gap: 25px; }
.am-masonry-item {
  break-inside: avoid; margin-bottom: 25px; background: var(--am-white);
  border-radius: var(--am-radius); overflow: hidden; box-shadow: var(--am-shadow);
  border: 1px solid var(--am-border); transition: var(--am-transition);
}
.am-masonry-item:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.am-masonry-item-img { width: 100%; }
.am-masonry-item-body { padding: 20px; }
.am-masonry-item-body h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--am-dark); }
.am-masonry-item-body p { font-size: 0.85rem; color: var(--am-text-light); margin-bottom: 10px; }
.am-masonry-item-meta { display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--am-text-light); }

/* === Video Grid (Module 8) === */
.am-video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.am-video-card {
  background: var(--am-dark); border-radius: var(--am-radius); overflow: hidden;
  border: 1px solid var(--am-border); transition: var(--am-transition);
}
.am-video-card:hover { border-color: var(--am-gold); box-shadow: 0 8px 30px rgba(201,168,76,0.2); }
.am-video-card video { width: 100%; height: 200px; object-fit: cover; background: #000; }
.am-video-card-body { padding: 15px; }
.am-video-card-body h3 { font-size: 1rem; color: var(--am-white); margin-bottom: 5px; }
.am-video-card-body p { font-size: 0.85rem; color: rgba(245,240,232,0.6); }

/* === Responsible Gaming (Module 9) === */
.am-responsible { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.am-responsible-item {
  text-align: center; padding: 30px 20px;
  background: rgba(255,255,255,0.05); border-radius: var(--am-radius);
  border: 1px solid var(--am-border); transition: var(--am-transition);
}
.am-responsible-item:hover { background: rgba(201,168,76,0.05); border-color: var(--am-gold); }
.am-responsible-icon {
  width: 60px; height: 60px; margin: 0 auto 15px; border-radius: 50%;
  background: rgba(201,168,76,0.15); display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--am-gold);
}
.am-responsible-item h3 { font-size: 1.05rem; color: var(--am-white); margin-bottom: 8px; }
.am-responsible-item p { font-size: 0.9rem; color: rgba(245,240,232,0.7); }

/* === Partners (Module 10) === */
.am-partners { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; align-items: center; }
.am-partner-badge {
  width: 140px; height: 140px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; flex-direction: column; text-align: center;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border: 2px solid var(--am-gold); transition: var(--am-transition); padding: 10px;
}
.am-partner-badge:hover { transform: scale(1.08); box-shadow: 0 0 30px rgba(201,168,76,0.3); }
.am-partner-badge-icon { font-size: 2rem; margin-bottom: 5px; }
.am-partner-badge span { font-size: 0.7rem; color: var(--am-gold); font-weight: 600; line-height: 1.3; }

/* === World Clocks (Module 11) === */
.am-clocks { display: flex; justify-content: center; gap: 50px; flex-wrap: wrap; }
.am-clock-item { text-align: center; }
.am-clock-city { font-size: 0.9rem; color: var(--am-gold); font-weight: 600; margin-bottom: 10px; letter-spacing: 2px; }
.am-clock-face {
  width: 120px; height: 120px; border-radius: 50%; position: relative;
  background: linear-gradient(135deg, #2a2a3e, #1a1a2e);
  border: 3px solid var(--am-gold); box-shadow: 0 0 20px rgba(201,168,76,0.2);
}
.am-clock-face::before {
  content: ''; position: absolute; top: 50%; left: 50%; width: 8px; height: 8px;
  background: var(--am-gold); border-radius: 50%; transform: translate(-50%, -50%); z-index: 5;
}
.am-clock-hand {
  position: absolute; bottom: 50%; left: 50%; transform-origin: bottom center;
  border-radius: 2px;
}
.am-clock-hour { width: 3px; height: 30px; background: var(--am-gold); }
.am-clock-minute { width: 2px; height: 40px; background: var(--am-white); }
.am-clock-second { width: 1px; height: 45px; background: var(--am-red); }
.am-clock-time { font-size: 0.85rem; color: var(--am-white); margin-top: 10px; font-family: monospace; }

/* === Footer === */
.am-footer {
  background: linear-gradient(135deg, var(--am-dark-deep), var(--am-dark));
  border-top: 2px solid var(--am-gold); padding: 60px 0 0;
}
.am-footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-bottom: 40px; }
.am-footer-col h4 {
  font-size: 1rem; color: var(--am-gold); margin-bottom: 20px; position: relative;
  padding-bottom: 10px;
}
.am-footer-col h4::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px;
  background: var(--am-gold);
}
.am-footer-col ul { list-style: none; }
.am-footer-col li { margin-bottom: 10px; }
.am-footer-col a { color: rgba(245,240,232,0.7); font-size: 0.9rem; }
.am-footer-col a:hover { color: var(--am-gold); padding-left: 5px; }
.am-footer-col p { color: rgba(245,240,232,0.6); font-size: 0.85rem; line-height: 1.7; }

.am-footer-social { display: flex; gap: 12px; margin-top: 15px; }
.am-footer-social a {
  width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; background: rgba(201,168,76,0.15); border: 1px solid var(--am-border);
  color: var(--am-gold); font-size: 0.9rem; transition: var(--am-transition);
}
.am-footer-social a:hover { background: var(--am-gold); color: var(--am-dark); }

.am-footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.2); padding: 20px 0;
  text-align: center; color: rgba(245,240,232,0.5); font-size: 0.8rem;
}
.am-footer-bottom a { color: var(--am-gold); }
.am-age-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--am-red);
  color: var(--am-red); font-size: 0.75rem; font-weight: 700; margin: 0 5px;
}

/* === Modal === */
.am-modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.8); z-index: 2000;
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.am-modal-overlay.am-active { display: flex; }
.am-modal {
  background: var(--am-white); border-radius: var(--am-radius); max-width: 700px;
  width: 100%; max-height: 90vh; overflow-y: auto; position: relative;
  border: 2px solid var(--am-gold);
}
.am-modal-close {
  position: absolute; top: 15px; right: 15px; width: 36px; height: 36px;
  border-radius: 50%; border: none; background: var(--am-dark); color: var(--am-gold);
  font-size: 1.2rem; cursor: pointer; z-index: 10; transition: var(--am-transition);
}
.am-modal-close:hover { background: var(--am-red); color: var(--am-white); }
.am-modal-img { width: 100%; height: 300px; object-fit: cover; }
.am-modal-body { padding: 30px; }
.am-modal-body h2 { font-size: 1.5rem; margin-bottom: 15px; color: var(--am-dark); }
.am-modal-body p { margin-bottom: 12px; color: var(--am-text); }

/* === Page Header (Inner Pages) === */
.am-page-header {
  padding: 120px 0 60px; text-align: center; position: relative;
  background: linear-gradient(135deg, var(--am-dark-deep), var(--am-emerald-dark), var(--am-dark));
}
.am-page-header h1 { font-size: 2.5rem; color: var(--am-gold); margin-bottom: 15px; }
.am-page-header p { color: rgba(245,240,232,0.7); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.am-breadcrumb {
  display: flex; justify-content: center; gap: 8px; margin-top: 20px;
  font-size: 0.85rem; color: rgba(245,240,232,0.5);
}
.am-breadcrumb a { color: var(--am-gold); }
.am-breadcrumb span { color: rgba(245,240,232,0.3); }

/* === Content Pages === */
.am-content-section { padding: 60px 0; }
.am-content-section p { margin-bottom: 15px; }
.am-content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.am-sidebar { position: sticky; top: 90px; }
.am-sidebar-widget {
  background: var(--am-white); border-radius: var(--am-radius); padding: 25px;
  border: 1px solid var(--am-border); margin-bottom: 25px;
}
.am-sidebar-widget h3 {
  font-size: 1.1rem; color: var(--am-dark); margin-bottom: 15px;
  padding-bottom: 10px; border-bottom: 2px solid var(--am-gold);
}

/* === Crown Sports Page === */
.am-crown-hero {
  position: relative; min-height: 70vh; display: flex; align-items: center;
  background: linear-gradient(135deg, #0a2e1f 0%, #0d4d3a 50%, #1a1a2e 100%);
  overflow: hidden;
}
.am-crown-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; margin-top: 40px; }
.am-crown-stat {
  text-align: center; padding: 25px; background: rgba(255,255,255,0.05);
  border-radius: var(--am-radius); border: 1px solid var(--am-border);
}
.am-crown-stat-num { font-size: 2.5rem; font-weight: 700; color: var(--am-gold); font-family: var(--am-font-heading); }
.am-crown-stat-label { font-size: 0.85rem; color: rgba(245,240,232,0.6); margin-top: 5px; }

/* === Expert Cards === */
.am-expert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.am-expert-card {
  background: var(--am-white); border-radius: var(--am-radius); overflow: hidden;
  box-shadow: var(--am-shadow); border: 1px solid var(--am-border); transition: var(--am-transition);
}
.am-expert-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.am-expert-card-header { padding: 20px 20px 0; display: flex; align-items: center; gap: 12px; }
.am-expert-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--am-gold), var(--am-gold-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--am-dark); font-weight: 700;
}
.am-expert-info h4 { font-size: 0.95rem; color: var(--am-dark); }
.am-expert-info span { font-size: 0.8rem; color: var(--am-text-light); }
.am-expert-card-body { padding: 20px; }
.am-expert-card-body h3 { font-size: 1.1rem; color: var(--am-dark); margin-bottom: 10px; }
.am-expert-card-body p { font-size: 0.85rem; color: var(--am-text-light); }
.am-expert-card-footer { padding: 0 20px 20px; display: flex; justify-content: space-between; align-items: center; }
.am-expert-tags { display: flex; gap: 6px; }
.am-expert-tag {
  padding: 2px 8px; background: rgba(201,168,76,0.1); border-radius: 12px;
  font-size: 0.7rem; color: var(--am-gold);
}

/* === Testimonials === */
.am-testimonials { display: flex; gap: 25px; overflow-x: auto; padding: 10px 0; scroll-snap-type: x mandatory; }
.am-testimonial-card {
  min-width: 350px; flex-shrink: 0; scroll-snap-align: start;
  background: linear-gradient(135deg, #2a2a3e, #1e1e30);
  border-radius: var(--am-radius); padding: 30px; border: 1px solid var(--am-border);
  position: relative;
}
.am-testimonial-card::before {
  content: '\201C'; position: absolute; top: 15px; left: 20px;
  font-size: 3rem; color: var(--am-gold); opacity: 0.3; font-family: serif;
}
.am-testimonial-text { font-size: 0.95rem; color: rgba(245,240,232,0.8); font-style: italic; margin-bottom: 20px; line-height: 1.7; }
.am-testimonial-author { display: flex; align-items: center; gap: 12px; }
.am-testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--am-gold), var(--am-gold-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--am-dark);
}
.am-testimonial-info h4 { font-size: 0.9rem; color: var(--am-white); }
.am-testimonial-info span { font-size: 0.8rem; color: var(--am-text-light); }

/* === Security Section === */
.am-security { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.am-security-badges { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.am-security-badge {
  width: 120px; height: 120px; border-radius: var(--am-radius);
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.03));
  border: 2px solid var(--am-gold); display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; padding: 10px;
  transition: var(--am-transition);
}
.am-security-badge:hover { transform: scale(1.05); box-shadow: 0 0 20px rgba(201,168,76,0.3); }
.am-security-badge-icon { font-size: 2rem; margin-bottom: 5px; }
.am-security-badge span { font-size: 0.7rem; color: var(--am-gold); font-weight: 600; }
.am-security-text h3 { font-size: 1.5rem; color: var(--am-gold); margin-bottom: 15px; }
.am-security-text p { color: rgba(245,240,232,0.7); margin-bottom: 12px; }
.am-security-list { list-style: none; }
.am-security-list li {
  padding: 8px 0; color: rgba(245,240,232,0.7); font-size: 0.9rem;
  padding-left: 25px; position: relative;
}
.am-security-list li::before {
  content: '\2713'; position: absolute; left: 0; color: var(--am-gold); font-weight: 700;
}

/* === APP Download === */
.am-app-section { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.am-app-mockup {
  width: 280px; height: 560px; margin: 0 auto; border-radius: 30px;
  background: linear-gradient(135deg, #1a1a2e, #2a2a3e);
  border: 3px solid var(--am-gold); position: relative; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.am-app-mockup-screen {
  position: absolute; inset: 10px; border-radius: 22px; overflow: hidden;
  background: linear-gradient(180deg, var(--am-emerald-dark), var(--am-dark));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 20px; text-align: center;
}
.am-app-mockup-screen .am-logo-icon { width: 60px; height: 60px; font-size: 1.5rem; margin-bottom: 15px; }
.am-app-mockup-screen h3 { color: var(--am-gold); font-size: 1.2rem; margin-bottom: 8px; }
.am-app-mockup-screen p { color: rgba(245,240,232,0.6); font-size: 0.8rem; }

.am-app-features h2 { font-size: 2rem; color: var(--am-dark); margin-bottom: 20px; }
.am-app-features p { color: var(--am-text-light); margin-bottom: 25px; }
.am-app-feature-list { list-style: none; margin-bottom: 30px; }
.am-app-feature-list li {
  padding: 12px 0; border-bottom: 1px solid var(--am-border); display: flex; align-items: center; gap: 12px;
}
.am-app-feature-icon {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--am-gold), var(--am-gold-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--am-dark);
}
.am-app-download-btns { display: flex; gap: 15px; }
.am-app-download-btn {
  display: flex; align-items: center; gap: 10px; padding: 12px 24px;
  background: var(--am-dark); color: var(--am-white); border-radius: var(--am-radius);
  border: 1px solid var(--am-border); transition: var(--am-transition);
}
.am-app-download-btn:hover { border-color: var(--am-gold); color: var(--am-gold); }
.am-app-download-btn-icon { font-size: 1.5rem; }
.am-app-download-btn-text { text-align: left; }
.am-app-download-btn-text small { font-size: 0.7rem; color: var(--am-text-light); display: block; }
.am-app-download-btn-text span { font-size: 0.95rem; font-weight: 600; }

/* === World Map === */
.am-world-map {
  position: relative; width: 100%; height: 400px;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.05) 0%, transparent 70%);
  border-radius: var(--am-radius); overflow: hidden;
}
.am-map-dot {
  position: absolute; width: 12px; height: 12px; border-radius: 50%;
  background: var(--am-gold); cursor: pointer; transition: var(--am-transition);
  animation: am-pulse 2s infinite;
}
.am-map-dot:hover { transform: scale(1.5); }
@keyframes am-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.5); }
  50% { box-shadow: 0 0 0 10px rgba(201,168,76,0); }
}
.am-map-dot-label {
  position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%);
  white-space: nowrap; padding: 4px 10px; background: var(--am-dark);
  border: 1px solid var(--am-gold); border-radius: 4px; font-size: 0.75rem;
  color: var(--am-gold); opacity: 0; transition: var(--am-transition); pointer-events: none;
  margin-bottom: 5px;
}
.am-map-dot:hover .am-map-dot-label { opacity: 1; }

/* === Responsive === */
@media (max-width: 1024px) {
  .am-casino-grid, .am-game-grid, .am-video-grid, .am-expert-grid { grid-template-columns: repeat(2, 1fr); }
  .am-masonry { column-count: 2; }
  .am-footer-grid { grid-template-columns: repeat(2, 1fr); }
  .am-content-grid { grid-template-columns: 1fr; }
  .am-crown-stats { grid-template-columns: repeat(2, 1fr); }
  .am-security { grid-template-columns: 1fr; }
  .am-app-section { grid-template-columns: 1fr; }
  .am-food-map-container { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .am-nav-links { display: none; }
  .am-hamburger { display: flex; }
  .am-nav-links.am-mobile-open {
    display: flex; flex-direction: column; position: fixed;
    top: 0; left: 0; width: 280px; height: 100vh;
    background: rgba(15,15,26,0.98); backdrop-filter: blur(20px);
    padding: 80px 20px 20px; z-index: 999; gap: 5px;
  }
  .am-hero h1 { font-size: 2rem; }
  .am-hero h1 span { font-size: 1em; }
  .am-casino-grid, .am-game-grid, .am-video-grid, .am-responsible, .am-expert-grid { grid-template-columns: 1fr; }
  .am-masonry { column-count: 1; }
  .am-footer-grid { grid-template-columns: 1fr; }
  .am-timeline::before { left: 20px; }
  .am-timeline-item, .am-timeline-item:nth-child(even) { flex-direction: row; }
  .am-timeline-content { width: calc(100% - 50px); margin-left: 50px; }
  .am-timeline-dot { left: 20px; }
  .am-clocks { gap: 25px; }
  .am-crown-stats { grid-template-columns: 1fr; }
  .am-section { padding: 50px 0; }
  .am-section-header h2 { font-size: 1.6rem; }
}

/* === Animations === */
.am-fade-in {
  opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease;
}
.am-fade-in.am-visible { opacity: 1; transform: translateY(0); }

/* === Scrollbar === */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--am-dark-deep); }
::-webkit-scrollbar-thumb { background: var(--am-gold); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--am-gold-light); }

/* === Back to Top === */
.am-back-top {
  position: fixed; bottom: 30px; right: 30px; width: 45px; height: 45px;
  border-radius: 50%; background: var(--am-gold); color: var(--am-dark);
  border: none; font-size: 1.2rem; cursor: pointer; z-index: 999;
  display: none; align-items: center; justify-content: center;
  box-shadow: 0 4px 15px rgba(201,168,76,0.4); transition: var(--am-transition);
}
.am-back-top:hover { transform: translateY(-3px); }
.am-back-top.am-show { display: flex; }
