body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  section {
    height: 100vh;
    background-image: linear-gradient(to right, #0f0f0f, #ffffff);
    color: #e4e4e4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
  
  .buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  
  #btn1, #btn2 {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    user-select: none;
    transition: transform 0.2s ease, background-color 0.3s ease;
  }
  
  #btn1 {
    background-color: #28a745;
  }
  #btn1:hover {
    background-color: #218838;
    transform: scale(1.05);
  }
  
  #btn2 {
    background-color: #dc3545;
  }
  #btn2:hover {
    background-color: #c82333;
    transform: scale(1.05);
  }
  
  #copySection p {
    text-align: center;
    font-size: 18px;
    color: #e4e4e4;
  }
  
  #box {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px 30px;
    backdrop-filter: blur(12px);
    border-left: 4px solid #888;
    cursor: pointer;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.3s ease;
  }
  #box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  }
  