* {
      box-sizing: border-box;
    }

    .container { 
      margin: 10%;    
      font-family: "Poppins", sans-serif;
      background: rgba(255, 255, 255, 0.95);
      justify-content: center;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      width: 100%;
      max-width: 380px;
      padding: 30px;
      text-align: center;
      transition: all 0.3s ease;
    }

    .container:hover {
      transform: translateY(-5px);
    }

    h2 {
      color: #185a9d;
      margin-bottom: 20px;
    }

    input {
      width: 100%;
      padding: 12px;
      border-radius: 10px;
      border: 2px solid #43cea2;
      outline: none;
      font-size: 16px;
      margin-bottom: 15px;
    }

    button {
      width: 100%;
      background: linear-gradient(135deg, #43cea2, #185a9d);
      color: white;
      font-size: 16px;
      border: none;
      border-radius: 10px;
      padding: 12px;
      cursor: pointer;
      transition: 0.3s;
    }

    button:hover {
      opacity: 0.9;
    }

    #weatherResult {
      margin-top: 25px;
      background: #f5fbff;
      border-radius: 15px;
      padding: 20px;
      font-size: 16px;
      color: #333;
    }

    .icon {
      width: 100px;
      height: 100px;
    }

    h3 {
      color: #185a9d;
      margin-bottom: 10px;
    }

    p {
      margin: 5px 0;
    }

    @media (max-width: 480px) {
      .container {
        padding: 20px;
        max-width: 320px;
      }
      h2 {
        font-size: 20px;
      }
      input, button {
        font-size: 14px;
      }
    }

    .custom-link {
    margin-left: 10%;
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(38, 50, 56, 0.3);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    font-family: Arial, sans-serif;
  }

  .custom-link:hover {
    background: linear-gradient(45deg, #2575fc, #6a11cb);
    box-shadow: 0 6px 20px rgba(38, 50, 56, 0.5);
    text-decoration: none;
  }