/* ============================================
   凤凰彩票 - 凤凰涅槃火焰风主题样式
   CSS前缀: fh-
   干扰前缀: phoenix-
   ============================================ */

/* --- 干扰标签隐藏 --- */
.phoenix-jammer-block {
  display: none;
}

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

:root {
  --fh-color-primary: #1A0500;
  --fh-color-accent: #FF6D00;
  --fh-color-gold: #FFD600;
  --fh-color-text: #FFE0B2;
  --fh-color-link: #FF6D00;
  --fh-color-dark: #0D0200;
  --fh-color-card-bg: rgba(26, 5, 0, 0.85);
  --fh-color-border: rgba(255, 109, 0, 0.3);
  --fh-font-heading: 'Source Han Serif SC', 'Noto Serif SC', 'SimSun', serif;
  --fh-font-body: 'Source Han Sans SC', 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
  --fh-max-width: 1440px;
  --fh-gutter: 20px;
}

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

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

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--fh-font-heading);
  color: var(--fh-color-gold);
  line-height: 1.4;
}

/* --- 容器 --- */
.fh-container {
  max-width: var(--fh-max-width);
  margin: 0 auto;
  padding: 0 var(--fh-gutter);
}

/* --- 导航栏 --- */
.fh-header {
  background-color: var(--fh-color-primary);
  border-bottom: 1px solid var(--fh-color-border);
  padding: 0;
}

.fh-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--fh-max-width);
  margin: 0 auto;
  padding: 12px var(--fh-gutter);
}

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

.fh-logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.fh-logo-text {
  font-family: var(--fh-font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fh-color-gold);
  white-space: nowrap;
}

.fh-nav-list {
  display: flex;
  list-style: none;
  gap: 0;
}

.fh-nav-item {
  position: relative;
}

.fh-nav-link {
  display: block;
  padding: 10px 18px;
  color: var(--fh-color-text);
  font-size: 0.95rem;
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
}

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

.fh-nav-link:hover {
  color: var(--fh-color-gold);
  transform: scale(1.05);
}

.fh-nav-link:hover::after,
.fh-nav-link.fh-active::after {
  width: 70%;
}

.fh-nav-link.fh-active {
  color: var(--fh-color-gold);
}

/* 汉堡菜单 */
.fh-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

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

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

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

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

/* --- 英雄区域 --- */
.fh-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.fh-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.fh-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(26,5,0,0.3), rgba(26,5,0,0.8));
  z-index: 1;
}

.fh-hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 20px;
}

.fh-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 0 0 30px rgba(255, 109, 0, 0.6);
}

.fh-hero-slogan {
  font-size: 1.25rem;
  color: var(--fh-color-text);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.fh-btn {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--fh-color-accent), var(--fh-color-gold));
  color: var(--fh-color-primary);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(255, 109, 0, 0.4);
}

.fh-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(255, 109, 0, 0.7), 0 0 80px rgba(255, 214, 0, 0.3);
  color: var(--fh-color-primary);
}

.fh-btn-outline {
  background: transparent;
  border: 2px solid var(--fh-color-accent);
  color: var(--fh-color-accent);
  box-shadow: none;
}

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

/* --- 通用Section --- */
.fh-section {
  padding: 60px 0;
}

.fh-section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 15px;
  position: relative;
}

.fh-section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--fh-color-accent), var(--fh-color-gold));
  margin: 12px auto 0;
  border-radius: 2px;
}

.fh-section-desc {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: var(--fh-color-text);
  opacity: 0.85;
}

/* --- 开奖公告 --- */
.fh-lottery-results {
  background: var(--fh-color-dark);
  border-top: 1px solid var(--fh-color-border);
  border-bottom: 1px solid var(--fh-color-border);
  padding: 20px 0;
  overflow: hidden;
}

.fh-lottery-ticker {
  display: flex;
  animation: fh-scroll 30s linear infinite;
  gap: 40px;
  white-space: nowrap;
}

@keyframes fh-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.fh-lottery-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.fh-lottery-name {
  color: var(--fh-color-gold);
  font-weight: 700;
  font-size: 0.9rem;
}

.fh-lottery-numbers {
  display: flex;
  gap: 6px;
}

.fh-lottery-ball {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fh-color-accent), var(--fh-color-gold));
  color: var(--fh-color-primary);
  font-weight: 700;
  font-size: 0.8rem;
}

.fh-lottery-ball.fh-special {
  background: linear-gradient(135deg, #FF1744, var(--fh-color-accent));
  color: #fff;
}

/* --- 卡片网格 --- */
.fh-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.fh-card {
  background: var(--fh-color-card-bg);
  border: 1px solid var(--fh-color-border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fh-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(255, 109, 0, 0.2);
}

.fh-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.fh-card-body {
  padding: 20px;
}

.fh-card-title {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--fh-color-gold);
}

.fh-card-text {
  font-size: 0.9rem;
  color: var(--fh-color-text);
  opacity: 0.8;
  line-height: 1.7;
}

.fh-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--fh-color-border);
  font-size: 0.8rem;
  color: var(--fh-color-text);
  opacity: 0.6;
}

/* --- 涅槃殿堂入口 --- */
.fh-nirvana-entrance {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.fh-section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 5, 0, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.fh-nirvana-entrance .fh-section-title {
  color: var(--fh-color-gold);
  font-size: 2.2rem;
}

.fh-nirvana-text {
  max-width: 650px;
  margin: 20px auto 30px;
  font-size: 1.05rem;
  line-height: 1.9;
}

/* --- 凤凰图鉴 --- */
.fh-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.fh-gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.fh-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fh-gallery-item:hover img {
  transform: scale(1.1);
}

.fh-gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(26,5,0,0.9), transparent);
}

.fh-gallery-overlay h3 {
  font-size: 1rem;
  color: var(--fh-color-gold);
}

.fh-gallery-overlay p {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* --- 数据中心 --- */
.fh-data-hub {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.fh-data-card {
  background: var(--fh-color-card-bg);
  border: 1px solid var(--fh-color-border);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.fh-data-card:hover {
  border-color: var(--fh-color-accent);
  box-shadow: 0 0 30px rgba(255, 109, 0, 0.15);
}

.fh-data-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.fh-data-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.fh-data-card p {
  font-size: 0.85rem;
  opacity: 0.75;
}

/* --- 新手指南 --- */
.fh-guide-steps {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.fh-guide-step {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  padding: 30px 20px;
  background: var(--fh-color-card-bg);
  border: 1px solid var(--fh-color-border);
  border-radius: 12px;
  position: relative;
}

.fh-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fh-color-accent), var(--fh-color-gold));
  color: var(--fh-color-primary);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.fh-guide-step h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.fh-guide-step p {
  font-size: 0.85rem;
  opacity: 0.75;
}

/* --- 合作伙伴 --- */
.fh-partners {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 30px 0;
}

.fh-partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.fh-partner-item:hover {
  opacity: 1;
}

.fh-partner-item img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.fh-partner-item span {
  font-size: 0.8rem;
  color: var(--fh-color-text);
}

/* --- 用户之声 --- */
.fh-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.fh-testimonial {
  background: var(--fh-color-card-bg);
  border: 1px solid var(--fh-color-border);
  border-radius: 12px;
  padding: 30px;
  position: relative;
}

.fh-testimonial::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--fh-color-accent);
  opacity: 0.3;
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: serif;
  line-height: 1;
}

.fh-testimonial-text {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 15px;
  padding-top: 20px;
}

.fh-testimonial-author {
  font-size: 0.85rem;
  color: var(--fh-color-gold);
  font-weight: 700;
}

/* --- APP下载 --- */
.fh-app-banner {
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  overflow: hidden;
  margin: 0 var(--fh-gutter);
}

.fh-app-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 5, 0, 0.7);
}

.fh-app-content {
  position: relative;
  z-index: 2;
  padding: 40px 20px;
}

.fh-app-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.fh-app-content p {
  max-width: 600px;
  margin: 0 auto 25px;
  font-size: 1rem;
}

.fh-app-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- 页脚 --- */
.fh-footer {
  background: var(--fh-color-dark);
  border-top: 1px solid var(--fh-color-border);
  padding: 50px 0 30px;
  margin-top: 60px;
}

.fh-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.fh-footer-col h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--fh-color-gold);
}

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

.fh-footer-col ul li {
  margin-bottom: 10px;
}

.fh-footer-col ul li a {
  color: var(--fh-color-text);
  opacity: 0.7;
  font-size: 0.9rem;
  transition: opacity 0.3s ease;
}

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

.fh-footer-col p {
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.8;
}

.fh-footer-bottom {
  border-top: 1px solid var(--fh-color-border);
  padding-top: 25px;
  text-align: center;
}

.fh-footer-bottom p {
  font-size: 0.8rem;
  opacity: 0.6;
  margin-bottom: 8px;
}

.fh-footer-bottom a {
  color: var(--fh-color-text);
  opacity: 0.6;
  font-size: 0.8rem;
}

.fh-footer-bottom a:hover {
  opacity: 1;
}

.fh-honor-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  padding: 10px;
  border: 1px solid var(--fh-color-border);
  border-radius: 8px;
  background: rgba(255, 214, 0, 0.05);
}

.fh-honor-badge img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.fh-honor-badge span {
  font-size: 0.8rem;
  color: var(--fh-color-gold);
}

/* --- 内页通用 --- */
.fh-page-hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
}

.fh-page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(26,5,0,0.5), rgba(26,5,0,0.9));
}

.fh-page-hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 20px;
}

.fh-page-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.fh-page-hero p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
  opacity: 0.85;
}

/* --- 文章内容 --- */
.fh-article {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px var(--fh-gutter);
}

.fh-article h2 {
  font-size: 1.6rem;
  margin: 35px 0 15px;
}

.fh-article h3 {
  font-size: 1.3rem;
  margin: 25px 0 12px;
}

.fh-article p {
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 2;
}

.fh-article img {
  border-radius: 12px;
  margin: 25px 0;
  width: 100%;
}

.fh-article-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px var(--fh-gutter);
}

.fh-sidebar {
  position: relative;
}

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

.fh-sidebar-card h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--fh-color-border);
}

.fh-sidebar-list {
  list-style: none;
}

.fh-sidebar-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,109,0,0.1);
}

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

.fh-sidebar-list li a {
  font-size: 0.9rem;
  color: var(--fh-color-text);
  opacity: 0.8;
}

.fh-sidebar-list li a:hover {
  opacity: 1;
  color: var(--fh-color-accent);
}

/* --- 涅槃殿堂页面 --- */
.fh-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.fh-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--fh-color-accent), var(--fh-color-gold), var(--fh-color-accent));
}

.fh-timeline-item {
  position: relative;
  width: 45%;
  padding: 25px;
  background: var(--fh-color-card-bg);
  border: 1px solid var(--fh-color-border);
  border-radius: 12px;
  margin-bottom: 40px;
}

.fh-timeline-item:nth-child(odd) {
  margin-left: 0;
}

.fh-timeline-item:nth-child(even) {
  margin-left: 55%;
}

.fh-timeline-item::before {
  content: '';
  position: absolute;
  top: 30px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--fh-color-accent);
  box-shadow: 0 0 10px rgba(255, 109, 0, 0.5);
}

.fh-timeline-item:nth-child(odd)::before {
  right: -8%;
}

.fh-timeline-item:nth-child(even)::before {
  left: -8%;
}

.fh-timeline-item img {
  border-radius: 8px;
  margin-bottom: 15px;
}

.fh-timeline-item h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.fh-timeline-item p {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.8;
}

/* --- 概率计算器 --- */
.fh-calculator {
  max-width: 600px;
  margin: 0 auto 50px;
  background: var(--fh-color-card-bg);
  border: 1px solid var(--fh-color-border);
  border-radius: 16px;
  padding: 35px;
}

.fh-calculator h3 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 1.3rem;
}

.fh-calc-group {
  margin-bottom: 20px;
}

.fh-calc-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--fh-color-gold);
}

.fh-calc-group input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 109, 0, 0.1);
  border: 1px solid var(--fh-color-border);
  border-radius: 8px;
  color: var(--fh-color-text);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.fh-calc-group input:focus {
  border-color: var(--fh-color-accent);
}

.fh-calc-result {
  text-align: center;
  padding: 20px;
  background: rgba(255, 214, 0, 0.05);
  border-radius: 8px;
  margin-top: 20px;
}

.fh-calc-result .fh-result-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--fh-color-gold);
  font-family: var(--fh-font-heading);
}

.fh-calc-result p {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 8px;
}

/* --- 响应式 --- */
@media (max-width: 1024px) {
  .fh-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fh-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .fh-data-hub {
    grid-template-columns: repeat(2, 1fr);
  }
  .fh-testimonials {
    grid-template-columns: repeat(2, 1fr);
  }
  .fh-article-sidebar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .fh-nav-list {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(26, 5, 0, 0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 999;
  }

  .fh-nav-list.fh-open {
    display: flex;
  }

  .fh-nav-link {
    font-size: 1.2rem;
    padding: 15px 30px;
  }

  .fh-hamburger {
    display: flex;
    z-index: 1000;
  }

  .fh-hero h1 {
    font-size: 2rem;
  }

  .fh-hero-slogan {
    font-size: 1rem;
  }

  .fh-card-grid {
    grid-template-columns: 1fr;
  }

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

  .fh-data-hub {
    grid-template-columns: 1fr;
  }

  .fh-testimonials {
    grid-template-columns: 1fr;
  }

  .fh-footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .fh-section-title {
    font-size: 1.6rem;
  }

  .fh-page-hero h1 {
    font-size: 1.8rem;
  }

  .fh-timeline::before {
    left: 20px;
  }

  .fh-timeline-item {
    width: calc(100% - 50px);
    margin-left: 50px !important;
  }

  .fh-timeline-item::before {
    left: -35px !important;
    right: auto !important;
  }
}

@media (max-width: 360px) {
  html {
    font-size: 14px;
  }

  .fh-hero h1 {
    font-size: 1.6rem;
  }

  .fh-gallery {
    grid-template-columns: 1fr;
  }

  .fh-guide-steps {
    flex-direction: column;
    align-items: center;
  }
}
