/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background: #87ceeb; /* Fallback color for body */
    color: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 0;
  }
  
  .container {
    position: relative;
    width: 100%;
    height: 100vh; /* Take full height of the screen */
  }
  
  .image-area {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .main-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the entire viewport */
  }
  
  /* Positioning the 4 options in the corners */
  .options {
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: 20px;
    left: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .link {
    padding: 15px 25px;
    text-decoration: none;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.7); /* Dark background for text contrast */
    border-radius: 10px;
    font-weight: bold;
    font-size: 1rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
    margin-bottom: 10px;
  }
  
  .link:hover {
    transform: scale(1.1);
  }
  
  .buy-now {
    background-color: #ff4500;
    position: absolute;
    top: 20px;
    left: 20px;
  }
  
  .telegram {
    background-color: #0088cc;
    position: absolute;
    top: 20px;
    right: 20px;
  }
  
  .twitter {
    background-color: #1da1f2;
    position: absolute;
    bottom: 20px;
    left: 20px;
  }
  
  .token-address {
    background-color: #ff4500;
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 0.9rem;
    text-align: center;
  }
  
  /* Responsive Design */
  @media screen and (max-width: 768px) {
    .link {
      padding: 12px 20px;
      font-size: 1.1rem;
    }
  
    /* Adjust positioning for smaller screens */
    .buy-now, .telegram, .twitter, .token-address {
      font-size: 0.9rem;
      padding: 10px 15px;
    }
  }
  