/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Global */
  body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #000;
    color: #fff;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* Header */
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #141414;
  }
  
  .logo {
    font-size: 24px;
    font-weight: bold;
    color: #e50914;
  }
  
  .nav a {
    margin-left: 20px;
    font-size: 16px;
    transition: color 0.3s;
  }
  
  .nav a:hover {
    color: #e50914;
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90vh;
    background: url('images/new/bg2.png') center center/cover no-repeat;
    position: relative;;
  }
  
  .hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* <<<<< ความมืด ปรับค่าความเข้มตรงนี้ได้ */
    z-index: 1;
  }
  .hero > * {
    position: relative;
    z-index: 2;
  }
  
  .hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
  }
  
  .hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
  }
  
  .hero-content p {
    font-size: 24px;
    margin-bottom: 30px;
  }
  
  .btn {
    padding: 10px 30px;
    font-size: 18px;
    background: #e50914;
    border: none;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .btn:hover {
    background: #f40612;
  }
  
  /* Footer */
  .footer {
    padding: 20px;
    text-align: center;
    background: #141414;
    font-size: 14px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .hero-content h1 {
      font-size: 32px;
    }
    .hero-content p {
      font-size: 18px;
    }
    .nav {
      display: none;
    }
  }
  

  
  
  .hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .hero h2 {
    font-size: 3rem;
    color: red;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .hero .cancel-text {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .hero .sub-text {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }
  
  .hero button {
    background-color: red;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .hero button:hover {
    background-color: darkred;
  }
  