/* 軽量版CSS - ストリートファイター6風デザイン */
@import url("https://fonts.googleapis.com/css2?family=Michroma&family=Zen+Old+Mincho&display=swap");

/* 基本スタイル */
body {
  font-family: "Zen Old Mincho", serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  color: #fff;
  min-height: 100vh;
}

/* ヘッダー */
.header {
  background: linear-gradient(45deg, #ff6b00 0%, #ff8f00 50%, #ff6b00 100%);
  color: #fff;
  padding: 1.5rem 0;
  text-align: center;
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.3);
  border-bottom: 3px solid #ff4500;
}

.header h1 {
  font-family: "Michroma", cursive;
  font-size: 2.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  margin: 0.5rem 0;
  font-weight: 400;
  letter-spacing: 2px;
}

/* ナビゲーション */
.nav ul {
  list-style-type: none;
  padding: 0;
  margin: 1rem 0 0 0;
}

.nav ul li {
  display: inline-block;
  margin: 0 1rem;
}

.nav ul li a {
  color: #fff;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(45deg, #333 0%, #555 50%, #333 100%);
  border-radius: 25px;
  border: 2px solid #ff6b00;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav ul li a:hover {
  background: linear-gradient(45deg, #ff6b00 0%, #ff8f00 50%, #ff6b00 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}

/* メインコンテンツ */
main {
  text-align: center;
  padding: 3rem 2rem;
  margin-bottom: 6rem;
  min-height: calc(100vh - 200px);
}

section {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.7);
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid #ff6b00;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

section h2 {
  font-family: "Michroma", cursive;
  color: #ff6b00;
  font-size: 2.2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  margin-bottom: 1.5rem;
  font-weight: 400;
  letter-spacing: 1px;
}

section h3 {
  font-family: "Michroma", cursive;
  color: #ffaa33;
  font-size: 1.5rem;
  margin: 1.5rem 0 1rem 0;
  font-weight: 400;
  letter-spacing: 1px;
}

section h4 {
  color: #ff8f00;
  font-size: 1.2rem;
  margin: 1rem 0 0.5rem 0;
}

section p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

section a {
  color: #ff6b00;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

section a:hover {
  color: #ffaa33;
  text-shadow: 0 0 5px rgba(255, 170, 51, 0.5);
}

/* 画像スタイル */
img {
  border-radius: 10px;
  border: 3px solid #ff6b00;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

img:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 25px rgba(255, 107, 0, 0.3);
}

/* フッター */
.footer {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(45deg, #111 0%, #333 50%, #111 100%);
  color: #fff;
  position: fixed;
  width: 100%;
  bottom: 0;
  border-top: 3px solid #ff6b00;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

/* モーダルスタイル（軽量版） */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  background-color: #2d2d2d;
  margin: 10% auto;
  padding: 20px;
  border: 2px solid #ff6b00;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 8px 32px rgba(255, 107, 0, 0.3);
}

.close {
  color: #ff6b00;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
}

.close:hover {
  color: #ffaa33;
}

/* フォームスタイル（軽量版） */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #ff6b00;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 2px solid #333;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #ff6b00;
  box-shadow: 0 0 10px rgba(255, 107, 0, 0.3);
}

.required {
  color: #ff4444;
}

.submit-btn {
  background: linear-gradient(45deg, #ff6b00 0%, #ff8f00 100%);
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
}

.submit-btn:hover {
  background: linear-gradient(45deg, #ff8f00 0%, #ffaa33 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}

/* 愛犬セクションのスタイル */
.dog-section {
  background: rgba(255, 107, 0, 0.1);
  padding: 20px;
  margin: 20px 0;
  border-radius: 10px;
  border: 2px solid #ff6b00;
}

.dog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin: 15px 0;
}

.dog-image {
  width: 100%;
  max-width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 3px solid #ff6b00;
}

.dog-image:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(255, 107, 0, 0.4);
}

/* 趣味カードスタイル */
.hobby-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hobby-card {
  background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
  border: 2px solid #ff6b00;
  border-radius: 15px;
  padding: 2rem;
  width: 250px;
  min-height: 200px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.hobby-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 107, 0, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.hobby-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 35px rgba(255, 107, 0, 0.4);
  border-color: #ffaa33;
}

.hobby-card:hover::before {
  left: 100%;
}

.card-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hobby-card h3 {
  font-family: "Michroma", cursive;
  color: #ff6b00;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  transition: color 0.3s ease;
}

.hobby-card:hover h3 {
  color: #ffaa33;
  text-shadow: 0 0 10px rgba(255, 170, 51, 0.5);
}

.card-description {
  color: #ccc;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.hobby-card:hover .card-description {
  opacity: 1;
  transform: translateY(0);
}

.card-link {
  display: inline-block;
  background: linear-gradient(45deg, #ff6b00, #ff8f00);
  color: white !important;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.hobby-card:hover .card-link {
  opacity: 1;
  transform: translateY(0);
}

.card-link:hover {
  background: linear-gradient(45deg, #ff8f00, #ffaa33);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

/* 自慢カウンター機能のスタイル */
.pride-item {
  margin-bottom: 3rem;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 0, 0.3);
  transition: all 0.3s ease;
}

.pride-item:hover {
  background: rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 107, 0, 0.6);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.2);
}

.pride-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1rem;
  background: linear-gradient(
    45deg,
    rgba(255, 107, 0, 0.1),
    rgba(255, 143, 0, 0.1)
  );
  border-radius: 25px;
  border: 2px solid rgba(255, 107, 0, 0.3);
}

.like-button {
  background: linear-gradient(45deg, #ff6b00, #ff8f00);
  border: none;
  border-radius: 25px;
  padding: 1rem 1.5rem;
  color: white;
  font-family: "Michroma", cursive;
  font-size: 0.9rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.like-button:hover {
  background: linear-gradient(45deg, #ff8f00, #ffaa33);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.5);
}

.like-button:active {
  transform: translateY(-1px) scale(0.98);
  animation: heartPulse 0.6s ease;
}

.like-button.liked {
  background: linear-gradient(45deg, #ff1744, #ff4569);
  animation: buttonPulse 0.8s ease;
}

.heart {
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.like-button:hover .heart {
  transform: scale(1.3);
  animation: heartBeat 1s ease infinite;
}

.count-display {
  font-family: "Michroma", cursive;
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff6b00;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  min-width: 3rem;
  text-align: center;
}

.count-label {
  color: #ccc;
  font-size: 0.9rem;
}

/* アニメーション */
@keyframes heartPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes buttonPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes heartBeat {
  0%,
  100% {
    transform: scale(1.3);
  }
  50% {
    transform: scale(1.5);
  }
}

@keyframes countUp {
  0% {
    transform: scale(1);
    color: #ff6b00;
  }
  50% {
    transform: scale(1.3);
    color: #ffaa33;
  }
  100% {
    transform: scale(1);
    color: #ff6b00;
  }
}

/* 数字カウントアップのアニメーション */
.count-animate {
  animation: countUp 0.6s ease;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
  .header h1 {
    font-size: 1.8rem;
  }

  .nav ul li {
    display: block;
    margin: 0.5rem 0;
  }

  .nav ul li a {
    display: block;
    margin: 0 1rem;
  }

  main {
    padding: 2rem 1rem;
  }

  section {
    padding: 1.5rem;
  }

  #qrCode {
    max-width: 120px !important;
  }

  .hobby-cards {
    flex-direction: column;
    align-items: center;
  }

  .hobby-card {
    width: 90%;
    max-width: 300px;
  }

  .pride-counter {
    flex-direction: column;
    gap: 0.5rem;
  }

  .like-button {
    font-size: 0.8rem;
    padding: 0.8rem 1.2rem;
  }

  .count-display {
    font-size: 1.2rem;
  }
}

/* 軽量化：アニメーション最小限 */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.nav ul {
  list-style-type: none;
  padding: 0;
  margin: 1rem 0 0 0;
}

.nav ul li {
  display: inline-block;
  margin: 0 1rem;
}

.nav ul li a {
  color: #fff;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(45deg, #333 0%, #555 50%, #333 100%);
  border-radius: 25px;
  border: 2px solid #ff6b00;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav ul li a:hover {
  background: linear-gradient(45deg, #ff6b00 0%, #ff8f00 50%, #ff6b00 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}

main {
  text-align: center;
  padding: 3rem 2rem;
  margin-bottom: 6rem;
  min-height: calc(100vh - 200px);
}

section {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.7) !important;
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid #ff6b00;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

section h2 {
  font-family: "Michroma", cursive;
  color: #ff6b00;
  font-size: 2.2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  margin-bottom: 1.5rem;
  font-weight: 400;
  letter-spacing: 1px;
}

section h3 {
  font-family: "Michroma", cursive;
  color: #ffaa33;
  font-size: 1.5rem;
  margin: 1.5rem 0 1rem 0;
  font-weight: 400;
  letter-spacing: 1px;
}

section h4 {
  color: #ff8f00;
  font-size: 1.2rem;
  margin: 1rem 0 0.5rem 0;
}

section p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

section a {
  color: #ff6b00;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

section a:hover {
  color: #ffaa33;
  text-shadow: 0 0 5px rgba(255, 170, 51, 0.5);
}

/* 画像スタイル */
img {
  border-radius: 10px;
  border: 3px solid #ff6b00;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

img:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 25px rgba(255, 107, 0, 0.3);
}

.footer {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(45deg, #111 0%, #333 50%, #111 100%);
  color: #fff;
  position: fixed;
  width: 100%;
  bottom: 0;
  border-top: 3px solid #ff6b00;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

/* 背景動画スタイル */
#backgroundVideo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.2;
  filter: blur(1px);
}

/* モーダルスタイル */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  animation: fadeIn 0.3s;
}

.modal-content {
  background-color: #2d2d2d;
  margin: 5% auto;
  padding: 20px;
  border: 2px solid #ff6b00;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 8px 32px rgba(255, 107, 0, 0.3);
  animation: slideIn 0.3s;
}

.close {
  color: #ff6b00;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
}

.close:hover,
.close:focus {
  color: #ff8f00;
  text-decoration: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* お問い合わせフォームスタイル */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #ff6b00;
  font-weight: bold;
  font-size: 1rem;
}

.required {
  color: #ff4444;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #ff6b00;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
  font-family: "Zen Old Mincho", serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff8f00;
  box-shadow: 0 0 10px rgba(255, 143, 0, 0.3);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: linear-gradient(45deg, #ff6b00 0%, #ff8f00 50%, #ff6b00 100%);
  color: #fff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
  font-family: "Zen Old Mincho", serif;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.success-message {
  background: rgba(0, 255, 0, 0.1);
  border: 2px solid #00ff00;
  border-radius: 10px;
  padding: 1.5rem;
  margin-top: 2rem;
  text-align: center;
}

.success-message h3 {
  color: #00ff00;
  margin-bottom: 0.5rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .header {
    padding: 1rem 0;
  }

  .header h1 {
    font-size: 1.8rem;
  }

  .nav ul li {
    display: block;
    margin: 0.5rem 0;
  }

  .nav ul li a {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  main {
    padding: 2rem 1rem;
    margin-bottom: 4rem;
  }

  section {
    padding: 1.5rem;
    margin: 1rem 0;
  }

  section h2 {
    font-size: 1.6rem;
  }

  section h3 {
    font-size: 1.3rem;
  }

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

  .footer {
    position: relative;
    margin-top: 2rem;
  }

  .hobby-cards {
    flex-direction: column;
    align-items: center;
  }

  .hobby-card {
    width: 90%;
    max-width: 300px;
  }

  .pride-counter {
    flex-direction: column;
    gap: 0.5rem;
  }

  .like-button {
    font-size: 0.8rem;
    padding: 0.8rem 1.2rem;
  }

  .count-display {
    font-size: 1.2rem;
  }
}

/* レスポンシブ対応の強化 */
@media (max-width: 480px) {
  .contact-form {
    padding: 0 1rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.6rem;
    font-size: 0.9rem;
  }

  .submit-btn {
    width: 100%;
    padding: 0.8rem 1rem;
  }

  .streamers-grid {
    grid-template-columns: 1fr !important;
  }

  .viewing-style {
    grid-template-columns: 1fr !important;
  }
}

/* ストリーマーページスタイル */
.streamers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.streamer-card {
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid #ff6b00;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.streamer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 107, 0, 0.3);
}

.streamer-image {
  position: relative;
  overflow: hidden;
}

.streamer-image img {
  border: none;
  border-radius: 0;
  transition: transform 0.3s ease;
}

.streamer-card:hover .streamer-image img {
  transform: scale(1.05);
}

.streamer-info {
  padding: 1.5rem;
  text-align: left;
}

.streamer-info h3 {
  color: #ff6b00;
  font-family: "Michroma", cursive;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.streamer-platform {
  color: #ffaa33;
  font-weight: bold;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.streamer-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #ddd;
}

.streamer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.channel-link {
  background: linear-gradient(45deg, #ff6b00 0%, #ff8f00 50%, #ff6b00 100%);
  color: #fff !important;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(255, 107, 0, 0.3);
}

.channel-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.5);
  text-shadow: none;
}

.channel-link.disabled {
  background: #666;
  cursor: not-allowed;
  opacity: 0.6;
}

.channel-link.disabled:hover {
  transform: none;
  box-shadow: 0 2px 10px rgba(102, 102, 102, 0.3);
}

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

.style-item {
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid #ff6b00;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: left;
}

.style-item h4 {
  color: #ff6b00;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.style-item p {
  color: #ddd;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}
