/* Reset default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Set the body to occupy full height and remove scroll */
  body, html {
    height: 100%;
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
    color: #fff;
  }
  
  /* Background layers */
  .background {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
  }
  
  .layer {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: linear-gradient(135deg, #ff7e5f, #feb47b, #86a8e7, #7f7fd5, #91eae4, #86a8e7, #ff7e5f);
    opacity: 0.6;
    animation: move 20s linear infinite;
    border-radius: 43% 57% 51% 49% / 61% 43% 57% 39%;
    filter: blur(100px);
  }
  
  .layer1 {
    animation-duration: 30s;
    opacity: 0.7;
  }
  
  .layer2 {
    animation-duration: 45s;
    opacity: 0.5;
  }
  
  .layer3 {
    animation-duration: 60s;
    opacity: 0.4;
  }
  
  /* Moving animation */
  @keyframes move {
    0% {
      transform: translate(0, 0) rotate(0deg);
    }
    50% {
      transform: translate(-25%, -25%) rotate(180deg);
    }
    100% {
      transform: translate(0, 0) rotate(360deg);
    }
  }
  
  /* Central Content */
  .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 20px;
    max-width: 90%;
  }
  
  .content h1 {
    font-size: 4em;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ff7e5f, #feb47b, #86a8e7, #7f7fd5, #91eae4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .content p {
    font-size: 1.5em;
    margin-bottom: 40px;
    background: linear-gradient(90deg, #86a8e7, #7f7fd5, #91eae4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  /* Stylish Textbox */
  .textbox {
    background: rgba(0, 0, 0, 0.6); /* Black with opacity */
    padding: 20px 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 60px rgba(0, 0, 0, 0.4);
    margin-bottom: 40px;
    border: 2px solid rgba(255, 255, 255, 0.2);
  }
  
  /* Text within Textbox */
  .textbox h2 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #fff;
  }
  
  .textbox p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #ddd;
  }
  
  /* Button Row */
  .button-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  
  /* Buttons */
  .btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    font-size: 1em;
    text-decoration: none;
    color: #fff;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  }

  .btn svg {
    width: 1.2em;
    height: 1.2em;
  }
  
  /* Button Hover Effect */
  .btn:hover {
    transform: translateY(-3px);
  }
  
  /* Social Buttons (Black and White) */
  .social-btn {
    background: rgba(255, 255, 255, 0.1); /* White with opacity */
    color: #fff;
  }
  
  .social-btn i {
    font-size: 1.2em;
  }
  
  /* Primary Button (Black and White) */
  .primary-btn {
    background: rgba(0, 0, 0, 0.8); /* Black with opacity */
  }
  
  .primary-btn:hover {
    background: rgba(255, 255, 255, 0.2); /* Lighten on hover */
    color: #000;
  }
  
  /* Hover Effects for Social Buttons */
  .social-btn:hover {
    background: rgba(255, 255, 255, 0.2);
  }
  
  /* Glowing Edges */
  .glow {
    position: fixed;
    width: 110%;
    height: 110%;
    top: -5%;
    left: -5%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(34,34,34,0.8) 100%);
    pointer-events: none;
    z-index: -2;
    mix-blend-mode: screen;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .content h1 {
      font-size: 3em;
    }
    
    .content p {
      font-size: 1.2em;
    }
    
    .textbox {
      padding: 15px 20px;
    }
    
    .textbox h2 {
      font-size: 1.5em;
    }
    
    .textbox p {
      font-size: 1em;
    }
    
    .btn {
      padding: 8px 16px;
      font-size: 0.9em;
    }
  }
  
  @media (max-width: 480px) {
    .content h1 {
      font-size: 2.5em;
    }
    
    .content p {
      font-size: 1em;
    }
    
    .textbox h2 {
      font-size: 1.2em;
    }
    
    .textbox p {
      font-size: 0.9em;
    }
    
    .btn {
      padding: 6px 12px;
      font-size: 0.8em;
    }
  }
  