/* ========================================
   熟女 - 昭和怀旧风 主样式表
   CSS前缀: sn-
   干扰前缀: showa-
   ======================================== */

/* --- Google Fonts Import (本地化替代) --- */
@import url('./fonts.css');

/* --- CSS Variables --- */
:root {
  --sn-primary: #8D3A3A;
  --sn-secondary: #F5EFE6;
  --sn-accent: #C0A26F;
  --sn-text: #333333;
  --sn-link: #B27069;
  --sn-dark: #2A2A2A;
  --sn-white: #FFFFFF;
  --sn-border: #D4C5B0;
  --sn-shadow: rgba(141, 58, 58, 0.15);
  --sn-font-title: 'Noto Serif JP', 'SimSun', 'STSong', serif;
  --sn-font-body: 'Noto Sans JP', 'Microsoft YaHei', sans-serif;
}

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

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

body {
  font-family: var(--sn-font-body);
  color: var(--sn-text);
  background-color: var(--sn-secondary);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

a:hover {
  color: var(--sn-primary);
  text-decoration: underline;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--sn-font-title);
  color: var(--sn-primary);
  line-height: 1.4;
}

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

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

/* ========================================
   Navigation
   ======================================== */
#sn-header {
  background-color: var(--sn-secondary);
  background-image: url('../images/paper-texture.webp');
  background-repeat: repeat;
  border-bottom: 2px solid var(--sn-border);
  z-index: 100;
  position: relative;
}

.sn-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.sn-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.sn-logo img {
  width: 48px;
  height: 48px;
}

.sn-logo-text {
  font-family: var(--sn-font-title);
  font-size: 1.4rem;
  color: var(--sn-primary);
  font-weight: 700;
}

.sn-nav-menu {
  display: flex;
  list-style: none;
  gap: 28px;
}

.sn-nav-menu li a {
  font-family: var(--sn-font-body);
  font-size: 0.95rem;
  color: var(--sn-text);
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

.sn-nav-menu li a:hover,
.sn-nav-menu li a.sn-active {
  color: var(--sn-link);
}

.sn-nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--sn-link);
  transition: width 0.3s ease;
}

.sn-nav-menu li a:hover::after,
.sn-nav-menu li a.sn-active::after {
  width: 100%;
}

/* Hamburger Menu */
.sn-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.sn-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--sn-text);
  transition: all 0.3s ease;
}

/* Mobile Menu Overlay */
.sn-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: rgba(141, 58, 58, 0.95);
  z-index: 200;
  transition: right 0.4s ease;
  padding: 80px 30px 30px;
}

.sn-mobile-menu.sn-open {
  right: 0;
}

.sn-mobile-menu ul {
  list-style: none;
}

.sn-mobile-menu ul li {
  margin-bottom: 20px;
}

.sn-mobile-menu ul li a {
  color: var(--sn-secondary);
  font-size: 1.1rem;
  font-family: var(--sn-font-title);
  text-decoration: none;
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid rgba(245, 239, 230, 0.2);
}

.sn-mobile-menu ul li a:hover {
  color: var(--sn-accent);
  text-decoration: none;
}

.sn-mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--sn-secondary);
  font-size: 28px;
  cursor: pointer;
}

.sn-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 150;
}

.sn-overlay.sn-show {
  display: block;
}

/* ========================================
   Hero Banner - 昭和映画馆
   ======================================== */
#sn-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sn-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/hero-banner.webp');
  background-size: cover;
  background-position: center;
  filter: brightness(0.5) sepia(0.3);
  z-index: 1;
}

.sn-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--sn-secondary);
}

.sn-hero-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  filter: brightness(10) saturate(0);
}

.sn-hero-title {
  font-family: var(--sn-font-title);
  font-size: 2.8rem;
  color: var(--sn-secondary);
  margin-bottom: 16px;
  letter-spacing: 8px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.sn-hero-slogan {
  font-family: var(--sn-font-title);
  font-size: 1.2rem;
  color: var(--sn-accent);
  letter-spacing: 4px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.sn-hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: sn-bounce 2s infinite;
}

.sn-hero-scroll span {
  display: block;
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--sn-accent);
  border-bottom: 2px solid var(--sn-accent);
  transform: rotate(45deg);
}

@keyframes sn-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(12px); }
}

/* ========================================
   Section Common Styles
   ======================================== */
.sn-section {
  padding: 80px 0;
}

.sn-section-title {
  font-family: var(--sn-font-title);
  font-size: 1.8rem;
  color: var(--sn-primary);
  text-align: center;
  margin-bottom: 12px;
  position: relative;
}

.sn-section-subtitle {
  text-align: center;
  color: var(--sn-link);
  font-size: 0.95rem;
  margin-bottom: 48px;
  font-style: italic;
}

.sn-section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--sn-accent), transparent);
  margin: 16px auto 24px;
}

/* ========================================
   Cover Girl Section
   ======================================== */
#sn-cover-girl {
  background-color: var(--sn-white);
}

.sn-cover-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.sn-cover-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px var(--sn-shadow);
}

.sn-cover-image img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}

.sn-cover-image:hover img {
  transform: scale(1.03);
}

.sn-cover-info {
  padding: 20px;
}

.sn-cover-quote {
  font-family: var(--sn-font-title);
  font-size: 1.3rem;
  color: var(--sn-primary);
  margin-bottom: 24px;
  line-height: 1.8;
  border-left: 3px solid var(--sn-accent);
  padding-left: 16px;
}

.sn-cover-name {
  font-size: 1.5rem;
  font-family: var(--sn-font-title);
  color: var(--sn-text);
  margin-bottom: 8px;
}

.sn-cover-age {
  color: var(--sn-link);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.sn-cover-desc {
  color: var(--sn-text);
  line-height: 1.8;
}

/* ========================================
   Card Grid (Diary, Tea Party, etc.)
   ======================================== */
.sn-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sn-card {
  background-color: var(--sn-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.sn-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px var(--sn-shadow), 0 0 0 2px var(--sn-accent);
}

.sn-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.sn-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.sn-card:hover .sn-card-image img {
  transform: scale(1.05);
}

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

.sn-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.85rem;
  color: #888;
}

.sn-card-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--sn-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--sn-primary);
}

.sn-card-title {
  font-family: var(--sn-font-title);
  font-size: 1.05rem;
  color: var(--sn-text);
  margin-bottom: 8px;
  line-height: 1.5;
}

.sn-card-excerpt {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Video Card Specific */
.sn-video-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
}

.sn-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(141, 58, 58, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sn-play-icon::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 18px solid #fff;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 4px;
}

.sn-card:hover .sn-play-icon {
  opacity: 1;
}

/* ========================================
   Fifty Section (五十路)
   ======================================== */
.sn-fifty-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}

.sn-fifty-feature {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px var(--sn-shadow);
}

.sn-fifty-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sn-fifty-articles {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sn-article-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: var(--sn-white);
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sn-article-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px var(--sn-shadow);
}

.sn-article-thumb {
  width: 120px;
  min-width: 120px;
  height: 90px;
  border-radius: 6px;
  overflow: hidden;
}

.sn-article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sn-article-info h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--sn-text);
}

.sn-article-info p {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.6;
}

/* ========================================
   Membership Section
   ======================================== */
#sn-membership {
  background-image: url('../images/membership-bg.webp');
  background-size: cover;
  background-position: center;
  position: relative;
}

#sn-membership::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(42, 42, 42, 0.85);
}

#sn-membership .sn-container {
  position: relative;
  z-index: 2;
}

#sn-membership .sn-section-title {
  color: var(--sn-accent);
}

#sn-membership .sn-section-subtitle {
  color: var(--sn-secondary);
}

.sn-privilege-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.sn-privilege-item {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(192, 162, 111, 0.3);
  border-radius: 8px;
  transition: background 0.3s ease;
}

.sn-privilege-item:hover {
  background: rgba(255,255,255,0.1);
}

.sn-privilege-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.sn-privilege-item h3 {
  color: var(--sn-accent);
  font-size: 1rem;
  margin-bottom: 8px;
}

.sn-privilege-item p {
  color: var(--sn-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
  opacity: 0.8;
}

.sn-join-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--sn-accent), #D4B87A);
  color: var(--sn-dark);
  padding: 14px 48px;
  border-radius: 6px;
  font-family: var(--sn-font-title);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.sn-join-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192, 162, 111, 0.4);
  text-decoration: none;
  color: var(--sn-dark);
}

.sn-membership-cta {
  text-align: center;
}

/* ========================================
   Music Section (昭和名曲赏)
   ======================================== */
#sn-music {
  background-color: var(--sn-white);
}

.sn-music-player {
  max-width: 600px;
  margin: 0 auto;
  background: var(--sn-secondary);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.sn-music-now {
  text-align: center;
  margin-bottom: 24px;
}

.sn-music-now h3 {
  font-size: 1.1rem;
  color: var(--sn-text);
  margin-bottom: 4px;
}

.sn-music-now p {
  color: #888;
  font-size: 0.85rem;
}

.sn-music-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.sn-music-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--sn-primary);
  background: transparent;
  color: var(--sn-primary);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.sn-music-btn:hover {
  background: var(--sn-primary);
  color: var(--sn-white);
}

.sn-music-btn.sn-play-btn {
  width: 56px;
  height: 56px;
  font-size: 1.4rem;
}

.sn-music-progress {
  width: 100%;
  height: 4px;
  background: var(--sn-border);
  border-radius: 2px;
  margin-bottom: 20px;
  position: relative;
}

.sn-music-progress-fill {
  width: 35%;
  height: 100%;
  background: var(--sn-primary);
  border-radius: 2px;
}

.sn-playlist {
  list-style: none;
}

.sn-playlist li {
  padding: 10px 12px;
  border-bottom: 1px solid var(--sn-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.sn-playlist li:hover {
  background: rgba(141, 58, 58, 0.05);
}

.sn-playlist li:last-child {
  border-bottom: none;
}

.sn-playlist-duration {
  color: #888;
  font-size: 0.8rem;
}

/* ========================================
   Gallery (怀旧写真馆) - Masonry
   ======================================== */
.sn-gallery-grid {
  columns: 3;
  column-gap: 16px;
}

.sn-gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.sn-gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.sn-gallery-item:hover img {
  transform: scale(1.05);
}

.sn-gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: #fff;
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sn-gallery-item:hover .sn-gallery-overlay {
  opacity: 1;
}

/* ========================================
   Community Hot Topics
   ======================================== */
.sn-topics-list {
  max-width: 800px;
  margin: 0 auto;
}

.sn-topic-item {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  background: var(--sn-white);
  margin-bottom: 8px;
  border-radius: 6px;
  transition: transform 0.2s ease;
}

.sn-topic-item:hover {
  transform: translateX(4px);
}

.sn-topic-rank {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--sn-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  margin-right: 16px;
  flex-shrink: 0;
}

.sn-topic-rank.sn-hot {
  background: linear-gradient(135deg, #E74C3C, #C0392B);
}

.sn-topic-title {
  flex: 1;
  font-size: 0.95rem;
  color: var(--sn-text);
}

.sn-topic-count {
  color: #888;
  font-size: 0.8rem;
  margin-left: 12px;
}

/* ========================================
   APP Download Section
   ======================================== */
#sn-app-download {
  background-image: url('../images/app-bg.webp');
  background-size: cover;
  background-position: center;
  position: relative;
}

#sn-app-download::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(42, 42, 42, 0.8);
}

#sn-app-download .sn-container {
  position: relative;
  z-index: 2;
}

.sn-app-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.sn-app-info {
  max-width: 480px;
}

.sn-app-info h2 {
  font-size: 2rem;
  color: var(--sn-accent);
  margin-bottom: 16px;
}

.sn-app-info p {
  color: var(--sn-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
  opacity: 0.9;
}

.sn-app-buttons {
  display: flex;
  gap: 16px;
}

.sn-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--sn-white);
  color: var(--sn-text);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.sn-app-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--sn-text);
}

.sn-app-btn-icon {
  font-size: 1.5rem;
}

.sn-app-phone {
  width: 240px;
  height: 480px;
  background: #1a1a1a;
  border-radius: 32px;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.sn-app-screen {
  width: 100%;
  height: 100%;
  background: var(--sn-secondary);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.sn-app-screen-header {
  background: var(--sn-primary);
  padding: 16px;
  text-align: center;
  color: var(--sn-secondary);
  font-family: var(--sn-font-title);
  font-size: 0.85rem;
}

.sn-app-screen-content {
  padding: 12px;
  flex: 1;
}

.sn-app-screen-card {
  background: var(--sn-white);
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.sn-app-screen-card h4 {
  font-size: 0.7rem;
  color: var(--sn-primary);
  margin-bottom: 4px;
}

.sn-app-screen-card p {
  font-size: 0.6rem;
  color: #888;
}

/* ========================================
   Footer
   ======================================== */
#sn-footer {
  background-color: var(--sn-text);
  color: var(--sn-secondary);
  padding: 60px 0 0;
}

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

.sn-footer-col h3 {
  color: var(--sn-accent);
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-family: var(--sn-font-title);
}

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

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

.sn-footer-col ul li a {
  color: rgba(245, 239, 230, 0.7);
  font-size: 0.9rem;
  transition: color 0.3s ease;
  text-decoration: none;
}

.sn-footer-col ul li a:hover {
  color: var(--sn-accent);
  text-decoration: none;
}

.sn-social-icons {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.sn-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(245, 239, 230, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sn-secondary);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.sn-social-icon:hover {
  background: var(--sn-accent);
  border-color: var(--sn-accent);
  color: var(--sn-dark);
  text-decoration: none;
}

.sn-footer-email {
  color: rgba(245, 239, 230, 0.7);
  font-size: 0.9rem;
}

.sn-footer-bottom {
  border-top: 1px solid rgba(245, 239, 230, 0.1);
  padding: 24px 0;
  text-align: center;
}

.sn-footer-award {
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: var(--sn-accent);
}

.sn-footer-award-badge {
  display: inline-block;
  padding: 4px 16px;
  border: 1px solid var(--sn-accent);
  border-radius: 4px;
  margin-bottom: 8px;
}

.sn-footer-beian {
  font-size: 0.8rem;
  color: rgba(245, 239, 230, 0.5);
  margin-bottom: 8px;
}

.sn-footer-beian a {
  color: rgba(245, 239, 230, 0.5);
  text-decoration: none;
}

.sn-footer-beian a:hover {
  color: var(--sn-accent);
  text-decoration: none;
}

.sn-footer-copyright {
  font-size: 0.8rem;
  color: rgba(245, 239, 230, 0.4);
}

/* ========================================
   Inner Page Styles
   ======================================== */
.sn-page-hero {
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.sn-page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(42, 42, 42, 0.6);
}

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

.sn-page-hero h1 {
  font-size: 2.2rem;
  color: var(--sn-secondary);
  margin-bottom: 8px;
  letter-spacing: 4px;
}

.sn-page-hero p {
  color: var(--sn-accent);
  font-size: 1rem;
}

.sn-page-content {
  padding: 60px 0;
}

.sn-breadcrumb {
  padding: 16px 0;
  font-size: 0.85rem;
  color: #888;
}

.sn-breadcrumb a {
  color: var(--sn-link);
}

/* ========================================
   Membership Page Specific
   ======================================== */
.sn-membership-page {
  background: linear-gradient(135deg, #2A1A1A, #3A2222);
  min-height: 100vh;
}

.sn-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
}

.sn-pricing-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(192, 162, 111, 0.2);
  border-radius: 12px;
  padding: 40px 24px;
  text-align: center;
  transition: transform 0.3s ease;
}

.sn-pricing-card:hover {
  transform: translateY(-4px);
}

.sn-pricing-card.sn-featured {
  border-color: var(--sn-accent);
  background: rgba(192, 162, 111, 0.1);
  position: relative;
}

.sn-pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sn-accent);
  color: var(--sn-dark);
  padding: 4px 16px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 700;
}

.sn-pricing-name {
  color: var(--sn-accent);
  font-family: var(--sn-font-title);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.sn-pricing-price {
  font-size: 2.5rem;
  color: var(--sn-secondary);
  font-weight: 700;
  margin-bottom: 8px;
}

.sn-pricing-price span {
  font-size: 1rem;
  font-weight: 400;
}

.sn-pricing-period {
  color: rgba(245, 239, 230, 0.5);
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.sn-pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.sn-pricing-features li {
  color: rgba(245, 239, 230, 0.7);
  padding: 8px 0;
  border-bottom: 1px solid rgba(245, 239, 230, 0.05);
  font-size: 0.9rem;
}

/* ========================================
   Modal
   ======================================== */
.sn-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 300;
  align-items: center;
  justify-content: center;
}

.sn-modal.sn-show {
  display: flex;
}

.sn-modal-content {
  background: var(--sn-secondary);
  border-radius: 12px;
  padding: 40px;
  max-width: 480px;
  width: 90%;
  position: relative;
}

.sn-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--sn-text);
}

.sn-form-group {
  margin-bottom: 20px;
}

.sn-form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--sn-text);
}

.sn-form-group input,
.sn-form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--sn-border);
  border-radius: 6px;
  font-size: 0.95rem;
  background: var(--sn-white);
  color: var(--sn-text);
  font-family: var(--sn-font-body);
}

.sn-form-group input:focus,
.sn-form-group select:focus {
  outline: none;
  border-color: var(--sn-primary);
}

.sn-submit-btn {
  width: 100%;
  padding: 12px;
  background: var(--sn-primary);
  color: var(--sn-white);
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-family: var(--sn-font-title);
  cursor: pointer;
  transition: background 0.3s ease;
}

.sn-submit-btn:hover {
  background: #7A3030;
}

/* ========================================
   Article Page
   ======================================== */
.sn-article-content {
  max-width: 800px;
  margin: 0 auto;
}

.sn-article-content h1 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.sn-article-meta {
  color: #888;
  font-size: 0.85rem;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--sn-border);
}

.sn-article-body {
  line-height: 2;
  font-size: 1rem;
}

.sn-article-body p {
  margin-bottom: 20px;
}

.sn-article-body img {
  border-radius: 8px;
  margin: 24px 0;
}

/* ========================================
   Responsive Design
   ======================================== */

/* Tablet: 768px */
@media (max-width: 1024px) {
  .sn-nav-menu {
    display: none;
  }

  .sn-hamburger {
    display: flex;
  }

  .sn-mobile-menu {
    display: block;
  }

  .sn-cover-layout {
    grid-template-columns: 1fr;
  }

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

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

  .sn-fifty-layout {
    grid-template-columns: 1fr;
  }

  .sn-gallery-grid {
    columns: 2;
  }

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

  .sn-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .sn-app-layout {
    flex-direction: column-reverse;
    text-align: center;
  }
}

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

  .sn-section {
    padding: 48px 0;
  }

  .sn-hero-title {
    font-size: 1.8rem;
    letter-spacing: 4px;
  }

  .sn-hero-slogan {
    font-size: 0.95rem;
    letter-spacing: 2px;
  }

  .sn-hero-logo {
    width: 80px;
    height: 80px;
  }

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

  .sn-privilege-grid {
    grid-template-columns: 1fr;
  }

  .sn-gallery-grid {
    columns: 1;
  }

  .sn-footer-grid {
    grid-template-columns: 1fr;
  }

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

  .sn-page-hero {
    height: 240px;
  }

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

  .sn-article-item {
    flex-direction: column;
  }

  .sn-article-thumb {
    width: 100%;
    height: 180px;
  }
}

/* Large Desktop: 1440px */
@media (min-width: 1440px) {
  .sn-container {
    max-width: 1320px;
  }
}
