/* ============================================
   女神风尚 - Goddess Style (gs-)
   法式轻奢杂志风主样式表
   CSS前缀: gs-
   ============================================ */

/* --- Google Fonts Local Fallback --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&family=Noto+Serif+SC:wght@400;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --gs-cream: #FDFBF7;
  --gs-gold: #D4AF37;
  --gs-gold-light: #E8D48B;
  --gs-gray: #A9A9A9;
  --gs-dark: #2C2C2C;
  --gs-text: #4A4A4A;
  --gs-text-light: #7A7A7A;
  --gs-white: #FFFFFF;
  --gs-border: #E8E4DC;
  --gs-shadow: rgba(212, 175, 55, 0.08);
  --gs-font-heading: 'Playfair Display', 'Noto Serif SC', Georgia, serif;
  --gs-font-body: 'Lato', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --gs-max-width: 1440px;
  --gs-content-width: 1200px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

a:hover {
  color: var(--gs-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--gs-font-heading);
  color: var(--gs-dark);
  line-height: 1.4;
  font-weight: 600;
}

h1 { font-size: 2.4rem; margin-bottom: 1rem; }
h2 { font-size: 1.8rem; margin-bottom: 0.8rem; }
h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }

p {
  margin-bottom: 1.2rem;
  font-size: 1rem;
  color: var(--gs-text);
}

/* --- Container --- */
.gs-container {
  max-width: var(--gs-content-width);
  margin: 0 auto;
  padding: 0 24px;
}

.gs-section {
  padding: 80px 0;
}

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

.gs-section-title h2 {
  display: inline-block;
  position: relative;
  padding-bottom: 16px;
}

.gs-section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gs-gold), transparent);
}

.gs-section-subtitle {
  font-family: var(--gs-font-body);
  color: var(--gs-text-light);
  font-size: 1rem;
  font-weight: 300;
  margin-top: 12px;
}

/* --- Navigation --- */
.gs-header {
  background-color: var(--gs-cream);
  border-bottom: 1px solid var(--gs-gold-light);
  padding: 16px 0;
  position: relative;
  z-index: 100;
}

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

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

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

.gs-logo-text {
  font-family: var(--gs-font-heading);
  font-size: 1.3rem;
  color: var(--gs-dark);
  font-weight: 700;
  letter-spacing: 1px;
}

.gs-logo-domain {
  font-size: 0.7rem;
  color: var(--gs-gray);
  font-weight: 300;
  display: block;
}

.gs-nav-menu {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}

.gs-nav-link {
  font-family: var(--gs-font-body);
  font-size: 0.95rem;
  color: var(--gs-text);
  font-weight: 400;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}

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

.gs-nav-link:hover {
  color: var(--gs-gold);
}

.gs-nav-link:hover::after {
  width: 100%;
}

.gs-nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.gs-search-box {
  display: flex;
  align-items: center;
  border: 1px solid var(--gs-border);
  border-radius: 24px;
  padding: 6px 16px;
  background: var(--gs-white);
}

.gs-search-input {
  border: none;
  outline: none;
  font-family: var(--gs-font-body);
  font-size: 0.85rem;
  background: transparent;
  width: 120px;
  color: var(--gs-text);
}

.gs-search-icon {
  color: var(--gs-gray);
  font-size: 0.9rem;
  cursor: pointer;
}

.gs-btn-subscribe {
  background: linear-gradient(135deg, var(--gs-gold), var(--gs-gold-light));
  color: var(--gs-white);
  border: none;
  padding: 8px 20px;
  border-radius: 24px;
  font-family: var(--gs-font-body);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.gs-btn-subscribe:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--gs-shadow);
}

/* Hamburger Menu */
.gs-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 200;
}

.gs-hamburger span {
  width: 24px;
  height: 2px;
  background-color: var(--gs-dark);
  transition: all 0.3s ease;
}

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

.gs-hamburger.gs-active span:nth-child(2) {
  opacity: 0;
}

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

/* --- Hero Banner --- */
.gs-hero {
  position: relative;
  height: 90vh;
  min-height: 500px;
  max-height: 900px;
  overflow: hidden;
}

.gs-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.gs-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(253,251,247,0.7) 0%, rgba(253,251,247,0.3) 50%, transparent 100%);
}

.gs-hero-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  max-width: 560px;
  z-index: 10;
}

.gs-hero-tag {
  display: inline-block;
  font-family: var(--gs-font-body);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gs-gold);
  border: 1px solid var(--gs-gold);
  padding: 4px 16px;
  margin-bottom: 20px;
}

.gs-hero-title {
  font-family: var(--gs-font-heading);
  font-size: 3rem;
  color: var(--gs-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.gs-hero-subtitle {
  font-size: 1.1rem;
  color: var(--gs-text);
  line-height: 1.8;
  margin-bottom: 32px;
  font-weight: 300;
}

.gs-hero-btn {
  display: inline-block;
  padding: 14px 36px;
  border: 2px solid var(--gs-gold);
  color: var(--gs-gold);
  font-family: var(--gs-font-heading);
  font-size: 0.95rem;
  letter-spacing: 2px;
  transition: all 0.4s ease;
}

.gs-hero-btn:hover {
  background-color: var(--gs-gold);
  color: var(--gs-white);
}

/* --- Video Section --- */
.gs-video-section {
  background-color: var(--gs-white);
}

.gs-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gs-video-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gs-video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.gs-video-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.gs-video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(212, 175, 55, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.gs-video-play-icon::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent var(--gs-white);
  margin-left: 4px;
}

.gs-video-card:hover .gs-video-play-icon {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(212, 175, 55, 1);
}

.gs-video-info {
  padding: 16px;
  background: var(--gs-white);
}

.gs-video-title {
  font-family: var(--gs-font-heading);
  font-size: 1rem;
  color: var(--gs-dark);
  margin-bottom: 4px;
}

.gs-video-desc {
  font-size: 0.85rem;
  color: var(--gs-text-light);
}

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

.gs-modal.gs-active {
  display: flex;
}

.gs-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
}

.gs-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--gs-white);
  font-size: 2rem;
  cursor: pointer;
  font-family: var(--gs-font-body);
  transition: color 0.3s ease;
}

.gs-modal-close:hover {
  color: var(--gs-gold);
}

.gs-modal-video {
  width: 100%;
  border-radius: 8px;
}

/* --- KOL Section --- */
.gs-kol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.gs-kol-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--gs-white);
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  transition: transform 0.3s ease;
}

.gs-kol-card:hover {
  transform: translateY(-4px);
}

.gs-kol-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 3px solid var(--gs-gold-light);
}

.gs-kol-name {
  font-family: var(--gs-font-heading);
  font-size: 1.2rem;
  color: var(--gs-dark);
  margin-bottom: 4px;
}

.gs-kol-title {
  font-size: 0.85rem;
  color: var(--gs-gold);
  margin-bottom: 12px;
  font-weight: 400;
}

.gs-kol-bio {
  font-size: 0.9rem;
  color: var(--gs-text-light);
  line-height: 1.7;
}

/* --- Etiquette Section --- */
.gs-etiquette-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.gs-etiquette-item {
  display: flex;
  gap: 32px;
  align-items: center;
  background: var(--gs-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  transition: transform 0.3s ease;
}

.gs-etiquette-item:hover {
  transform: translateY(-2px);
}

.gs-etiquette-img {
  width: 360px;
  min-height: 240px;
  object-fit: cover;
  border-radius: 12px 0 0 12px;
  flex-shrink: 0;
}

.gs-etiquette-content {
  padding: 24px 32px 24px 0;
  flex: 1;
}

.gs-etiquette-content h3 {
  margin-bottom: 12px;
}

.gs-etiquette-content p {
  font-size: 0.95rem;
  color: var(--gs-text-light);
  line-height: 1.8;
}

.gs-read-more {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--gs-gold);
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.gs-read-more:hover {
  letter-spacing: 2px;
}

/* --- Art Salon --- */
.gs-art-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gs-art-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.gs-art-card:hover {
  transform: translateY(-4px);
}

.gs-art-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.gs-art-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--gs-white);
}

.gs-art-overlay h3 {
  color: var(--gs-white);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.gs-art-overlay p {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* --- Reader Letters --- */
.gs-letters-section {
  background: var(--gs-white);
  position: relative;
}

.gs-letters-container {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  min-height: 200px;
}

.gs-letter-item {
  text-align: center;
  padding: 40px;
  display: none;
}

.gs-letter-item.gs-active {
  display: block;
  animation: gs-fadeIn 0.6s ease;
}

@keyframes gs-fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.gs-letter-quote {
  font-family: var(--gs-font-heading);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--gs-text);
  line-height: 1.8;
  margin-bottom: 20px;
  position: relative;
  padding: 0 40px;
}

.gs-letter-quote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--gs-gold-light);
  position: absolute;
  top: -20px;
  left: 0;
  font-family: var(--gs-font-heading);
}

.gs-letter-author {
  font-size: 0.9rem;
  color: var(--gs-gold);
  font-weight: 400;
}

.gs-letter-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.gs-letter-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gs-border);
  cursor: pointer;
  transition: background 0.3s ease;
}

.gs-letter-dot.gs-active {
  background: var(--gs-gold);
}

/* --- Brand Partners --- */
.gs-brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  align-items: center;
}

.gs-brand-item {
  text-align: center;
  padding: 24px;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  font-family: var(--gs-font-heading);
  font-size: 1.4rem;
  color: var(--gs-gold);
  letter-spacing: 3px;
  font-weight: 700;
}

.gs-brand-item:hover {
  opacity: 1;
}

/* --- Subscribe Section --- */
.gs-subscribe-section {
  background: var(--gs-white);
  text-align: center;
}

.gs-subscribe-box {
  max-width: 560px;
  margin: 0 auto;
}

.gs-subscribe-form {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.gs-subscribe-input {
  flex: 1;
  padding: 14px 24px;
  border: 2px solid var(--gs-gold-light);
  border-radius: 32px;
  font-family: var(--gs-font-body);
  font-size: 0.95rem;
  background: transparent;
  color: var(--gs-text);
  outline: none;
  transition: border-color 0.3s ease;
}

.gs-subscribe-input:focus {
  border-color: var(--gs-gold);
}

.gs-subscribe-btn {
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gs-gold), var(--gs-gold-light));
  color: var(--gs-white);
  border: none;
  border-radius: 32px;
  font-family: var(--gs-font-body);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.gs-subscribe-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--gs-shadow);
}

/* --- Footer --- */
.gs-footer {
  background-color: var(--gs-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

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

.gs-footer-col h4 {
  color: var(--gs-gold);
  font-family: var(--gs-font-heading);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.gs-footer-col p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.8;
}

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

.gs-footer-links li {
  margin-bottom: 8px;
}

.gs-footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.gs-footer-links a:hover {
  color: var(--gs-gold);
}

.gs-footer-honors {
  list-style: none;
}

.gs-footer-honors li {
  font-size: 0.85rem;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  color: rgba(255,255,255,0.6);
}

.gs-footer-honors li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--gs-gold);
  border-radius: 50%;
}

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

.gs-footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}

.gs-footer-auth {
  font-size: 0.85rem;
  color: var(--gs-gold);
  letter-spacing: 2px;
  margin-top: 8px;
}

/* --- Inner Page Styles --- */
.gs-page-hero {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.gs-page-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gs-page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent 30%, rgba(253,251,247,0.95) 100%);
  display: flex;
  align-items: flex-end;
  padding-bottom: 40px;
}

.gs-page-hero-text {
  max-width: var(--gs-content-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Breadcrumb */
.gs-breadcrumb {
  padding: 16px 0;
  font-size: 0.85rem;
  color: var(--gs-text-light);
}

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

.gs-breadcrumb a:hover {
  color: var(--gs-gold);
}

.gs-breadcrumb span {
  margin: 0 8px;
  color: var(--gs-border);
}

/* Article Content */
.gs-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.gs-article p {
  font-size: 1.05rem;
  line-height: 2;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.gs-article-img {
  width: 100%;
  border-radius: 8px;
  margin: 32px 0;
}

.gs-article h2 {
  margin-top: 40px;
}

.gs-article h3 {
  margin-top: 32px;
}

/* --- Consultant Page --- */
.gs-quiz-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.gs-quiz-step {
  display: none;
  animation: gs-fadeIn 0.5s ease;
}

.gs-quiz-step.gs-active {
  display: block;
}

.gs-quiz-progress {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.gs-quiz-dot {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: var(--gs-border);
  transition: background 0.3s ease;
}

.gs-quiz-dot.gs-active {
  background: var(--gs-gold);
}

.gs-quiz-question {
  font-family: var(--gs-font-heading);
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 32px;
  color: var(--gs-dark);
}

.gs-quiz-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.gs-quiz-option {
  padding: 20px 24px;
  border: 2px solid var(--gs-border);
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  color: var(--gs-text);
}

.gs-quiz-option:hover,
.gs-quiz-option.gs-selected {
  border-color: var(--gs-gold);
  background: rgba(212, 175, 55, 0.05);
  color: var(--gs-gold);
}

.gs-quiz-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.gs-quiz-btn {
  padding: 12px 32px;
  border: 2px solid var(--gs-gold);
  background: transparent;
  color: var(--gs-gold);
  font-family: var(--gs-font-body);
  font-size: 0.95rem;
  border-radius: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gs-quiz-btn:hover {
  background: var(--gs-gold);
  color: var(--gs-white);
}

.gs-quiz-btn-primary {
  background: var(--gs-gold);
  color: var(--gs-white);
}

.gs-quiz-btn-primary:hover {
  background: var(--gs-dark);
  border-color: var(--gs-dark);
}

/* Loading Animation */
.gs-loading {
  display: none;
  text-align: center;
  padding: 80px 0;
}

.gs-loading.gs-active {
  display: block;
}

.gs-loading-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--gs-border);
  border-top-color: var(--gs-gold);
  border-radius: 50%;
  margin: 0 auto 24px;
  animation: gs-spin 1s linear infinite;
}

@keyframes gs-spin {
  to { transform: rotate(360deg); }
}

.gs-loading-text {
  font-family: var(--gs-font-heading);
  font-size: 1.1rem;
  color: var(--gs-text);
}

/* Result Section */
.gs-result {
  display: none;
  animation: gs-fadeIn 0.6s ease;
}

.gs-result.gs-active {
  display: block;
}

.gs-result-card {
  background: var(--gs-white);
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
  text-align: center;
}

.gs-result-keywords {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.gs-result-tag {
  padding: 8px 20px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gs-gold);
  border-radius: 24px;
  font-size: 0.9rem;
  font-weight: 700;
}

/* --- APP Download Page --- */
.gs-app-hero {
  text-align: center;
  padding: 80px 0;
}

.gs-app-mockup {
  max-width: 300px;
  margin: 40px auto;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.gs-app-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.gs-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 2px solid var(--gs-gold);
  border-radius: 12px;
  color: var(--gs-gold);
  font-family: var(--gs-font-body);
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.gs-app-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: gs-glow 2s ease-in-out infinite;
}

@keyframes gs-glow {
  0%, 100% { width: 0; height: 0; }
  50% { width: 200px; height: 200px; }
}

.gs-app-btn:hover {
  background: var(--gs-gold);
  color: var(--gs-white);
}

/* --- Hot Topics --- */
.gs-topics-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.gs-topic-tag {
  padding: 8px 20px;
  border: 1px solid var(--gs-border);
  border-radius: 24px;
  font-size: 0.9rem;
  color: var(--gs-text);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gs-topic-tag:hover {
  border-color: var(--gs-gold);
  color: var(--gs-gold);
  background: rgba(212, 175, 55, 0.05);
}

/* --- Responsive Design (Mobile First) --- */

/* 320px - Small phones */
@media (max-width: 767px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.1rem; }

  .gs-nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--gs-cream);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--gs-gold-light);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }

  .gs-nav-menu.gs-active {
    display: flex;
  }

  .gs-hamburger {
    display: flex;
  }

  .gs-nav-right {
    display: none;
  }

  .gs-hero {
    height: 70vh;
    min-height: 400px;
  }

  .gs-hero-title {
    font-size: 1.8rem;
  }

  .gs-hero-subtitle {
    font-size: 0.95rem;
  }

  .gs-hero-content {
    left: 5%;
    right: 5%;
    max-width: none;
  }

  .gs-video-grid {
    grid-template-columns: 1fr;
  }

  .gs-kol-grid {
    grid-template-columns: 1fr;
  }

  .gs-etiquette-item {
    flex-direction: column;
  }

  .gs-etiquette-img {
    width: 100%;
    border-radius: 12px 12px 0 0;
  }

  .gs-etiquette-content {
    padding: 24px;
  }

  .gs-art-grid {
    grid-template-columns: 1fr;
  }

  .gs-brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .gs-subscribe-form {
    flex-direction: column;
  }

  .gs-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .gs-quiz-options {
    grid-template-columns: 1fr;
  }

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

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

  .gs-page-hero {
    height: 280px;
  }
}

/* 768px - Tablets */
@media (min-width: 768px) and (max-width: 1023px) {
  .gs-nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--gs-cream);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--gs-gold-light);
  }

  .gs-nav-menu.gs-active {
    display: flex;
  }

  .gs-hamburger {
    display: flex;
  }

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

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

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

  .gs-brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

/* 1024px - Small desktops */
@media (min-width: 1024px) and (max-width: 1439px) {
  .gs-nav-menu {
    gap: 20px;
  }

  .gs-nav-link {
    font-size: 0.85rem;
  }
}

/* 1440px+ - Large desktops */
@media (min-width: 1440px) {
  .gs-hero-title {
    font-size: 3.5rem;
  }

  .gs-container {
    max-width: var(--gs-content-width);
  }
}

/* --- Utility Classes --- */
.gs-text-center { text-align: center; }
.gs-text-gold { color: var(--gs-gold); }
.gs-mt-40 { margin-top: 40px; }
.gs-mb-40 { margin-bottom: 40px; }
.gs-hidden { display: none; }

/* --- Announcement Bar --- */
.gs-announcement {
  background: linear-gradient(135deg, var(--gs-gold), var(--gs-gold-light));
  color: var(--gs-white);
  text-align: center;
  padding: 8px 16px;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

/* --- Video Page Grid --- */
.gs-video-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (max-width: 767px) {
  .gs-video-page-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Inner Page Article Grid --- */
.gs-article-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin: 40px 0;
}

.gs-article-card {
  background: var(--gs-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  transition: transform 0.3s ease;
}

.gs-article-card:hover {
  transform: translateY(-4px);
}

.gs-article-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.gs-article-card-body {
  padding: 24px;
}

.gs-article-card-body h3 {
  margin-bottom: 8px;
}

.gs-article-card-body p {
  font-size: 0.9rem;
  color: var(--gs-text-light);
}

@media (max-width: 767px) {
  .gs-article-grid {
    grid-template-columns: 1fr;
  }
}
