/* ベーススタイル */
:root {
  --primary-color: #8A2BE2;
  /* BlueViolet - メインカラー */
  --secondary-color: #00BCD4;
  /* Cyan - サブカラー */
  --accent-color: #FF4081;
  /* Pink - アクセント */

  --bg-color: #12121c;
  /* より深い背景 */
  --card-bg: #1e1e2e;
  /* カード背景 */
  --header-bg: rgba(30, 30, 46, 0.85);
  /* ヘッダー背景 (半透明) */

  --text-color: #E0E0E0;
  /* 明るいグレー */
  --text-secondary-color: #b0b3c7;
  /* やや暗いグレー */
  --text-dark: #2d3436;
  /* ライトモード用（今回はあまり使わない）*/

  --border-color: #3A3A5A;
  /* 境界線 */
  --highlight-glow: rgba(138, 43, 226, 0.6);
  /* Primary colorのglow */

  --font-primary: 'Poppins', 'Noto Sans JP', sans-serif;
  --font-secondary: 'Roboto', 'Noto Sans JP', sans-serif;

  --transition-fast: all 0.2s ease-in-out;
  --transition-normal: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);

  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.4);
}

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

html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-secondary);
  line-height: 1.7;
  color: var(--text-color);
  background-color: var(--bg-color);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: var(--transition-fast);
}

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

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

.container {
  width: 90%;
  max-width: 1100px;
  /* 少し狭めてコンテンツの密度感を調整 */
  margin: 0 auto;
  padding: 0 15px;
}

/* カスタムカーソル */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--accent-color);
  pointer-events: none;
  mix-blend-mode: difference;
  /* ダークテーマで効果的 */
  z-index: 10001;
  /* ヘッダーより上 */
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
}

.cursor-follower {
  position: fixed;
  width: 30px;
  height: 30px;
  border: 2px solid var(--secondary-color);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  opacity: 0.5;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

/* ヘッダー */
#header {
  padding: 1rem 0;
  background-color: var(--header-bg);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

#header.scrolled {
  padding: 0.8rem 0;
  background-color: rgba(30, 30, 46, 0.95);
  /* スクロール時少し濃く */
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-color);
  letter-spacing: 0.5px;
}

.logo:hover {
  color: var(--primary-color);
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.8rem;
}

.main-nav a {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary-color);
  position: relative;
  padding: 0.3rem 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: var(--transition-fast);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text-color);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  /* モバイルでのみ表示 */
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ヒーローセクション */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10rem 0 5rem;
  /* ヘッダーの高さを考慮 */
  position: relative;
  overflow: hidden;
}

.hero-background-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: -1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: var(--primary-color);
  top: 10%;
  left: 5%;
  animation: float 10s ease-in-out infinite;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: var(--secondary-color);
  bottom: 15%;
  right: 10%;
  animation: float 12s ease-in-out infinite reverse;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: var(--accent-color);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: float 8s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-30px);
  }
}


.hero-content h1 {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 6vw, 4rem);
  /* Responsive font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content h1 .highlight {
  color: var(--primary-color);
  text-shadow: 0 0 15px var(--highlight-glow);
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-secondary-color);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ボタン共通スタイル */
.btn {
  font-family: var(--font-primary);
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition-normal);
  border: 2px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  /* リップルエフェクト用 */
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 6px 20px rgba(0, 188, 212, 0.4);
  color: white;
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-color);
  border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--bg-color);
  transform: translateY(-3px);
}

/* リップルエフェクト */
.ripple {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}


/* セクション共通 */
section {
  padding: 6rem 0;
}

section:nth-of-type(even) {
  /* background-color: #171723; /*交互の背景色（オプション）*/
}

.section-title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-color);
  position: relative;
}

.section-title span {
  /* 英語タイトル */
  display: block;
  font-size: 0.5em;
  color: var(--secondary-color);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.section-title::after {
  content: '';
  position: absolute;
  width: 70px;
  height: 4px;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary-color);
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Aboutセクション */
.about-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-top: 3rem;
}

.about-image-wrapper {
  flex: 0 0 300px;
  /* 固定幅 */
  position: relative;
}

.about-image {
  width: 280px;
  /* 画像サイズ */
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--border-color);
  box-shadow: 0 0 30px rgba(0, 188, 212, 0.2);
  position: relative;
  /* z-indexのため */
  z-index: 1;
}

.about-image-wrapper::before {
  /* 装飾的な背景要素 */
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 40% 60% 70% 30% / 30% 50% 50% 70%;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  opacity: 0.2;
  top: -10px;
  left: -10px;
  animation: blobMorph 8s ease-in-out infinite;
  z-index: 0;
}

@keyframes blobMorph {

  0%,
  100% {
    border-radius: 40% 60% 70% 30% / 30% 50% 50% 70%;
  }

  33% {
    border-radius: 70% 30% 50% 50% / 60% 40% 30% 30%;
  }

  66% {
    border-radius: 50% 50% 30% 70% / 40% 30% 60% 60%;
  }
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.about-text p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.social-links-about {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links-about a {
  color: var(--text-secondary-color);
  font-size: 1.3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.social-links-about a:hover {
  color: var(--accent-color);
  transform: translateY(-2px);
}

.social-links-about a i {
  /* FontAwesomeアイコンのサイズ調整 */
  font-size: 1.5rem;
}


/* プロジェクトセクション */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
  /* カード間の隙間 */
}

.project-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  border: 1px solid transparent;
  /* ホバー時の枠線用 */
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
  border-color: var(--secondary-color);
}

.project-image {
  position: relative;
  height: 220px;
  /* 画像の高さを少し増やす */
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.1);
  /* ホバー時の画像ズームを少し大きく */
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(18, 18, 28, 0.8), rgba(18, 18, 28, 0.2));
  /* 少し暗めのオーバーレイ */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition-normal);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.btn-view-app {
  padding: 0.7rem 1.5rem;
  background-color: var(--accent-color);
  color: white;
  border-radius: 30px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
  font-size: 0.9rem;
  box-shadow: 0 2px 10px rgba(255, 64, 129, 0.3);
}

.btn-view-app:hover {
  background-color: white;
  color: var(--accent-color);
  transform: scale(1.05);
}

.project-info {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.project-info h3 {
  font-family: var(--font-primary);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
  font-weight: 600;
}

.project-release-date {
  font-size: 0.8rem;
  color: var(--text-secondary-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.project-release-date i {
  color: var(--secondary-color);
}

.project-description {
  font-size: 0.9rem;
  color: var(--text-secondary-color);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.project-links {
  margin-top: auto;
  /* リンクをカード下部に固定 */
}

.project-details-link {
  font-size: 0.85rem;
  color: var(--secondary-color);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.project-details-link i {
  transition: transform 0.2s ease;
}

.project-details-link:hover {
  color: var(--accent-color);
}

.project-details-link:hover i {
  transform: translateX(3px);
}

/* Contactセクション */
.contact-section {
  background: linear-gradient(rgba(18, 18, 28, 0.8), rgba(18, 18, 28, 0.8)), center/cover no-repeat;
  /* もし背景画像がなければ上記URL部分は削除 */
  background-color: var(--card-bg);
  /* 画像がない場合のフォールバック */
}

.contact-methods {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.contact-btn {
  min-width: 220px;
}


/* フッター */
footer {
  padding: 3rem 0;
  background-color: #0f0f17;
  /* bodyより少し暗いフッター背景 */
  color: var(--text-secondary-color);
  text-align: center;
  margin-top: auto;
  /* ページコンテンツが少ない場合でもフッターを下部に固定 */
}

.footer-social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.footer-social-links a {
  color: var(--text-secondary-color);
  font-size: 1.5rem;
}

.footer-social-links a:hover {
  color: var(--primary-color);
  transform: translateY(-3px);
}

footer p {
  font-size: 0.9rem;
}

/* レスポンシブデザイン */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-image-wrapper {
    margin-bottom: 2rem;
  }

  .social-links-about {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    /* 初期状態では画面外 */
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--card-bg);
    box-shadow: var(--shadow-lg);
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 999;
    padding-top: 5rem;
    /* ヘッダーの高さ分 */
  }

  .main-nav.active {
    right: 0;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
  }

  .main-nav a {
    font-size: 1.1rem;
  }

  .mobile-menu-toggle {
    display: block;
    z-index: 1001;
    /* ナビが開いた時も見えるように */
  }

  .mobile-menu-toggle.active i::before {
    content: "\f00d";
    /* FontAwesomeの閉じるアイコン(X) */
  }

  .hero-section {
    padding: 8rem 0 4rem;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

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

  .project-grid {
    grid-template-columns: 1fr;
    /* スマホでは1カラム */
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .btn {
    width: 90%;
    max-width: 300px;
    padding: 0.9rem 1.5rem;
  }

  .contact-methods {
    flex-direction: column;
    align-items: center;
  }

  .contact-btn {
    width: 90%;
    max-width: 300px;
  }
}

/* style.css に追加 */
.contact-form-container {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  max-width: 700px;
  margin: 2rem auto 3rem auto;
  /* 上下のマージン調整 */
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-secondary-color);
}

.form-group input[type="text"],
.form-group input[type="email"],
/* 将来的に使うかも */
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background-color: var(--bg-color);
  /* 入力欄の背景 */
  color: var(--text-color);
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(138, 43, 226, 0.2);
  /* Primary colorのフォーカスリング */
}

.form-group select {
  appearance: none;
  /* デフォルトの矢印を消す場合 */
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E0E0E0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
  padding-right: 2.5rem;
  /* 矢印のスペース */
}


.contact-submit-btn {
  width: 100%;
  /* ボタン幅をフォームに合わせる */
  padding: 1rem;
  font-size: 1.1rem;
}

.contact-submit-btn:disabled {
  background: #555;
  cursor: not-allowed;
}

.form-feedback-message {
  margin-top: 1rem;
  padding: 0.8rem;
  border-radius: 4px;
  text-align: center;
  font-size: 0.9rem;
}

.form-feedback-message.success {
  background-color: rgba(0, 188, 212, 0.2);
  /* Secondary color transparent */
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}

.form-feedback-message.error {
  background-color: rgba(255, 64, 129, 0.2);
  /* Accent color transparent */
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
}

/* AOS用スタイル（CSSファイルに直接書くか、CDNのCSSに任せる） */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
}

/* --- Whack-a-Note Game Styles --- */
.wan-game-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 18, 28, 0.97);
  /* --bg-color with more opacity */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10002;
  /* Higher than cursor and header */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.wan-game-container.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
}

.wan-game-area {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
  width: 90%;
  max-width: 500px;
  color: var(--text-color);
}

.wan-header {
  margin-bottom: 1.5rem;
}

.wan-title {
  font-family: var(--font-primary);
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.wan-stats {
  display: flex;
  justify-content: space-around;
  font-size: 1.1rem;
  color: var(--text-secondary-color);
  font-weight: 500;
}

.wan-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
  user-select: none;
  /* Prevent text selection when clicking fast */
}

.wan-hole {
  width: 100%;
  padding-bottom: 100%;
  /* Aspect ratio 1:1 */
  background-color: var(--bg-color);
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--border-color);
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.wan-hole:hover {
  border-color: var(--secondary-color);
}

.wan-note {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  /* 画像に合わせて調整 (穴より少し小さめ) */
  height: 80%;
  /* 画像に合わせて調整 (穴より少し小さめ) */
  transform: translate(-50%, -50%) scale(0.5);
  /* Start small and pop up */
  background-image: url('mogura.jpg');
  /* ここを変更 */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  /* 画像が要素を完全に覆うように */
  border-radius: 50%;
  /* もしモグラ画像を円形にクリップしたい場合 */
  opacity: 0;
  transition: transform 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.1s ease-out;
  /* Pop-up effect */
}

.wan-note.active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}



.wan-controls {
  margin-top: 1.5rem;
}

.wan-btn {
  padding: 0.8rem 2rem;
  font-size: 1rem;
}

.wan-message-display {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: var(--secondary-color);
  min-height: 1.5em;
  /* Prevent layout shift */
}

.wan-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-secondary-color);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}

.wan-close-btn:hover {
  color: var(--accent-color);
}

/* Responsive Adjustments for Game */
@media (max-width: 480px) {
  .wan-game-area {
    padding: 1.5rem;
    width: 95%;
  }

  .wan-title {
    font-size: 1.6rem;
  }

  .wan-stats {
    font-size: 1rem;
  }

  .wan-board {
    gap: 0.5rem;
  }

  .wan-btn {
    width: 100%;
  }
}