  /* 🌐 IP Address Display Box */
  .ip-container {
    max-width: 420px;
    margin: 40px auto;
    padding: 25px 30px;
    background: linear-gradient(145deg, #ffffff, #f2f2f2);
    border-radius: 16px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    font-family: "Segoe UI", Arial, sans-serif;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .ip-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  }

  .ip-container h4 {
    color: #0056d6;
    font-size: 22px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
  }

  .ip-container p {
    font-size: 30px;
    font-weight: bold;
    background: linear-gradient(90deg, #ff2b2b, #b51200);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    animation: glow 1.5s ease-in-out infinite alternate;
  }

  @keyframes glow {
    from { text-shadow: 0 0 5px rgba(255, 50, 50, 0.4); }
    to { text-shadow: 0 0 20px rgba(255, 0, 0, 0.8); }
  }

  /* 📱 Responsive for small devices */
  @media (max-width: 480px) {
    .ip-container {
      padding: 20px;
      margin: 20px 15px;
    }
    .ip-container h4 { font-size: 18px; }
    .ip-container p { font-size: 24px; }
  }
