/* ============================================
   看片 - 火影忍者动漫风格原创样式表
   域名: hpudjm.cn
   配色: 忍者橙 #FF6B2B / 深蓝 #1A1A3E / 火焰红 #E8192C / 金色 #FFD700
   ============================================ */

/* === CSS Reset & Base === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', sans-serif;
  background: #0D0D2B;
  color: #E8E8F0;
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: #FF6B2B; text-decoration: none; transition: color 0.3s; }
a:hover { color: #FFD700; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* === 干扰标签隐藏 === */
.nr-pqgqqa { display: none !important; visibility: hidden !important; width: 0 !important; height: 0 !important; overflow: hidden !important; position: absolute !important; left: -9999px !important; }

/* === Container === */
.nr-container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

/* === Header === */
.nr-header {
  background: linear-gradient(180deg, #0D0D2B 0%, #1A1A3E 100%);
  border-bottom: 3px solid #FF6B2B;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
}
.nr-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 20px;
}
.nr-logo { display: flex; align-items: center; gap: 12px; }
.nr-logo img { height: 48px; width: auto; border-radius: 8px; }
.nr-logo-text {
  font-size: 1.6rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FF6B2B, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
}

/* === Navigation === */
.nr-nav { display: flex; align-items: center; gap: 6px; }
.nr-nav a {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #C8C8E0;
  transition: all 0.3s;
  position: relative;
}
.nr-nav a:hover, .nr-nav a.active {
  color: #FFD700;
  background: rgba(255, 107, 43, 0.15);
}
.nr-nav a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #FF6B2B;
  transition: width 0.3s;
}
.nr-nav a:hover::after { width: 60%; }

/* === Mobile Menu === */
.nr-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nr-menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: #FF6B2B;
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

/* === Search Bar === */
.nr-search-bar {
  background: linear-gradient(135deg, #1A1A3E 0%, #2A1A4E 100%);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 107, 43, 0.2);
}
.nr-search-box {
  display: flex;
  max-width: 680px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  border: 2px solid rgba(255, 107, 43, 0.3);
  overflow: hidden;
  transition: border-color 0.3s;
}
.nr-search-box:focus-within { border-color: #FF6B2B; }
.nr-search-box input {
  flex: 1;
  padding: 12px 24px;
  background: transparent;
  border: none;
  color: #E8E8F0;
  font-size: 1rem;
  outline: none;
}
.nr-search-box input::placeholder { color: #888; }
.nr-search-box button {
  padding: 12px 28px;
  background: linear-gradient(135deg, #FF6B2B, #E8192C);
  border: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s;
}
.nr-search-box button:hover { background: linear-gradient(135deg, #E8192C, #FF6B2B); }

/* === Hot Tags === */
.nr-hot-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.nr-hot-tags a {
  padding: 4px 14px;
  background: rgba(255, 107, 43, 0.1);
  border: 1px solid rgba(255, 107, 43, 0.25);
  border-radius: 15px;
  font-size: 0.85rem;
  color: #C8C8E0;
  transition: all 0.3s;
}
.nr-hot-tags a:hover {
  background: rgba(255, 107, 43, 0.25);
  color: #FFD700;
  border-color: #FF6B2B;
}

/* === Hero Banner === */
.nr-hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
}
.nr-hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}
.nr-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 20px;
}
.nr-hero h1 {
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FF6B2B, #FFD700, #E8192C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  text-shadow: none;
}
.nr-hero h2 {
  font-size: 1.3rem;
  color: #E8E8F0;
  font-weight: 400;
  margin-bottom: 24px;
}
.nr-hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.nr-btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, #FF6B2B, #E8192C);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}
.nr-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255, 107, 43, 0.4); color: #fff; }
.nr-btn-secondary {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  color: #FFD700;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 30px;
  border: 2px solid #FFD700;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}
.nr-btn-secondary:hover { background: rgba(255, 215, 0, 0.15); color: #FFD700; }

/* === Section Common === */
.nr-section {
  padding: 60px 0;
}
.nr-section-alt {
  padding: 60px 0;
  background: linear-gradient(180deg, #12122E 0%, #0D0D2B 100%);
}
.nr-section-title {
  text-align: center;
  margin-bottom: 40px;
}
.nr-section-title h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #FF6B2B;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}
.nr-section-title h2::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #FF6B2B, #FFD700);
  border-radius: 2px;
}
.nr-section-title p {
  color: #999;
  font-size: 1rem;
  margin-top: 12px;
}

/* === Video Grid === */
.nr-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.nr-video-card {
  background: #1A1A3E;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  border: 1px solid rgba(255, 107, 43, 0.1);
}
.nr-video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(255, 107, 43, 0.2);
  border-color: #FF6B2B;
}
.nr-video-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.nr-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.nr-video-card:hover .nr-video-thumb img { transform: scale(1.08); }
.nr-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 107, 43, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.nr-play-btn::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 22px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
}
.nr-video-card:hover .nr-play-btn { opacity: 1; }
.nr-video-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
}
.nr-video-info { padding: 16px; }
.nr-video-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #E8E8F0;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nr-video-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #888;
}
.nr-video-tags { display: flex; gap: 6px; margin-top: 8px; flex-wrap: wrap; }
.nr-video-tags span {
  padding: 2px 10px;
  background: rgba(255, 107, 43, 0.1);
  border-radius: 10px;
  font-size: 0.78rem;
  color: #FF6B2B;
}

/* === Category Tabs === */
.nr-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.nr-tab {
  padding: 8px 22px;
  background: rgba(255, 107, 43, 0.08);
  border: 1px solid rgba(255, 107, 43, 0.2);
  border-radius: 20px;
  color: #C8C8E0;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
}
.nr-tab:hover, .nr-tab.active {
  background: linear-gradient(135deg, #FF6B2B, #E8192C);
  color: #fff;
  border-color: transparent;
}

/* === Feature Cards === */
.nr-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.nr-feature-card {
  background: linear-gradient(145deg, #1A1A3E, #22224A);
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  border: 1px solid rgba(255, 107, 43, 0.1);
  transition: all 0.3s;
}
.nr-feature-card:hover {
  border-color: #FF6B2B;
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(255, 107, 43, 0.15);
}
.nr-feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, rgba(255, 107, 43, 0.2), rgba(232, 25, 44, 0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.nr-feature-card h3 {
  font-size: 1.1rem;
  color: #FFD700;
  margin-bottom: 10px;
}
.nr-feature-card p {
  font-size: 0.9rem;
  color: #999;
  line-height: 1.6;
}

/* === AI Section === */
.nr-ai-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.nr-ai-section img { border-radius: 16px; }
.nr-ai-text h3 {
  font-size: 1.5rem;
  color: #FF6B2B;
  margin-bottom: 16px;
}
.nr-ai-text p {
  color: #C8C8E0;
  margin-bottom: 12px;
  line-height: 1.8;
}
.nr-ai-list { margin-top: 16px; }
.nr-ai-list li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #C8C8E0;
}
.nr-ai-list li::before {
  content: '\25B6';
  position: absolute;
  left: 0;
  color: #FF6B2B;
  font-size: 0.7rem;
  top: 10px;
}

/* === Expert Section === */
.nr-expert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.nr-expert-card {
  background: #1A1A3E;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  border: 1px solid rgba(255, 107, 43, 0.1);
  transition: all 0.3s;
}
.nr-expert-card:hover { border-color: #FFD700; }
.nr-expert-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid #FF6B2B;
}
.nr-expert-card h4 {
  font-size: 1.1rem;
  color: #FFD700;
  margin-bottom: 6px;
}
.nr-expert-card .nr-expert-title {
  font-size: 0.85rem;
  color: #FF6B2B;
  margin-bottom: 10px;
}
.nr-expert-card p {
  font-size: 0.85rem;
  color: #999;
  line-height: 1.6;
}

/* === Community Section === */
.nr-community-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.nr-community-card {
  background: #1A1A3E;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 107, 43, 0.1);
  transition: all 0.3s;
}
.nr-community-card:hover { border-color: #FF6B2B; }
.nr-community-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.nr-community-card-body { padding: 20px; }
.nr-community-card h3 {
  font-size: 1.2rem;
  color: #FFD700;
  margin-bottom: 10px;
}
.nr-community-card p {
  color: #999;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* === FAQ Section === */
.nr-faq-list { max-width: 800px; margin: 0 auto; }
.nr-faq-item {
  background: #1A1A3E;
  border-radius: 12px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 107, 43, 0.1);
  overflow: hidden;
}
.nr-faq-question {
  padding: 18px 24px;
  font-size: 1rem;
  font-weight: 700;
  color: #E8E8F0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}
.nr-faq-question:hover { color: #FF6B2B; }
.nr-faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: #FF6B2B;
  transition: transform 0.3s;
}
.nr-faq-item.active .nr-faq-question::after {
  content: '-';
  transform: rotate(180deg);
}
.nr-faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
}
.nr-faq-item.active .nr-faq-answer {
  padding: 0 24px 18px;
  max-height: 500px;
}
.nr-faq-answer p {
  color: #999;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* === Reviews === */
.nr-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.nr-review-card {
  background: #1A1A3E;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid rgba(255, 107, 43, 0.1);
}
.nr-review-stars { color: #FFD700; font-size: 1.1rem; margin-bottom: 12px; }
.nr-review-card p {
  color: #C8C8E0;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 12px;
}
.nr-review-author {
  font-size: 0.85rem;
  color: #FF6B2B;
  font-weight: 600;
}

/* === Stats Bar === */
.nr-stats {
  background: linear-gradient(135deg, #1A1A3E, #2A1A4E);
  padding: 40px 0;
  border-top: 1px solid rgba(255, 107, 43, 0.15);
  border-bottom: 1px solid rgba(255, 107, 43, 0.15);
}
.nr-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.nr-stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FF6B2B, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nr-stat-label {
  font-size: 0.9rem;
  color: #999;
  margin-top: 6px;
}

/* === Breadcrumb === */
.nr-breadcrumb {
  padding: 16px 0;
  font-size: 0.85rem;
  color: #888;
}
.nr-breadcrumb a { color: #FF6B2B; }
.nr-breadcrumb span { margin: 0 8px; color: #555; }

/* === Footer === */
.nr-footer {
  background: #080820;
  border-top: 3px solid #FF6B2B;
  padding: 50px 0 0;
}
.nr-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.nr-footer-brand h3 {
  font-size: 1.4rem;
  background: linear-gradient(135deg, #FF6B2B, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.nr-footer-brand p {
  color: #888;
  font-size: 0.9rem;
  line-height: 1.7;
}
.nr-footer h4 {
  font-size: 1rem;
  color: #FFD700;
  margin-bottom: 16px;
  font-weight: 700;
}
.nr-footer-links a {
  display: block;
  padding: 4px 0;
  color: #888;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.nr-footer-links a:hover { color: #FF6B2B; }
.nr-footer-qr { display: flex; gap: 16px; }
.nr-footer-qr img {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  border: 2px solid rgba(255, 107, 43, 0.3);
}
.nr-footer-bottom {
  border-top: 1px solid rgba(255, 107, 43, 0.15);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: #666;
}

/* === Pagination === */
.nr-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.nr-pagination a, .nr-pagination span {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: all 0.3s;
}
.nr-pagination a {
  background: #1A1A3E;
  color: #C8C8E0;
  border: 1px solid rgba(255, 107, 43, 0.2);
}
.nr-pagination a:hover, .nr-pagination span.active {
  background: linear-gradient(135deg, #FF6B2B, #E8192C);
  color: #fff;
  border-color: transparent;
}

/* === Article Content === */
.nr-article { max-width: 900px; margin: 0 auto; }
.nr-article h2 { font-size: 1.6rem; color: #FF6B2B; margin: 30px 0 16px; }
.nr-article h3 { font-size: 1.3rem; color: #FFD700; margin: 24px 0 12px; }
.nr-article p { color: #C8C8E0; margin-bottom: 16px; line-height: 1.8; }
.nr-article ul { margin: 16px 0; padding-left: 20px; }
.nr-article ul li { color: #C8C8E0; padding: 4px 0; list-style: disc; }

/* === Sidebar === */
.nr-layout-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 30px;
}
.nr-sidebar-card {
  background: #1A1A3E;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 107, 43, 0.1);
}
.nr-sidebar-card h4 {
  font-size: 1rem;
  color: #FFD700;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 107, 43, 0.15);
}

/* === Milestone Timeline === */
.nr-timeline { position: relative; padding-left: 30px; }
.nr-timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #FF6B2B, #FFD700);
}
.nr-timeline-item {
  position: relative;
  margin-bottom: 30px;
  padding-left: 20px;
}
.nr-timeline-item::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: #FF6B2B;
  border-radius: 50%;
  border: 2px solid #FFD700;
}
.nr-timeline-item h4 { color: #FFD700; font-size: 1rem; margin-bottom: 6px; }
.nr-timeline-item p { color: #999; font-size: 0.9rem; }

/* === Contact Grid === */
.nr-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.nr-contact-card {
  background: #1A1A3E;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 107, 43, 0.1);
}
.nr-contact-card h4 { color: #FFD700; margin-bottom: 10px; }
.nr-contact-card p { color: #999; font-size: 0.9rem; }

/* === Scroll to Top === */
.nr-scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #FF6B2B, #E8192C);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 107, 43, 0.4);
  transition: all 0.3s;
}
.nr-scroll-top::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 14px 10px;
  border-color: transparent transparent #fff transparent;
}
.nr-scroll-top:hover { transform: translateY(-3px); }
.nr-scroll-top.visible { display: flex; }

/* === Responsive === */
@media (max-width: 1024px) {
  .nr-video-grid { grid-template-columns: repeat(2, 1fr); }
  .nr-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .nr-expert-grid { grid-template-columns: repeat(2, 1fr); }
  .nr-footer-grid { grid-template-columns: repeat(2, 1fr); }
  .nr-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .nr-ai-section { grid-template-columns: 1fr; }
  .nr-layout-with-sidebar { grid-template-columns: 1fr; }
  .nr-review-grid { grid-template-columns: repeat(2, 1fr); }
  .nr-contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nr-nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #1A1A3E; padding: 20px; border-bottom: 3px solid #FF6B2B; }
  .nr-nav.active { display: flex; }
  .nr-menu-toggle { display: block; }
  .nr-hero h1 { font-size: 1.8rem; }
  .nr-hero h2 { font-size: 1rem; }
  .nr-video-grid { grid-template-columns: 1fr; }
  .nr-feature-grid { grid-template-columns: 1fr; }
  .nr-expert-grid { grid-template-columns: 1fr; }
  .nr-community-grid { grid-template-columns: 1fr; }
  .nr-review-grid { grid-template-columns: 1fr; }
  .nr-footer-grid { grid-template-columns: 1fr; }
  .nr-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .nr-contact-grid { grid-template-columns: 1fr; }
  .nr-section { padding: 40px 0; }
  .nr-section-alt { padding: 40px 0; }
  .nr-hero { min-height: 300px; }
  .nr-hero-btns { flex-direction: column; }
  .nr-btn-primary, .nr-btn-secondary { width: 100%; }
}

@media (max-width: 480px) {
  html { font-size: 14px; }
  .nr-header-inner { padding: 8px 12px; }
  .nr-logo img { height: 36px; }
  .nr-logo-text { font-size: 1.2rem; }
}
