/* ============================================
   赏金女王 - 西部荒野赏金猎人博彩平台
   主样式表 sh-style.css
   CSS前缀: sh-
   ============================================ */

/* --- Google Fonts Import (Local fallback) --- */
@import url('https://fonts.googleapis.com/css2?family=Rye&family=Noto+Sans+SC:wght@300;400;500;700;900&display=swap');

/* --- CSS Variables --- */
:root {
  --sh-primary: #4E342E;
  --sh-secondary: #795548;
  --sh-accent: #FFC107;
  --sh-red: #D32F2F;
  --sh-bg: #F5EFE6;
  --sh-text: #3E2723;
  --sh-text-light: #6D4C41;
  --sh-gold: #FFC107;
  --sh-silver: #C0C0C0;
  --sh-bronze: #CD7F32;
  --sh-shadow: 2px 2px 8px rgba(0,0,0,0.2);
  --sh-radius: 4px;
  --sh-font-title: 'Rye', serif;
  --sh-font-body: 'Noto Sans SC', sans-serif;
}

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

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

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

a {
  color: var(--sh-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--sh-red);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--sh-font-title);
  color: var(--sh-primary);
  line-height: 1.3;
  margin-bottom: 0.5em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--sh-text-light);
}

/* --- Layout --- */
.sh-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.sh-section {
  padding: 60px 0;
}

.sh-section-title {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.sh-section-title h2 {
  display: inline-block;
  padding: 0 30px;
  position: relative;
}

.sh-section-title h2::before,
.sh-section-title h2::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 60px;
  height: 2px;
  background: var(--sh-accent);
}

.sh-section-title h2::before { right: 100%; }
.sh-section-title h2::after { left: 100%; }

/* --- Grid System --- */
.sh-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.sh-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.sh-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* --- Navigation --- */
.sh-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--sh-primary);
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  border-bottom: 3px solid var(--sh-secondary);
}

.sh-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: 1280px;
  margin: 0 auto;
  height: 70px;
}

.sh-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sh-logo img {
  height: 50px;
  width: auto;
}

.sh-logo-text {
  font-family: var(--sh-font-title);
  font-size: 1.5rem;
  color: #fff;
}

.sh-logo-text span {
  color: var(--sh-accent);
}

.sh-nav-links {
  display: flex;
  align-items: center;
  gap: 5px;
  list-style: none;
}

.sh-nav-links li a {
  color: var(--sh-text-light);
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
  display: block;
  color: #bcaaa4;
}

.sh-nav-links li a:hover,
.sh-nav-links li a.sh-active {
  color: var(--sh-accent);
}

.sh-nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--sh-accent);
  transition: width 0.3s ease;
}

.sh-nav-links li a:hover::after,
.sh-nav-links li a.sh-active::after {
  width: 80%;
}

.sh-btn-cta {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--sh-accent), #FFD54F);
  color: var(--sh-primary);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--sh-radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: var(--sh-shadow);
}

.sh-btn-cta:hover {
  box-shadow: 0 0 20px rgba(255,193,7,0.5);
  transform: translateY(-2px);
  color: var(--sh-primary);
}

.sh-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.sh-hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--sh-accent);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* --- Hero Section --- */
.sh-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.sh-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(78,52,46,0.7), rgba(62,39,35,0.85));
  z-index: 1;
}

.sh-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 100px 20px 60px;
}

.sh-hero h1 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.sh-gold-text {
  color: var(--sh-accent);
  text-shadow: 0 0 10px rgba(255,193,7,0.3);
}

.sh-hero-subtitle {
  font-size: 1.1rem;
  color: #d7ccc8;
  margin-bottom: 30px;
  font-style: italic;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.sh-hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.sh-btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--sh-accent), #FFD54F);
  color: var(--sh-primary);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: var(--sh-radius);
  border: 2px solid var(--sh-accent);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--sh-shadow);
}

.sh-btn-primary:hover {
  box-shadow: 0 0 25px rgba(255,193,7,0.6);
  transform: translateY(-3px);
  color: var(--sh-primary);
}

.sh-btn-outline {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: var(--sh-radius);
  border: 2px solid var(--sh-accent);
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.sh-hero-ticker {
  background: rgba(0,0,0,0.4);
  padding: 12px 24px;
  border-radius: var(--sh-radius);
  display: inline-block;
  color: var(--sh-accent);
  font-size: 0.95rem;
  min-height: 44px;
}

/* --- Parchment Card Style --- */
.sh-parchment {
  background: linear-gradient(135deg, #f5efe6, #ede0cc);
  border: 2px solid var(--sh-secondary);
  border-radius: var(--sh-radius);
  box-shadow: var(--sh-shadow);
  position: relative;
  overflow: hidden;
}

.sh-parchment::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--sh-secondary) 0px, var(--sh-secondary) 8px, transparent 8px, transparent 12px);
}

/* --- Game Cards (Wanted Poster Style) --- */
.sh-game-card {
  background: linear-gradient(135deg, #f5efe6, #e8d5b7);
  border: 3px solid var(--sh-secondary);
  border-radius: var(--sh-radius);
  overflow: hidden;
  box-shadow: var(--sh-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.sh-game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.sh-game-card-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.sh-game-card-body {
  padding: 20px;
  text-align: center;
}

.sh-game-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.sh-game-stats {
  display: flex;
  justify-content: space-around;
  margin: 15px 0;
  font-size: 0.85rem;
}

.sh-game-stat {
  text-align: center;
}

.sh-game-stat-label {
  display: block;
  color: var(--sh-text-light);
  font-size: 0.75rem;
}

.sh-game-stat-value {
  display: block;
  color: var(--sh-accent);
  font-weight: 700;
  font-size: 1rem;
}

.sh-btn-play {
  display: inline-block;
  padding: 10px 24px;
  background: var(--sh-red);
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.sh-btn-play:hover {
  background: #b71c1c;
  box-shadow: 0 0 15px rgba(211,47,47,0.5);
  color: #fff;
}

/* --- Video Section --- */
.sh-video-section {
  background-size: cover;
  background-position: center;
  position: relative;
}

.sh-video-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(78,52,46,0.85);
}

.sh-video-section .sh-container {
  position: relative;
  z-index: 2;
}

.sh-video-section .sh-section-title h2 {
  color: #fff;
}

.sh-video-card {
  background: rgba(0,0,0,0.3);
  border-radius: var(--sh-radius);
  overflow: hidden;
  border: 2px solid var(--sh-secondary);
}

.sh-video-card video {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #000;
}

.sh-video-card-body {
  padding: 15px;
}

.sh-video-card-body h3 {
  color: var(--sh-accent);
  font-size: 1rem;
  margin-bottom: 8px;
}

.sh-video-card-body p {
  color: #bcaaa4;
  font-size: 0.85rem;
}

/* --- Ranking Table --- */
.sh-ranking {
  background: linear-gradient(135deg, #f5efe6, #ede0cc);
}

.sh-ranking-table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: var(--sh-shadow);
  border-radius: var(--sh-radius);
  overflow: hidden;
}

.sh-ranking-table thead {
  background: var(--sh-primary);
}

.sh-ranking-table th {
  padding: 14px 20px;
  color: var(--sh-accent);
  font-family: var(--sh-font-title);
  font-size: 0.9rem;
  text-align: left;
}

.sh-ranking-table td {
  padding: 12px 20px;
  border-bottom: 1px solid rgba(121,85,72,0.2);
  font-size: 0.9rem;
}

.sh-ranking-table tbody tr {
  background: rgba(255,255,255,0.5);
  transition: background 0.3s ease;
}

.sh-ranking-table tbody tr:hover {
  background: rgba(255,193,7,0.1);
}

.sh-rank-gold { color: var(--sh-gold); font-weight: 700; font-size: 1.1rem; }
.sh-rank-silver { color: var(--sh-silver); font-weight: 700; font-size: 1.05rem; }
.sh-rank-bronze { color: var(--sh-bronze); font-weight: 700; font-size: 1rem; }

/* --- Featured Bounty --- */
.sh-featured {
  background-size: cover;
  background-position: center;
  position: relative;
}

.sh-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(62,39,35,0.8);
}

.sh-featured .sh-container {
  position: relative;
  z-index: 2;
}

.sh-featured-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.sh-featured-img {
  border-radius: var(--sh-radius);
  box-shadow: var(--sh-shadow);
  width: 100%;
}

.sh-featured-info h2 {
  color: var(--sh-accent);
  margin-bottom: 15px;
}

.sh-featured-info p {
  color: #d7ccc8;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.sh-countdown {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.sh-countdown-item {
  text-align: center;
  background: rgba(0,0,0,0.3);
  padding: 10px 15px;
  border-radius: var(--sh-radius);
  border: 1px solid var(--sh-accent);
  min-width: 60px;
}

.sh-countdown-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--sh-accent);
  font-family: var(--sh-font-title);
}

.sh-countdown-label {
  display: block;
  font-size: 0.7rem;
  color: #bcaaa4;
  text-transform: uppercase;
}

/* --- Saloon Register --- */
.sh-saloon {
  background-size: cover;
  background-position: center;
  position: relative;
}

.sh-saloon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(78,52,46,0.9);
}

.sh-saloon .sh-container {
  position: relative;
  z-index: 2;
}

.sh-saloon-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.sh-vip-card {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--sh-accent);
  border-radius: var(--sh-radius);
  padding: 20px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.sh-vip-card:hover {
  transform: translateX(5px);
}

.sh-vip-card h4 {
  color: var(--sh-accent);
  margin-bottom: 8px;
}

.sh-vip-card p {
  color: #bcaaa4;
  font-size: 0.9rem;
}

.sh-register-form {
  background: rgba(0,0,0,0.4);
  padding: 30px;
  border-radius: var(--sh-radius);
  border: 2px solid var(--sh-secondary);
}

.sh-register-form h3 {
  color: var(--sh-accent);
  text-align: center;
  margin-bottom: 20px;
}

.sh-form-input {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 15px;
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--sh-secondary);
  border-radius: var(--sh-radius);
  color: #fff;
  font-size: 0.95rem;
  font-family: var(--sh-font-body);
  transition: border-color 0.3s ease;
}

.sh-form-input::placeholder {
  color: #8d6e63;
}

.sh-form-input:focus {
  outline: none;
  border-color: var(--sh-accent);
}

.sh-btn-register {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--sh-accent), #FFD54F);
  color: var(--sh-primary);
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: var(--sh-radius);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--sh-font-body);
}

.sh-btn-register:hover {
  box-shadow: 0 0 20px rgba(255,193,7,0.5);
}

/* --- Lucky Wheel --- */
.sh-wheel-section {
  text-align: center;
  background: linear-gradient(135deg, var(--sh-primary), #3e2723);
  color: #fff;
}

.sh-wheel-section .sh-section-title h2 {
  color: #fff;
}

.sh-wheel-container {
  max-width: 400px;
  margin: 0 auto 30px;
}

.sh-wheel-img {
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(255,193,7,0.3);
  transition: transform 0.3s ease;
}

.sh-wheel-rules {
  color: #bcaaa4;
  margin-bottom: 20px;
}

.sh-btn-spin {
  display: inline-block;
  padding: 16px 40px;
  background: var(--sh-red);
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 50px;
  border: 3px solid var(--sh-accent);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--sh-font-title);
}

.sh-btn-spin:hover {
  background: #b71c1c;
  box-shadow: 0 0 25px rgba(211,47,47,0.6);
  transform: scale(1.05);
  color: #fff;
}

/* --- News Section --- */
.sh-news-card {
  background: linear-gradient(135deg, #f5efe6, #e8d5b7);
  border: 2px solid var(--sh-secondary);
  border-radius: var(--sh-radius);
  padding: 24px;
  box-shadow: var(--sh-shadow);
  transition: transform 0.3s ease;
  position: relative;
}

.sh-news-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sh-accent);
}

.sh-news-card:hover {
  transform: translateY(-5px);
}

.sh-news-tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--sh-accent);
  color: var(--sh-primary);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 2px;
  margin-bottom: 10px;
}

.sh-news-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.sh-news-card p {
  font-size: 0.85rem;
}

.sh-news-date {
  font-size: 0.75rem;
  color: var(--sh-text-light);
  margin-top: 10px;
}

/* --- Partners / Honor Wall --- */
.sh-partners {
  background-size: cover;
  background-position: center;
  position: relative;
}

.sh-partners::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(62,39,35,0.9);
}

.sh-partners .sh-container {
  position: relative;
  z-index: 2;
}

.sh-partners .sh-section-title h2 {
  color: #fff;
}

.sh-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.sh-badge-item {
  text-align: center;
}

.sh-badge-item img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto 10px;
}

.sh-badge-item p {
  color: #bcaaa4;
  font-size: 0.85rem;
}

.sh-partner-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.sh-partner-logo {
  background: rgba(255,255,255,0.1);
  padding: 15px 25px;
  border-radius: var(--sh-radius);
  color: #bcaaa4;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid rgba(121,85,72,0.3);
  transition: all 0.3s ease;
}

.sh-partner-logo:hover {
  background: rgba(255,193,7,0.1);
  border-color: var(--sh-accent);
  color: var(--sh-accent);
}

/* --- Player Testimonials --- */
.sh-testimonials {
  overflow: hidden;
}

.sh-testimonial-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
}

.sh-testimonial-card {
  min-width: 300px;
  background: linear-gradient(135deg, #f5efe6, #ede0cc);
  border: 2px solid var(--sh-secondary);
  border-radius: var(--sh-radius);
  padding: 24px;
  box-shadow: var(--sh-shadow);
  scroll-snap-align: start;
  flex-shrink: 0;
}

.sh-testimonial-name {
  font-weight: 700;
  color: var(--sh-accent);
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.sh-testimonial-text {
  font-size: 0.9rem;
  color: var(--sh-text-light);
  font-style: italic;
}

/* --- Footer --- */
.sh-footer {
  background: var(--sh-primary);
  color: #bcaaa4;
  padding-top: 50px;
}

.sh-footer-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-bottom: 30px;
}

.sh-footer-col h4 {
  color: var(--sh-accent);
  font-size: 1rem;
  margin-bottom: 15px;
  font-family: var(--sh-font-title);
}

.sh-footer-col p {
  color: #8d6e63;
  font-size: 0.85rem;
  line-height: 1.6;
}

.sh-footer-col ul {
  list-style: none;
}

.sh-footer-col ul li {
  margin-bottom: 8px;
}

.sh-footer-col ul li a {
  color: #8d6e63;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.sh-footer-col ul li a:hover {
  color: var(--sh-accent);
}

.sh-footer-social {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.sh-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: #bcaaa4;
  transition: all 0.3s ease;
  font-size: 0.8rem;
}

.sh-footer-social a:hover {
  background: var(--sh-accent);
  color: var(--sh-primary);
}

.sh-footer-seo {
  padding: 20px 0;
  border-top: 1px solid rgba(121,85,72,0.3);
  font-size: 0.75rem;
  color: #6d4c41;
  text-align: center;
  line-height: 1.6;
}

.sh-footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(121,85,72,0.3);
  text-align: center;
  font-size: 0.8rem;
  color: #6d4c41;
}

/* --- Breadcrumb --- */
.sh-breadcrumb {
  padding: 15px 0;
  font-size: 0.85rem;
}

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

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

.sh-breadcrumb span {
  color: var(--sh-text-light);
  margin: 0 8px;
}

/* --- Inner Page Banner --- */
.sh-page-banner {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  margin-top: 70px;
}

.sh-page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(78,52,46,0.7), rgba(62,39,35,0.85));
}

.sh-page-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.sh-page-banner h1 {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.sh-page-banner p {
  color: #d7ccc8;
  font-size: 1rem;
}

/* --- Content Area --- */
.sh-content {
  padding: 40px 0 60px;
}

.sh-content h2 {
  margin-top: 30px;
  margin-bottom: 15px;
}

.sh-content h3 {
  margin-top: 25px;
  margin-bottom: 12px;
}

.sh-content p {
  margin-bottom: 15px;
  line-height: 1.9;
}

.sh-content-img {
  margin: 20px 0;
  border-radius: var(--sh-radius);
  box-shadow: var(--sh-shadow);
}

/* --- Task Board --- */
.sh-task-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.sh-task-filter-btn {
  padding: 8px 20px;
  background: transparent;
  border: 2px solid var(--sh-secondary);
  color: var(--sh-text-light);
  border-radius: var(--sh-radius);
  cursor: pointer;
  font-family: var(--sh-font-body);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.sh-task-filter-btn:hover,
.sh-task-filter-btn.sh-active {
  background: var(--sh-accent);
  border-color: var(--sh-accent);
  color: var(--sh-primary);
}

.sh-task-card {
  background: linear-gradient(135deg, #f5efe6, #e8d5b7);
  border: 2px solid var(--sh-secondary);
  border-radius: var(--sh-radius);
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: var(--sh-shadow);
  position: relative;
}

.sh-task-card h3 {
  color: var(--sh-primary);
  margin-bottom: 10px;
}

.sh-task-meta {
  display: flex;
  gap: 20px;
  margin: 15px 0;
  flex-wrap: wrap;
}

.sh-task-meta-item {
  font-size: 0.85rem;
  color: var(--sh-text-light);
}

.sh-task-meta-item strong {
  color: var(--sh-accent);
}

.sh-task-status {
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--sh-radius);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.sh-task-status-available {
  background: var(--sh-accent);
  color: var(--sh-primary);
}

.sh-task-status-active {
  background: #4CAF50;
  color: #fff;
}

.sh-task-status-completed {
  background: var(--sh-secondary);
  color: #fff;
}

.sh-task-status-expired {
  background: #9e9e9e;
  color: #fff;
}

/* --- APP Download --- */
.sh-app-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.sh-app-feature {
  display: flex;
  gap: 15px;
  align-items: start;
}

.sh-app-feature-icon {
  width: 40px;
  height: 40px;
  background: var(--sh-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sh-primary);
  font-weight: 700;
  flex-shrink: 0;
}

.sh-app-buttons {
  display: flex;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.sh-app-btn {
  display: inline-block;
  padding: 14px 28px;
  background: var(--sh-primary);
  color: var(--sh-accent);
  font-weight: 700;
  border-radius: var(--sh-radius);
  border: 2px solid var(--sh-secondary);
  transition: all 0.3s ease;
  text-align: center;
  min-width: 160px;
}

.sh-app-btn:hover {
  background: var(--sh-accent);
  color: var(--sh-primary);
}

/* --- FAQ --- */
.sh-faq-item {
  background: linear-gradient(135deg, #f5efe6, #ede0cc);
  border: 1px solid var(--sh-secondary);
  border-radius: var(--sh-radius);
  margin-bottom: 10px;
  overflow: hidden;
}

.sh-faq-question {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 700;
  color: var(--sh-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.sh-faq-question:hover {
  background: rgba(255,193,7,0.1);
}

.sh-faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--sh-text-light);
  font-size: 0.9rem;
}

.sh-faq-item.sh-active .sh-faq-answer {
  max-height: 300px;
  padding: 0 20px 16px;
}

/* --- Legal Pages --- */
.sh-legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.sh-legal-content h2 {
  margin-top: 35px;
  padding-top: 20px;
  border-top: 1px solid rgba(121,85,72,0.2);
}

.sh-legal-content p,
.sh-legal-content li {
  line-height: 2;
  font-size: 0.95rem;
}

.sh-legal-content ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.sh-legal-content ul li {
  margin-bottom: 8px;
  color: var(--sh-text-light);
}

/* --- Animations --- */
@keyframes sh-typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes sh-pulse-glow {
  0%, 100% { box-shadow: 0 0 5px rgba(255,193,7,0.3); }
  50% { box-shadow: 0 0 20px rgba(255,193,7,0.6); }
}

@keyframes sh-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.sh-pulse-glow {
  animation: sh-pulse-glow 2s infinite;
}

/* --- Utility --- */
.sh-text-center { text-align: center; }
.sh-text-gold { color: var(--sh-accent); }
.sh-text-red { color: var(--sh-red); }
.sh-mt-20 { margin-top: 20px; }
.sh-mb-20 { margin-bottom: 20px; }
.sh-mt-40 { margin-top: 40px; }
.sh-mb-40 { margin-bottom: 40px; }
