  /* RESET & BASE */
  * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }

  ::selection {
    background-color: #d946f0;
    color: white;
  }

  body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: #0f172a; /* Deep dark base */
    color: #ffffff;
    overflow-x: hidden;
  }

  /* MAIN CONTAINER */
  .coming-container {
    width: 100%;
    min-height: 100vh;
    /* More elegant, softer gradient */
    background: radial-gradient(circle at 0% 0%, #4c1d95 0%, #1e1b4b 50%, #0f172a 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 24px;
  }

  /* SOCIAL ICONS */
  .social-icons {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    gap: 12px;
    z-index: 100;
  }

  .social-icons a {
    font-size: 1.1rem;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
  }

  .social-icons a:hover {
    transform: translateY(-5px);
    background: #d946f0;
    box-shadow: 0 10px 20px rgba(217, 70, 240, 0.3);
  }

  /* CONTENT BOX */
  .content-box {
    position: relative;
    text-align: center;
    max-width: 600px;
    padding: 60px 40px;
    border-radius: 32px;
    /* High-end Glassmorphism */
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    z-index: 10;
    animation: float 6s ease-in-out infinite;
  }

  .logo {
    width: 170px;
    height: 170px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(217, 70, 240, 0.5);
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(217, 70, 240, 0.2);
  }

  .title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    background: linear-gradient(to right, #fff, #d946f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
  }

  .subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-weight: 300;
  }

  /* SIDE IMAGE - Optimized for large screens only */
  .side-image {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 85%;
    object-fit: contain;
    z-index: 1;
    pointer-events: none;
    filter: drop-shadow(0 0 30px rgba(0,0,0,0.5));
    mask-image: linear-gradient(to top, black 80%, transparent 100%);
  }

  /* ANIMATIONS */
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
  }

  /* RESPONSIVE DESIGN */
  @media (max-width: 1100px) {
    .side-image {
      height: 60%;
      opacity: 0.15;
      right: -5%;
    }
  }

  @media (max-width: 768px) {
    .coming-container {
      padding: 20px;
    }
    
    .content-box {
      padding: 40px 24px;
      width: 100%;
      position: absolute;
      background: #4d1d9558;
    }

    .side-image {
      /* display: none; */
      z-index: 999;
    }

    .social-icons {
      top: 20px;
      right: 50%;
      transform: translateX(50%); /* Center icons on mobile */
    }
  }