/* iOS-style Liquid Glass Effect Design */

body {
    font-family: 'Poppins', sans-serif;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #89f7fe, #66a6ff);
    margin: 0;
    transition: background-color 0.5s ease;
    flex-direction: column;
    gap:5%;
  }
  
  /* Frosted glass card */
  .glass-card {
  /* Existing styles */
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 40px 30px rgba(31, 38, 135, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 40px 50px;
  text-align: center;
  color: #fff;
  width: 340px;
  
  /* Apply backdrop-filter for blur and the SVG distortion */
  backdrop-filter: url(#liquid-distortion) blur(8px) saturate(180%);
  -webkit-backdrop-filter: url(#liquid-distortion) blur(8px) saturate(180%);
  isolation: isolate;
  transition: none;
}
  

  
  /* Title */
  h1 {
    font-size: 22px;
    margin-bottom: 25px;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  }
  
  /* Button styling */
  button {
    background: rgba(255, 255, 255, 0.25);
    border: none;
    color: #fff;
    padding: 12px 28px;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
  }
  
  button:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.05);
  }
  
  /* Color code text */
  #colorCode {
    margin-top: 18px;
    font-size: 17px;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  }
  
  .back-btn {
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    background: #00d4ff;
    color: #111;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .back-btn:hover {
    background: #0ef;
  }
