/* GLOBAL RESET & BASE */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html, body {
    width: 100%;
    overflow-x: hidden;
  }
  
  body {
    background: linear-gradient(to bottom right, royalblue, gold);
    font-family: 'Orbitron', sans-serif;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding: 0 10px;
  }
  
  /* TITLE */
  .main-title {
    margin-top: 20px;
    padding: 15px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 500px;
  }
  
  .main-title h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
  }
  
  .sub-heading {
    margin-top: 10px;
  }
  
  .sub-heading h2 {
    font-size: 1.2rem;
    margin: 5px 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  }
  
  .sub-heading p {
    font-size: 0.95rem;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  }
  
  /* IMAGE */
  .main-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    margin: 20px auto;
    display: block;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
  }
  
  .main-image img:hover {
    transform: scale(1.02);
  }
  
  /* BUTTON CONTAINER */
  .glass-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    margin: 15px auto 40px;
  }
  
  /* BUTTON STYLE */
  .button {
    display: inline-block;
    padding: 14px 24px;
    font-size: 1.1rem;
    background-color: rgba(255, 215, 0, 0.9);
    color: #000;
    text-decoration: none;
    border-radius: 10px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    width: 100%;
    max-width: 300px;
  }
  
  .button:hover {
    background-color: #ffd700;
    transform: scale(1.03);
  }
  
  /* DESKTOP TWEAKS */
  @media (min-width: 768px) {
    .main-title h1 {
      font-size: 3.5rem;
    }
  
    .sub-heading h2 {
      font-size: 1.5rem;
    }
  
    .sub-heading p {
      font-size: 1.1rem;
    }
  
    .main-image img {
      max-width: 800px;
    }
  }
  