@media (min-width: 1025px) {
  .site-header {
    top: 0;
    left: 0;
    bottom: 0;
    right: auto;
    width: 220px;
    height: 100vh;
    border-bottom: none;
    border-right: 1px solid rgba(0, 200, 180, 0.22);
    padding: 1.5rem 0;
    z-index: 1200;
  }
  .header-container {
    height: 100%;
    max-width: 100%;
    padding: 0 1.25rem;
    margin: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.25rem;
  }
  .logo-section {
    width: 100%;
    gap: 0.5rem;
  }
  .title-group { width: 100%; }
  .main-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    margin-top: 0.75rem;
  }
  .main-content, .content-section { max-width: 1200px; }
  .nav-link {
    padding: 0.4rem 0.5rem;
    border-radius: 8px;
  }
  .nav-link:hover,
  .nav-link.active {
    background: rgba(0, 200, 180, 0.08);
  }
  .mobile-menu-toggle { display: none !important; }

  .main-content,
  .content-section,
  .site-footer,
  .guides-container {
    margin-left: 240px;
    padding-left: 1rem;
  }

  .main-content { margin-top: 0; }
}
/* 重置和基础样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  width: 100%;
}

/* 确保移动端不会横向滚动 */
@media screen and (max-width: 768px) {
  body, html {
    overflow-x: hidden;
    width: 100%;
  }
  
  .site-header,
  .main-content,
  .content-section,
  .hero-section {
    width: 100%;
    overflow-x: hidden;
  }
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: radial-gradient(1200px 800px at 10% 10%, rgba(0, 200, 180, 0.08), transparent 60%),
              radial-gradient(1000px 700px at 90% 20%, rgba(255, 180, 0, 0.08), transparent 60%),
              #0b0d10;
  color: #e7f6ff;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
}

* {
  box-sizing: border-box;
}

/* 粒子背景 - 都市奇幻风格 */
.particle-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 25% 75%, rgba(0, 200, 180, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 75% 25%, rgba(255, 180, 0, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 120, 255, 0.18) 0%, transparent 50%);
  z-index: -1;
}

/* 头部样式 */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(9, 12, 16, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 200, 180, 0.25);
  z-index: 1000;
  padding: 1rem 0;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  box-shadow: 0 0 0 2px rgba(0, 200, 180, 0.2), 0 8px 24px rgba(0, 200, 180, 0.18);
}

.title-group {
  display: flex;
  flex-direction: column;
}

.main-title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #e7f6ff;
  line-height: 1.2;
  text-transform: uppercase;
}

.subtitle {
  font-size: 0.75rem;
  color: #8fb8c8;
  font-weight: 600;
  letter-spacing: 1.2px;
}

.main-nav {
  display: flex;
  gap: 1rem;
}

.nav-link {
  color: #9fb9c6;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.6px;
  transition: color 0.25s ease;
  position: relative;
  text-transform: uppercase;
}

.nav-link:hover,
.nav-link.active {
  color: #ffd277;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 12px;
  height: 2px;
  background: linear-gradient(90deg, #00c8b4, #ffd277);
  opacity: 0.6;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform: scaleX(0);
  transform-origin: left;
}

.nav-link:hover::after,
.nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

/* 移动端菜单按钮 */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 25px;
  background: rgba(255, 100, 150, 0.1);
  border: 1px solid rgba(255, 100, 150, 0.3);
  border-radius: 4px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
  position: relative;
  outline: none;
}

.mobile-menu-toggle:hover {
  background: rgba(255, 100, 150, 0.2);
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
  display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* 主要内容 */
.main-content {
  margin-top: 100px;
  padding: 0 2rem;
  scroll-margin-top: 100px;
}

.hero-section {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  min-height: 80vh;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #00e0cf, #ffd277);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.05;
}

.hero-description {
  font-size: 1.05rem;
  color: #b8d6e3;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-button {
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-button.primary {
  background: linear-gradient(135deg, #00c8b4, #ffd277);
  color: #0b0d10;
}

.cta-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 200, 180, 0.35);
}

.cta-button.secondary {
  background: transparent;
  color: #e7f6ff;
  border: 2px dashed rgba(255, 210, 119, 0.5);
}

.cta-button.secondary:hover {
  background: rgba(255, 210, 119, 0.08);
  border-color: rgba(255, 210, 119, 0.8);
}

.platform-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  max-width: 360px;
}

.platform-badge {
  background: rgba(0, 200, 180, 0.08);
  color: #9fe8df;
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px dashed rgba(0, 200, 180, 0.35);
  text-align: center;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo {
  width: 320px;
  height: 320px;
  border-radius: 28px;
  box-shadow: 0 18px 60px rgba(0, 120, 255, 0.22), 0 0 0 4px rgba(0, 200, 180, 0.18);
  transform: rotate(-2deg);
}

/* 内容区域 */
.content-section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  scroll-margin-top: 120px;
}

.section-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

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

.section-title {
  font-size: 2.25rem;
  font-weight: 900;
  color: #e7f6ff;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-subtitle {
  font-size: 1rem;
  color: #9fb9c6;
  max-width: 680px;
  margin: 0 auto;
}

/* 世界观卡片 */
.world-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.world-card {
  background: linear-gradient(180deg, rgba(20, 26, 32, 0.7), rgba(14, 18, 22, 0.7));
  border: 1px solid rgba(0, 200, 180, 0.22);
  border-radius: 18px;
  padding: 2rem;
  text-align: left;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.world-card:hover {
  transform: translateY(-6px) rotate(-0.3deg);
  background: linear-gradient(180deg, rgba(24, 32, 40, 0.85), rgba(14, 18, 22, 0.8));
  border-color: rgba(0, 200, 180, 0.5);
}

.world-icon {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

.world-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffd277;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.world-card p {
  color: #b8d6e3;
  line-height: 1.8;
}

/* 新闻网格 */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1.5rem;
}

.news-item {
  background: linear-gradient(180deg, rgba(18, 24, 30, 0.7), rgba(16, 20, 24, 0.7));
  border: 1px solid rgba(0, 120, 255, 0.22);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.news-item:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 120, 255, 0.45);
}

.news-date {
  color: #7cc7ff;
  font-weight: 800;
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.news-content {
  color: #e7f6ff;
  line-height: 1.7;
}

/* 特色网格 */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: linear-gradient(180deg, rgba(16, 22, 28, 0.75), rgba(12, 16, 20, 0.75));
  border: 1px solid rgba(255, 210, 119, 0.22);
  border-radius: 18px;
  padding: 2rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px) rotate(0.2deg);
  border-color: rgba(255, 210, 119, 0.5);
}

.feature-icon {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 900;
  color: #ffd277;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.feature-card p {
  color: #b8d6e3;
  line-height: 1.8;
}

.team-section {
  margin-top: 4rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 100, 150, 0.2);
  border-radius: 16px;
  padding: 2rem;
}

.team-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.team-section p {
  color: #d0d0d0;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* 角色网格 */
.characters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.character-card {
  background: linear-gradient(180deg, rgba(18, 24, 30, 0.7), rgba(12, 16, 20, 0.7));
  border: 1px solid rgba(0, 200, 180, 0.22);
  border-radius: 18px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.character-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 200, 180, 0.5);
}

.character-avatar {
  font-size: 3rem;
  margin-bottom: 0.75rem;
}

.character-name {
  font-size: 1.15rem;
  font-weight: 900;
  color: #ffd277;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.character-description {
  color: #b8d6e3;
  line-height: 1.8;
}

/* 图片画廊 */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.gallery-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.25s ease, border-color 0.25s ease;
  border: 1px solid rgba(0, 120, 255, 0.22);
}

.gallery-image:hover {
  transform: rotate(-0.5deg) scale(1.03);
  border-color: rgba(0, 120, 255, 0.5);
}

.gallery-note {
  text-align: center;
  color: #9fb9c6;
  font-size: 0.85rem;
}

/* 评价网格 */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.review-card {
  background: linear-gradient(180deg, rgba(16, 22, 28, 0.75), rgba(12, 16, 20, 0.75));
  border: 1px solid rgba(0, 120, 255, 0.22);
  border-radius: 18px;
  padding: 2rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 120, 255, 0.5);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.reviewer-name {
  font-weight: 900;
  color: #ffd277;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.review-rating {
  font-size: 0.875rem;
}

.review-text {
  color: #d0d0d0;
  line-height: 1.6;
}

.feedback-section {
  text-align: center;
}

.feedback-button {
  display: inline-block;
  background: linear-gradient(135deg, #00c8b4, #ffd277);
  color: #0b0d10;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  transition: all 0.25s ease;
}

.feedback-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 200, 180, 0.35);
}

/* 游戏评分区域样式 */
.rating-section {
  margin: 3rem 0;
  text-align: center;
}

.rating-section h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2rem;
}

.rating-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.rating-item {
  background: linear-gradient(180deg, rgba(16, 22, 28, 0.7), rgba(12, 16, 20, 0.7));
  border: 1px solid rgba(255, 210, 119, 0.22);
  border-radius: 14px;
  padding: 1.5rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.rating-item:hover {
  border-color: rgba(255, 210, 119, 0.5);
  transform: translateY(-2px);
}

.rating-category {
  font-size: 1.05rem;
  font-weight: 900;
  color: #ffd277;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.rating-score {
  font-size: 1.5rem;
  font-weight: 900;
  color: #7cc7ff;
  margin-bottom: 1rem;
}

.total-score {
  font-size: 1.75rem;
  color: #00e0cf;
}

.rating-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

.rating-fill {
  height: 100%;
  background: linear-gradient(90deg, #00c8b4, #ffd277);
  border-radius: 4px;
  transition: width 1s ease;
}

.total-fill {
  background: linear-gradient(90deg, #7cc7ff, #ffd277);
}

.rating-summary {
  color: #a0a0a0;
  font-size: 0.875rem;
  font-style: italic;
}

/* FAQ样式 */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(180deg, rgba(18, 24, 30, 0.7), rgba(12, 16, 20, 0.7));
  border: 1px solid rgba(0, 200, 180, 0.22);
  border-radius: 14px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 200, 180, 0.5);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 100, 150, 0.05);
}

.faq-question h3 {
  font-size: 1.05rem;
  font-weight: 900;
  color: #ffd277;
  margin: 0;
  text-transform: uppercase;
}

.faq-toggle {
  font-size: 1.5rem;
  color: #00e0cf;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: #b8d6e3;
  line-height: 1.8;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* 下载网格 */
.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.download-card {
  background: linear-gradient(180deg, rgba(16, 22, 28, 0.75), rgba(12, 16, 20, 0.75));
  border: 1px solid rgba(0, 120, 255, 0.22);
  border-radius: 18px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.download-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 120, 255, 0.5);
}

.download-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.download-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.download-card p {
  color: #d0d0d0;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.download-button {
  display: inline-block;
  background: linear-gradient(135deg, #00c8b4, #ffd277);
  color: #0b0d10;
  padding: 0.875rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  transition: all 0.25s ease;
}

.download-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 200, 180, 0.35);
}

.download-note {
  text-align: center;
  color: #9fb9c6;
  font-size: 0.85rem;
  margin-bottom: 3rem;
}

.contact-section {
  text-align: center;
  background: linear-gradient(180deg, rgba(16, 22, 28, 0.6), rgba(12, 16, 20, 0.6));
  border: 1px solid rgba(0, 200, 180, 0.22);
  border-radius: 18px;
  padding: 2rem;
}

.contact-section h3 {
  font-size: 1.4rem;
  font-weight: 900;
  color: #ffd277;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.contact-info p {
  color: #b8d6e3;
  margin-bottom: 0.5rem;
}

.contact-info a {
  color: #7cc7ff;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* 页脚 */
.site-footer {
  background: rgba(7, 9, 12, 0.9);
  border-top: 1px solid rgba(0, 200, 180, 0.22);
  padding: 3rem 2rem 2rem;
  margin-top: 6rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.friend-links,
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.friend-links a,
.legal-links a {
  color: #8fb8c8;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.25s ease;
}

.friend-links a:hover,
.legal-links a:hover {
  color: #ffd277;
}

.copyright {
  color: #76909c;
  font-size: 0.85rem;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 200, 180, 0.22);
}

/* 响应式设计 */
@media (max-width: 768px) {
  .header-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    position: relative;
  }
  
  .main-nav {
    display: none;
  }
  
  .main-nav.active {
    display: block;
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    height: calc(100vh - 64px);
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    padding: 2rem;
    z-index: 1300;
    overflow-y: auto;
  }
  
  .main-nav.active .nav-link {
    display: block;
    font-size: 1rem;
    padding: 1rem 2rem;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 100, 150, 0.1);
  }
  
  .mobile-menu-toggle {
    display: flex !important;
    position: relative;
    z-index: 1400;
  }
  
  .hero-section {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-actions {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  
  .cta-button {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
  
  .content-section {
    padding: 4rem 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .world-content,
  .features-grid,
  .characters-grid,
  .download-grid,
  .rating-grid {
    grid-template-columns: 1fr;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .platform-badges {
    justify-content: center;
  }
  
  .platform-badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }
}

@media (max-width: 480px) {
  .main-content {
    padding: 0 1rem;
    width: 100%;
  }
  
  .hero-title {
    font-size: 2rem;
    word-wrap: break-word;
  }
  
  .cta-button {
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
  }
  
  .section-title {
    font-size: 1.75rem;
    word-wrap: break-word;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .nav-link {
    font-size: 0.9rem;
    padding: 0.875rem 1.5rem;
  }
  
  .hero-logo {
    width: 200px;
    height: 200px;
  }
  
  .rating-item {
    padding: 1rem;
  }
  
  .rating-category {
    font-size: 1rem;
  }
  
  .rating-score {
    font-size: 1.25rem;
  }
  
  .content-section {
    padding: 3rem 1rem;
    width: 100%;
  }
  
  .hero-section {
    padding: 0 1rem;
    width: 100%;
  }
}