* {
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
  }
  
  body {
    margin: 0;
    background: radial-gradient(circle at top, #2b1d14, #0b0f1a);
    color: #f5e6d3;
  }
  
  .stars {
    position: fixed;
    inset: 0;
    background: url('https://www.transparenttextures.com/patterns/stardust.png');
    opacity: 0.15;
    z-index: -1;
  }
  
  .hero {
    text-align: center;
    padding: 80px 20px 60px;
    background: linear-gradient(to bottom, rgba(60,35,20,0.9), rgba(10,10,20,0.9));
  }
  
  .subtitle {
    color: #f2c89b;
    font-size: 18px;
  }
  
  .back-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #f2c89b;
    text-decoration: none;
  }
  
  .content {
    padding: 50px 20px;
    max-width: 900px;
    margin: auto;
  }
  
  .intro {
    text-align: center;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 50px;
  }
  
  .highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
  }
  
  .highlight {
    background: rgba(60,35,20,0.7);
    padding: 30px;
    border-radius: 25px;
    text-align: center;
    border: 1px solid rgba(255,200,150,0.3);
  }
  
  .highlight h3 {
    color: #ffcc99;
    margin-bottom: 10px;
  }
  
  .cta {
    text-align: center;
  }
  
  .menu-btn {
    padding: 16px 40px;
    border-radius: 40px;
    background: #f2c89b;
    color: #2b1d14;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
  }
  
  .menu-btn:hover {
    box-shadow: 0 0 25px rgba(242,200,155,0.7);
  }
  