    *{margin:0;padding:0;box-sizing:border-box;}
    body{font-family:'Segoe UI',Tahoma,sans-serif;background:#1a0000;color:#fff;}
    a{text-decoration:none;color:#fff;}
 /* ให้แทบด้านบนเป็น gradient แดงเฟดไปแดงเข้ม */
/* Gradient แทบด้านบน: แดงสด → แดงเข้ม */
.gradient-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, #ff0000, #8b0000);
  padding: 1rem;
  position: relative;
  z-index: 1000;
}

/* โลโก้ */
.gradient-header .logo {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
}

/* Hamburger Button (3 แถบสีเหลืองเรืองแสง) */
.menu-btn {
  cursor: pointer;
  width: 30px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.menu-btn span {
  display: block;
  width: 100%;
  height: 4px;
  background: #ffff00;
  box-shadow:
    0 0 4px #ffff00,
    0 0 8px rgba(255, 255, 0, 0.6),
    0 0 12px rgba(255, 255, 0, 0.4);
  border-radius: 2px;
}

/* Nav Menu เริ่มต้นซ่อน */
.nav-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #990000;
  text-align: center;
  z-index: 999;
  margin: 0;
  padding: 0;
}

/* เมื่อเปิดเมนู ให้แสดง */
.nav-menu.open {
  display: flex;
}

/* รายการเมนู */
.nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  padding: 0;
  border-bottom: 1px solid #770000;
  background: linear-gradient(to right, #8b0000, #ff0000);
}

.nav-menu li:last-child {
  border-bottom: none;
}

.nav-menu a {
  display: block;             /* ให้ลิงก์ครอบเต็ม li */
  padding: 0.75rem 1rem;      /* เว้นขอบในลิงก์ */
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
  background: #FF0000;  /* เปลี่ยนพื้นหลังทั้งแถบ */
  color: #fff;          /* ตัวอักษรขาว */
}


    .header-caption{text-align:center;margin:1rem 0;font-size:1rem;white-space:pre-line;}
    .logo-img{display:block;width:150px;margin:0 auto 1rem;}
.contentH1 {
  max-width: 800px;
  margin: 0.5rem auto 0  auto; /* ด้านล่างเป็น 0 */
  padding: 0.5rem 1rem 0 1rem; /* padding ล่างเป็น 0 */
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}
    .container{max-width:800px;margin:2rem auto;padding:1rem;background:rgba(255,255,255,0.05);border-radius:8px;padding-bottom:6rem;}
    h1,h2,h3,h4,h5,h6{margin-bottom:0.5rem;animation:glow 2s infinite alternate;text-align:left;}
    p{margin-bottom:1.5rem;line-height:1.6;text-align:left;}
    @keyframes glow{from{text-shadow:0 0 5px #ff6666;}to{text-shadow:0 0 20px #ff0000;}}
    .section-img{width:100%;height:auto;margin:1rem 0;border-radius:8px;box-shadow:0 0 10px rgba(255,0,0,0.5);display:block;}
    .play-btn{display:inline-block;padding:.8rem 1.5rem;background: linear-gradient(to right, #8b0000, #ff0000);border:none;border-radius:4px;color:#fff;font-weight:bold;font-size:1rem;cursor:pointer;animation:pulse 1.5s infinite;}
    @keyframes pulse{0%{transform:scale(1);}50%{transform:scale(1.05);}100%{transform:scale(1);}}
    .bottom-nav{position:fixed;bottom:0;left:0;width:100%;background: linear-gradient(to top, #ff0000, #8b0000);display:flex;justify-content:space-around;padding:.8rem 0;}
    .bottom-nav a{flex:1;text-align:center;display:flex;flex-direction:column;align-items:center;font-size:.75rem;color:#fff;font-weight:bold;}
    .bottom-nav img{width:24px;height:24px;margin-bottom:4px;}
	.contact-box {
    width: 100%;
    max-width: 500px;         /* กรอบกว้างขึ้น */
    margin: 2rem auto;
    padding: 1rem 1.5rem;
    background: linear-gradient(to bottom, #ff4d4d, #8b0000);
    color: #fff;
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.2;         /* บรรทัดชิดกัน */
    text-align: center;
    border-radius: 8px;
    border: 2px solid transparent;
    box-shadow:
      0 0 8px #ffd700,
      0 0 16px rgba(255, 215, 0, 0.6),
      inset 0 0 4px #ffd700;
  }
  .contact-methods {
    margin: 0.5rem 0;          /* เว้นช่วงบรรทัดนิดหน่อย */
  }
  .contact-methods a {
    color: #ffff00;
    text-decoration: none;
    display: inline;           /* ให้อยู่บรรทัดเดียวกัน */
    margin: 0 0.25rem;
  }
