
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  background: rgba(0,0,0,1) ; 
  color: #fff;
  position: relative;
  height: 100vh;
}

#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}


header {
  text-align: center;
  padding: 4rem 2rem 2rem;
 background: rgba(0,0,0,0.8)}

h1 {
  font-size: 3rem;
  margin: 0.5rem 0;
  color: #ff79c6;
}

p {
  font-size: 1.2rem;
  color: #ccc;
}

main {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 2rem;
  background: rgba(20, 0, 40, 0.8);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

section {
  margin-bottom: 2.5rem;
}

h2 {
  color: #ff79c6;
  border-bottom: 2px solid #bd93f9;
  padding-bottom: 0.3rem;
  margin-bottom: 1rem;
}

ul {
  list-style: none;
  padding: 0;
}

ul li::before {
  content: "• ";
  color: #ff79c6;
  font-weight: bold;
}

pre {
  background: rgba(255,255,255,0.05);
  padding: 1rem;
  border-radius: 10px;
  overflow-x: auto;
}
#keyInput,
#valueInput {
  margin: 0.3rem;
  padding: 0.6rem 1.2rem;
  background: #bd93f9; 
  color: #000; 
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  transition: 0.3s;
  outline: none;
}

#keyInput::placeholder,
#valueInput::placeholder {
  color: #fff; /
}

#keyInput:hover,
#valueInput:hover,
#keyInput:focus,
#valueInput:focus {
  background: #ff79c6;
  color: #000; 
  box-shadow: 0 0 10px #ff79c6; 
}


button {
  margin: 0.3rem;
  padding: 0.6rem 1.2rem;
  background: #bd93f9;
  color: #0a0a0a;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

button:hover {
  background: #ff79c6;
}

#output {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  min-height: 2rem;
  white-space: pre-wrap;
}

.cdn-copy {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.05);
  padding: 0.5rem;
  border-radius: 8px;
}

.cdn-copy input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  font-family: 'Courier New', monospace;
  margin-right: 0.5rem;
}

.cdn-copy button {
  padding: 0.3rem 0.8rem;
}