#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px;
  z-index: 9999;
  transition: 0.4s;
}

.cookie-hidden {
  transform: translateY(120%);
  opacity: 0;
}

.cookie-box {
  background: rgba(20,20,20,0.95);
  color: white;
  padding: 16px 24px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  display: flex;
  gap: 20px;
  align-items: center;
  font-family: Arial, sans-serif;
}

.cookie-box button {
  background: #4CAF50;
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  font-weight: bold;
}

body {
  margin:0;
  font-family: Arial, sans-serif;
  background:#f0f2f5;
  color:#333;
}

header {
  background: linear-gradient(90deg, #06b6d4,#9333ea);
  color:white;
  padding:15px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

header input {
  padding:5px 10px;
  border-radius:5px;
  border:none;
}

.gallery {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
  gap:20px;
  padding:20px;
}

.image-box {
  position:relative;
  background:white;
  border-radius:10px;
  padding:10px;
  box-shadow:0 0 10px rgba(0,0,0,0.1);
}

.image-box img {
  width:100%;
  border-radius:10px;
}

.button {
  cursor:pointer;
  background:#9333ea;
  color:white;
  border:none;
  padding:5px 10px;
  border-radius:5px;
}

.like-btn {
  background:none;
  border:none;
  cursor:pointer;
  color:#e0245e;
  font-size:16px;
}