/* shion.css */
:root {
  --key-color: #80c0dd;
  --sub-color-1: #00344b;
  --sub-color-2: #964a00;
  --sub-color-3: #e6f4f1;
  --text-color: #17171c;
  --bg-color: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: var(--text-color);
  background: var(--bg-color);
  line-height: 1.6;
}

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

a:hover {
  color: var(--key-color);
}

/* Header Styles */
.site-header {
  position: relative;
  padding: 3rem 1rem;
  background: var(--sub-color-3);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wave-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--key-color) 25%, transparent 25%) -50px 0,
    linear-gradient(225deg, var(--key-color) 25%, transparent 25%) -50px 0,
    linear-gradient(315deg, var(--key-color) 25%, transparent 25%),
    linear-gradient(45deg, var(--key-color) 25%, transparent 25%);
  background-size: 100px 100px;
  background-color: var(--sub-color-3);
  opacity: 0.1;
  z-index: 1;
  animation: waveMove 20s linear infinite;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  padding: 2rem;
}

.title-animation {
  position: relative;
  color: var(--sub-color-1);
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  animation: titleReveal 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(45deg, var(--sub-color-1), var(--key-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.title-animation::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--key-color);
  animation: lineExpand 1s ease-out 1s forwards;
}

.main-image {
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  animation: imageReveal 1s ease-out 0.5s forwards;
}

.main-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.main-image:hover img {
  transform: scale(1.02);
}

.main-image figcaption {
  text-align: center;
  color: var(--sub-color-1);
  margin-top: 1rem;
  font-size: 1rem;
  opacity: 0.8;
}

/* Animations */
@keyframes titleReveal {
  0% {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes imageReveal {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lineExpand {
  0% {
    width: 0;
  }
  100% {
    width: 100px;
  }
}

@keyframes waveMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100px 100px;
  }
}

/* Responsive Header */
@media (max-width: 768px) {
  .site-header {
    min-height: auto;
    padding: 2rem 1rem;
  }

  .title-animation {
    font-size: 1.8rem;
  }

  .hero-container {
    padding: 1rem;
  }
}

/* Article Info Section */
.article-info {
  background: var(--bg-color);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--key-color);
  margin-bottom: 2rem;
}

.article-info .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.time {
  color: var(--sub-color-1);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.share-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.twitter-share-button,
.fb-share-button {
  min-width: 80px;
}

.fb-share-button a {
  background: #1877f2;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.fb-share-button a:hover {
  background: #166fe5;
}

/* Responsive Article Info */
@media (max-width: 768px) {
  .article-info .container {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 1rem;
  }

  .share-buttons {
    width: 100%;
    justify-content: flex-start;
  }
}

/* Table of Contents */
.article-toc {
  background: linear-gradient(to right, var(--sub-color-3), var(--bg-color));
  border-radius: 8px;
  padding: 2rem;
  margin: 2rem 0;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.article-toc::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--key-color);
  border-radius: 4px 0 0 4px;
}

.toc-title {
  color: var(--sub-color-1);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--key-color);
  display: inline-block;
}

.toc-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.toc-list li {
  position: relative;
  transition: transform 0.3s ease;
}

.toc-list li:hover {
  transform: translateX(5px);
}

.toc-list a {
  color: var(--text-color);
  text-decoration: none;
  padding: 0.5rem 0;
  display: block;
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.toc-list a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--key-color);
  border-radius: 50%;
  transition: background 0.3s ease, transform 0.3s ease;
}

.toc-list a:hover {
  color: var(--sub-color-1);
}

.toc-list a:hover::before {
  background: var(--sub-color-1);
  transform: translateY(-50%) scale(1.2);
}

/* Responsive TOC */
@media (max-width: 768px) {
  .article-toc {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .toc-list {
    grid-template-columns: 1fr;
  }

  .toc-title {
    font-size: 1.3rem;
  }
}

/* Main Content */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

section {
  margin-bottom: 3rem;
}

.description-box {
  background: var(--sub-color-3);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

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

.profile-item {
  background: var(--sub-color-3);
  padding: 1rem;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
}

.label {
  color: var(--sub-color-1);
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.profile-img {
  max-width: 100%;
  margin: 2rem 0;
}

.profile-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.caption {
  text-align: center;
  color: var(--sub-color-1);
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

/* Responsive Main Content */
@media (max-width: 768px) {
  main {
    padding: 1rem;
  }

  .title-animation {
    font-size: 1.5rem;
  }

  .profile-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer Styles (Initial) */
.site-footer {
  position: relative;
  padding: 2rem;
  background: var(--sub-color-3);
  text-align: center;
  margin-top: 3rem;
}

/* Typography */
h2 {
  color: var(--sub-color-1);
  border-bottom: 3px solid var(--key-color);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

.emphasis {
  color: var(--sub-color-2);
  font-weight: bold;
  margin-top: 1rem;
}

/* Ability Section */
.ability-content {
  background: linear-gradient(to right, var(--sub-color-3), var(--bg-color));
  padding: 2rem;
  border-radius: 8px;
}

.tao-explanation {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border-left: 4px solid var(--key-color);
}

/* New Section Styles */
.character-section,
.past-section,
.eye-section {
  padding: 2rem;
  background: linear-gradient(to right, var(--sub-color-3) 0%, var(--bg-color) 100%);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  position: relative;
  margin-bottom: 3rem;
}

.character-section:hover,
.past-section:hover,
.eye-section:hover {
  transform: translateY(-5px);
}

.character-content,
.past-content,
.eye-content {
  position: relative;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.5);
}

.sub-heading {
  color: var(--sub-color-2);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  padding-bottom: 0.5rem;
  border-bottom: 2px dashed var(--key-color);
}

.character-content p,
.past-content p,
.eye-content p {
  line-height: 2;
  margin-bottom: 1.5rem;
}

.character-content p:last-child,
.past-content p:last-child,
.eye-content p:last-child {
  margin-bottom: 0;
}

/* Wave Pattern Background for New Sections */
.character-section::before,
.past-section::before,
.eye-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--key-color) 25%, transparent 25%) -50px 0,
    linear-gradient(-45deg, var(--key-color) 25%, transparent 25%) -50px 0;
  background-size: 100px 100px;
  opacity: 0.03;
  border-radius: 12px;
  z-index: 0;
}

/* Responsive New Sections */
@media (max-width: 768px) {
  .character-section,
  .past-section,
  .eye-section {
    padding: 1rem;
    margin: 0 1rem 2rem;
  }

  .character-content,
  .past-content,
  .eye-content {
    padding: 1rem;
  }

  .sub-heading {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
}

/* Line Break Spacing */
br {
  display: block;
  content: "";
  margin: 0.8em 0;
}

/* Relations Section Styles */
.relations-section {
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--sub-color-3), var(--bg-color));
  border-radius: 16px;
  margin-bottom: 4rem;
}

.relations-intro {
  font-size: 1.2rem;
  color: var(--sub-color-1);
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 500;
}

.relations-table-container {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.relations-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--bg-color);
}

.relations-table th {
  background: var(--sub-color-1);
  color: var(--bg-color);
  padding: 1.2rem;
  text-align: left;
  font-weight: 500;
}

.relations-table th:first-child {
  border-top-left-radius: 12px;
}

.relations-table th:last-child {
  border-top-right-radius: 12px;
}

.member-row {
  transition: background-color 0.3s ease;
}

.member-row:hover {
  background-color: var(--sub-color-3);
}

.member-row td {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.name-cell {
  font-weight: 600;
  color: var(--sub-color-1);
  white-space: nowrap;
  width: 15%;
}

.image-cell {
  width: 20%;
}

.member-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--key-color);
  transition: transform 0.3s ease;
}

.member-row:hover .member-image {
  transform: scale(1.1);
}

.relation-cell {
  line-height: 1.8;
  color: var(--text-color);
}

.relations-footer {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  border-left: 4px solid var(--key-color);
  line-height: 1.8;
}

/* Responsive Relations Table for Mobile */
@media (max-width: 768px) {
  /* テーブルコンテナの左右余白を狭める */
  .relations-table-container {
    padding: 0 1rem;
    margin: 0;
  }
  /* ヘッダー非表示 */
  .relations-table thead {
    display: none;
  }
  /* テーブル全体をブロック要素に */
  .relations-table,
  .relations-table tbody,
  .relations-table tr,
  .relations-table td {
    display: block;
    width: 100%;
  }
  /* 各行のスタイル */
  .member-row {
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem;
  }
  /* セルの表示順を変更して、顔画像→名前→関係性の順に */
  .image-cell {
    order: 1;
    text-align: center;
    margin-bottom: 0.5rem;
  }
  .name-cell {
    order: 2;
    text-align: center;
    font-weight: bold;
    background-color: var(--text-color);
    color: #fff;
    padding: 0.5rem;
    border-radius: 4px;
  }
  .relation-cell {
    order: 3;
  }
  /* 画像サイズをやや大きく */
  .member-image {
    width: 100px;
    height: auto;
  }
}

/* Custom Scrollbar for Table Container */
.relations-table-container::-webkit-scrollbar {
  height: 8px;
}

.relations-table-container::-webkit-scrollbar-track {
  background: var(--sub-color-3);
  border-radius: 4px;
}

.relations-table-container::-webkit-scrollbar-thumb {
  background: var(--key-color);
  border-radius: 4px;
}

/* New Sections Styles */
.sagiri-section,
.anime-section,
.summary-section {
  padding: 3rem 2rem;
  margin-bottom: 4rem;
  position: relative;
  background: linear-gradient(135deg, var(--sub-color-3), var(--bg-color));
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.summary-content {
  position: relative;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
}

.summary-image {
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.summary-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.summary-image:hover img {
  transform: scale(1.02);
}

.summary-image figcaption {
  text-align: center;
  padding: 1rem;
  color: var(--sub-color-1);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

/* Unique Decoration for Summary Section */
.summary-section::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--key-color);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .sagiri-section,
  .anime-section,
  .summary-section {
    padding: 2rem 1rem;
    margin: 0 1rem 3rem;
  }

  .summary-content {
    padding: 1rem;
  }

  .summary-image figcaption {
    padding: 0.8rem;
    font-size: 0.8rem;
  }
}

/* Footer Styles (Final) */
.site-footer {
  position: relative;
  background: var(--sub-color-1);
  color: var(--bg-color);
  padding: 4rem 2rem 2rem;
  overflow: hidden;
}

.wave-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: linear-gradient(45deg, var(--key-color) 25%, transparent 25%) -50px 0,
    linear-gradient(-45deg, var(--key-color) 25%, transparent 25%) -50px 0;
  background-size: 100px 100px;
  opacity: 0.3;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 3rem;
}

.contact-section {
  position: relative;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.mail-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--key-color);
  text-decoration: none;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.mail-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

.mail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-text {
  line-height: 1.8;
  opacity: 0.9;
}

.usage-terms {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.terms-content {
  line-height: 1.8;
}

.terms-main p {
  margin-bottom: 1rem;
}

.terms-list {
  list-style: none;
  padding-left: 1.5rem;
}

.terms-list li {
  position: relative;
  margin-bottom: 0.8rem;
}

.terms-list li::before {
  content: '';
  position: absolute;
  left: -1.5rem;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--key-color);
  border-radius: 50%;
  transform: translateY(-50%);
}

.link-text,
.site-name {
  color: var(--key-color);
  font-weight: 500;
}

.footer-brand {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--bg-color);
  text-decoration: none;
  margin-bottom: 1rem;
  transition: opacity 0.3s ease;
}

.brand-link:hover {
  opacity: 0.8;
}

.brand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.copyright {
  font-size: 0.9rem;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 3rem 1rem 1.5rem;
  }

  .footer-content {
    gap: 2rem;
  }

  .contact-section,
  .usage-terms {
    padding: 1.5rem;
  }
}

/* Recommendations Section */
.recommendations-section {
    position: relative;
    padding: 3rem 2rem;
    margin: 4rem 0;
    background: linear-gradient(135deg, var(--sub-color-3), var(--bg-color));
    border-radius: 16px;
    overflow: hidden;
}

.recommendations-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--key-color) 25%, transparent 25%) -50px 0,
                linear-gradient(-45deg, var(--key-color) 25%, transparent 25%) -50px 0;
    background-size: 100px 100px;
    opacity: 0.05;
    z-index: 1;
}

.recommendations-grid {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.recommendations-grid .push0 {
    display: block;
    text-decoration: none;
    color: var(--text-color);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recommendations-grid .push0:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.recommendations-grid img.sneak {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    transition: transform 0.5s ease;
}

.recommendations-grid .push0:hover img.sneak {
    transform: scale(1.05);
}

.recommendations-grid .push0 {
    padding-bottom: 1.5rem;
}

.recommendations-grid .push0 img + text {
    display: block;
    padding: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--sub-color-1);
}

/* Override the default br styling */
.recommendations-grid br {
    display: none;
}

@media (min-width: 768px) {
    .recommendations-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 767px) {
    .recommendations-section {
        padding: 2rem 1rem;
        margin: 2rem 1rem;
    }

    .recommendations-grid .push0 {
        margin-bottom: 2rem;
    }
}

.char-link {
  display: inline-block;
  background-color: var(--key-color);
  color: var(--bg-color);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 0.5rem;
}

.char-link:hover {
  background-color: var(--sub-color-1);
  transform: translateY(-2px);
}
/* Breadcrumb Styles */
.breadcrumb-nav {
    margin: 2rem 0;
    background: var(--sub-color-3);
    padding: 1rem 2rem;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.breadcrumb-nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--key-color), var(--sub-color-1));
    opacity: 0.7;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: var(--sub-color-1);
    font-size: 0.9rem;
}

.breadcrumb-item:not(:last-child)::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-top: 2px solid var(--key-color);
    border-right: 2px solid var(--key-color);
    transform: rotate(45deg);
    margin: 0 0.8rem;
    opacity: 0.7;
}

.breadcrumb-link {
    color: var(--sub-color-1);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.breadcrumb-link:hover {
    color: var(--key-color);
    transform: translateX(2px);
}

.current-page {
    color: var(--sub-color-2);
    font-weight: 600;
}

@media (max-width: 768px) {
    .breadcrumb-nav {
        padding: 0.8rem 1rem;
        margin: 1.5rem 1rem;
    }

    .breadcrumb-item {
        font-size: 0.8rem;
    }

    .breadcrumb-item:not(:last-child)::after {
        width: 5px;
        height: 5px;
        margin: 0 0.5rem;
    }
}
/* ナビゲーションボタン */
.nav-buttons-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.nav-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    color: var(--white);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 52, 75, 0.2);
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 200px;
}

.nav-button:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 52, 75, 0.3);
}

.nav-button-icon {
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .nav-button {
        flex: 1 1 100%;
    }
}
