/* ============================================
   麻将胡了 - 主样式表
   中式茶馆雅致风 (Chinese Tea House Elegant Style)
   CSS前缀规范: mj-
   ============================================ */

/* --- 干扰码隐藏 --- */
.tile-jammer-block {
  display: none;
}

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

:root {
  --mj-color-primary: #F5F0E0;
  --mj-color-secondary: #2E7D32;
  --mj-color-accent: #BF360C;
  --mj-color-text: #3E2723;
  --mj-color-link: #2E7D32;
  --mj-color-bg-dark: #3E2723;
  --mj-color-border: #D4C9A8;
  --mj-color-card-bg: #FDFAF0;
  --mj-color-overlay: rgba(62, 39, 35, 0.6);
  --mj-font-heading: 'Source Han Serif SC', 'Noto Serif SC', 'SimSun', serif;
  --mj-font-body: 'Source Han Sans SC', 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
  --mj-radius: 6px;
  --mj-shadow: 0 2px 12px rgba(62, 39, 35, 0.1);
  --mj-shadow-hover: 0 6px 24px rgba(62, 39, 35, 0.18);
  --mj-transition: all 0.3s ease;
  --mj-max-width: 1200px;
}

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

body {
  font-family: var(--mj-font-body);
  color: var(--mj-color-text);
  background-color: var(--mj-color-primary);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1 { font-size: 2.2rem; margin-bottom: 1rem; }
h2 { font-size: 1.8rem; margin-bottom: 0.8rem; }
h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }
h4 { font-size: 1.2rem; margin-bottom: 0.5rem; }

p {
  margin-bottom: 1rem;
  text-align: justify;
}

a {
  color: var(--mj-color-link);
  text-decoration: none;
  transition: var(--mj-transition);
}

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

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

/* --- 回字纹装饰边框 --- */
.mj-border-pattern {
  border: 2px solid var(--mj-color-border);
  border-radius: var(--mj-radius);
  position: relative;
}

.mj-border-pattern::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  border: 1px solid var(--mj-color-border);
  border-radius: 3px;
  pointer-events: none;
}

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

/* --- 导航栏 --- */
#mj-header {
  background-color: rgba(245, 240, 224, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--mj-color-border);
  padding: 0;
  z-index: 1000;
  position: relative;
}

.mj-nav-inner {
  max-width: var(--mj-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.mj-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--mj-color-text);
}

.mj-logo img {
  width: 42px;
  height: 42px;
  border-radius: 4px;
}

.mj-logo-text {
  font-family: var(--mj-font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--mj-color-text);
}

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

.mj-nav-list li a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--mj-color-text);
  font-size: 0.95rem;
  position: relative;
  transition: var(--mj-transition);
}

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

.mj-nav-list li a:hover {
  color: var(--mj-color-secondary);
}

.mj-nav-list li a:hover::after {
  width: 80%;
}

.mj-nav-list li a.mj-active {
  color: var(--mj-color-secondary);
}

.mj-nav-list li a.mj-active::after {
  width: 80%;
}

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

.mj-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--mj-color-text);
  transition: var(--mj-transition);
}

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

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

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

/* 移动端侧边导航 */
.mj-mobile-nav {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  background-color: var(--mj-color-primary);
  border-left: 1px solid var(--mj-color-border);
  z-index: 2000;
  transition: right 0.35s ease;
  padding: 80px 2rem 2rem;
  overflow-y: auto;
}

.mj-mobile-nav.mj-open {
  right: 0;
}

.mj-mobile-nav-list {
  list-style: none;
}

.mj-mobile-nav-list li {
  border-bottom: 1px solid var(--mj-color-border);
}

.mj-mobile-nav-list li a {
  display: block;
  padding: 1rem 0;
  color: var(--mj-color-text);
  font-size: 1.05rem;
  transition: var(--mj-transition);
}

.mj-mobile-nav-list li a:hover {
  color: var(--mj-color-secondary);
  padding-left: 0.5rem;
}

.mj-mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--mj-color-text);
  cursor: pointer;
  line-height: 1;
}

.mj-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: var(--mj-transition);
}

.mj-overlay.mj-open {
  opacity: 1;
  visibility: visible;
}

/* --- Hero Section --- */
.mj-hero-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

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

.mj-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(62, 39, 35, 0.35),
    rgba(62, 39, 35, 0.65)
  );
  z-index: 1;
}

.mj-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 700px;
  padding: 2rem;
  animation: mj-fadeIn 1s ease;
}

.mj-hero-content h1 {
  font-size: 2.6rem;
  color: #fff;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.mj-hero-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  text-align: center;
  margin-bottom: 1.5rem;
}

.mj-hero-cta {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  background-color: var(--mj-color-secondary);
  color: #fff;
  border-radius: var(--mj-radius);
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: var(--mj-transition);
}

.mj-hero-cta:hover {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

/* --- Section 通用 --- */
.mj-section {
  padding: 4rem 0;
}

.mj-section-alt {
  background-color: #FDFAF0;
}

.mj-section-dark {
  background-color: var(--mj-color-bg-dark);
  color: #fff;
}

.mj-section-dark h2,
.mj-section-dark h3 {
  color: #fff;
}

.mj-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.mj-section-header h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 0.8rem;
}

.mj-section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--mj-color-secondary);
}

.mj-section-header p {
  margin-top: 0.8rem;
  color: #6D5D4B;
  font-size: 1.05rem;
  text-align: center;
}

/* --- 卡片 --- */
.mj-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

.mj-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--mj-shadow-hover);
}

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

.mj-card-body {
  padding: 1.5rem;
}

.mj-card-body h3 {
  margin-bottom: 0.5rem;
}

.mj-card-body p {
  color: #6D5D4B;
  font-size: 0.95rem;
  text-align: left;
}

.mj-card-link {
  display: inline-block;
  margin-top: 0.8rem;
  color: var(--mj-color-secondary);
  font-weight: 600;
  font-size: 0.9rem;
}

.mj-card-link:hover {
  color: var(--mj-color-accent);
}

/* --- 两列布局 --- */
.mj-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.mj-two-col-img {
  border-radius: var(--mj-radius);
  box-shadow: var(--mj-shadow);
}

/* --- 按钮 --- */
.mj-btn {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  border-radius: var(--mj-radius);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--mj-transition);
  text-align: center;
  border: 2px solid transparent;
}

.mj-btn-primary {
  background-color: var(--mj-color-secondary);
  color: #fff;
  border-color: var(--mj-color-secondary);
}

.mj-btn-primary:hover {
  background-color: #1B5E20;
  border-color: #1B5E20;
  color: #fff;
  transform: scale(1.03);
  box-shadow: var(--mj-shadow);
}

.mj-btn-outline {
  background-color: transparent;
  color: var(--mj-color-secondary);
  border-color: var(--mj-color-secondary);
}

.mj-btn-outline:hover {
  background-color: var(--mj-color-secondary);
  color: #fff;
}

.mj-btn-accent {
  background-color: var(--mj-color-accent);
  color: #fff;
  border-color: var(--mj-color-accent);
}

.mj-btn-accent:hover {
  background-color: #8B2500;
  border-color: #8B2500;
  color: #fff;
}

/* --- 知音回响 (Testimonials) --- */
.mj-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.mj-testimonial-card {
  background-color: var(--mj-color-card-bg);
  border: 1px solid var(--mj-color-border);
  border-radius: var(--mj-radius);
  padding: 2rem;
  position: relative;
}

.mj-testimonial-card::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--mj-color-border);
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  font-family: serif;
  line-height: 1;
}

.mj-testimonial-text {
  font-style: italic;
  color: #5D4E37;
  margin-bottom: 1rem;
  padding-top: 1.5rem;
  text-align: left;
}

.mj-testimonial-author {
  font-weight: 700;
  color: var(--mj-color-text);
  font-size: 0.9rem;
}

/* --- 协会之声 (Honor) --- */
.mj-honor-section {
  text-align: center;
  padding: 3rem 0;
}

.mj-honor-badge {
  display: inline-block;
  padding: 1.2rem 2.5rem;
  border: 2px solid var(--mj-color-secondary);
  border-radius: var(--mj-radius);
  color: var(--mj-color-secondary);
  font-family: var(--mj-font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* --- 版本脉动 (Updates) --- */
.mj-updates-list {
  list-style: none;
}

.mj-update-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--mj-color-border);
  align-items: flex-start;
}

.mj-update-date {
  min-width: 100px;
  font-family: var(--mj-font-heading);
  color: var(--mj-color-secondary);
  font-weight: 700;
  font-size: 0.9rem;
}

.mj-update-content h4 {
  margin-bottom: 0.3rem;
}

.mj-update-content p {
  color: #6D5D4B;
  font-size: 0.95rem;
}

/* --- 页脚 --- */
#mj-footer {
  background-color: var(--mj-color-bg-dark);
  color: rgba(255,255,255,0.8);
  padding: 3.5rem 0 0;
}

.mj-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.mj-footer-col h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.mj-footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--mj-color-secondary);
}

.mj-footer-col p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  text-align: left;
}

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

.mj-footer-links li {
  margin-bottom: 0.6rem;
}

.mj-footer-links li a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--mj-transition);
}

.mj-footer-links li a:hover {
  color: var(--mj-color-secondary);
  padding-left: 0.3rem;
}

.mj-footer-honor {
  text-align: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}

.mj-footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.mj-footer-bottom a {
  color: rgba(255,255,255,0.6);
  margin: 0 0.5rem;
}

.mj-footer-bottom a:hover {
  color: var(--mj-color-secondary);
}

/* --- 内页 Banner --- */
.mj-page-banner {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.mj-page-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mj-page-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(62, 39, 35, 0.4),
    rgba(62, 39, 35, 0.7)
  );
}

.mj-page-banner-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 2rem;
}

.mj-page-banner-content h1 {
  color: #fff;
  font-size: 2.2rem;
  text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.mj-page-banner-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  text-align: center;
  margin-top: 0.5rem;
}

/* --- 文章内容 --- */
.mj-article {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.mj-article h2 {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--mj-color-border);
}

.mj-article h3 {
  margin-top: 1.5rem;
}

.mj-article img {
  margin: 1.5rem 0;
  border-radius: var(--mj-radius);
  box-shadow: var(--mj-shadow);
}

.mj-article blockquote {
  border-left: 4px solid var(--mj-color-secondary);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background-color: rgba(46, 125, 50, 0.05);
  font-style: italic;
  color: #5D4E37;
}

.mj-article ul, .mj-article ol {
  margin: 1rem 0 1rem 1.5rem;
}

.mj-article li {
  margin-bottom: 0.5rem;
}

.mj-article table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.mj-article table th,
.mj-article table td {
  border: 1px solid var(--mj-color-border);
  padding: 0.8rem 1rem;
  text-align: left;
}

.mj-article table th {
  background-color: rgba(46, 125, 50, 0.08);
  font-weight: 700;
}

/* --- 牌友茶馆 专属 --- */
.mj-tea-house-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.mj-fan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.mj-fan-card {
  background-color: var(--mj-color-card-bg);
  border: 1px solid var(--mj-color-border);
  border-radius: var(--mj-radius);
  padding: 1.2rem;
  cursor: pointer;
  transition: var(--mj-transition);
}

.mj-fan-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--mj-shadow-hover);
  border-color: var(--mj-color-secondary);
}

.mj-fan-card h4 {
  color: var(--mj-color-secondary);
  margin-bottom: 0.3rem;
}

.mj-fan-card .mj-fan-score {
  font-family: var(--mj-font-heading);
  font-size: 1.4rem;
  color: var(--mj-color-accent);
  font-weight: 700;
}

.mj-fan-card p {
  font-size: 0.85rem;
  color: #6D5D4B;
  margin-bottom: 0;
}

/* 概率计算器 */
.mj-calculator {
  background-color: var(--mj-color-card-bg);
  border: 1px solid var(--mj-color-border);
  border-radius: var(--mj-radius);
  padding: 2rem;
}

.mj-tile-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 1rem 0;
}

.mj-tile-btn {
  width: 40px;
  height: 52px;
  border: 1px solid var(--mj-color-border);
  border-radius: 4px;
  background-color: #FFF;
  cursor: pointer;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--mj-transition);
  font-family: var(--mj-font-heading);
  color: var(--mj-color-text);
}

.mj-tile-btn:hover {
  border-color: var(--mj-color-secondary);
  background-color: rgba(46, 125, 50, 0.08);
}

.mj-tile-btn.mj-selected {
  background-color: var(--mj-color-secondary);
  color: #fff;
  border-color: var(--mj-color-secondary);
}

.mj-progress-bar {
  width: 100%;
  height: 24px;
  background-color: #E8E0CC;
  border-radius: 12px;
  overflow: hidden;
  margin: 0.5rem 0;
}

.mj-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--mj-color-secondary), #43A047);
  border-radius: 12px;
  transition: width 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #fff;
  font-weight: 700;
}

/* --- APP下载 --- */
.mj-app-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.mj-app-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 3rem;
  background-color: rgba(245, 240, 224, 0.92);
  border-radius: var(--mj-radius);
  box-shadow: var(--mj-shadow-hover);
}

.mj-app-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.mj-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--mj-transition);
}

.mj-app-btn-ios {
  background-color: var(--mj-color-text);
  color: #fff;
}

.mj-app-btn-ios:hover {
  background-color: #1a1210;
  color: #fff;
  transform: scale(1.05);
}

.mj-app-btn-android {
  background-color: var(--mj-color-secondary);
  color: #fff;
}

.mj-app-btn-android:hover {
  background-color: #1B5E20;
  color: #fff;
  transform: scale(1.05);
}

/* --- 搜索/筛选 --- */
.mj-search-box {
  position: relative;
  margin-bottom: 1.5rem;
}

.mj-search-input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: none;
  border-bottom: 2px solid var(--mj-color-border);
  background-color: transparent;
  font-size: 1rem;
  font-family: var(--mj-font-body);
  color: var(--mj-color-text);
  outline: none;
  transition: var(--mj-transition);
}

.mj-search-input:focus {
  border-bottom-color: var(--mj-color-secondary);
}

.mj-search-input::placeholder {
  color: #A09080;
}

/* --- 面包屑 --- */
.mj-breadcrumb {
  padding: 1rem 0;
  font-size: 0.85rem;
  color: #8D7B6A;
}

.mj-breadcrumb a {
  color: #8D7B6A;
}

.mj-breadcrumb a:hover {
  color: var(--mj-color-secondary);
}

.mj-breadcrumb span {
  margin: 0 0.4rem;
}

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

.mj-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.mj-fade-in.mj-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- 隐私政策/服务条款 --- */
.mj-legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.mj-legal-content h2 {
  margin-top: 2rem;
  font-size: 1.4rem;
}

.mj-legal-content p {
  color: #5D4E37;
}

/* ============================================
   响应式设计
   断点: 360px / 768px / 1024px / 1440px
   ============================================ */

@media (max-width: 1440px) {
  .mj-container {
    max-width: 1100px;
  }
}

@media (max-width: 1024px) {
  .mj-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .mj-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .mj-nav-list li a {
    padding: 0.5rem 0.6rem;
    font-size: 0.88rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .mj-nav-list {
    display: none;
  }

  .mj-hamburger {
    display: flex;
  }

  .mj-hero-section {
    min-height: 400px;
  }

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

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

  .mj-two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .mj-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mj-tea-house-layout {
    grid-template-columns: 1fr;
  }

  .mj-section {
    padding: 3rem 0;
  }

  .mj-page-banner {
    min-height: 240px;
  }

  .mj-app-buttons {
    flex-direction: column;
    align-items: center;
  }

  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
}

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

  .mj-container {
    padding: 0 1rem;
  }

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

  .mj-fan-grid {
    grid-template-columns: 1fr;
  }

  .mj-nav-inner {
    padding: 0 1rem;
  }
}
