:root {
  --pink: #FFCCE5;
  --purple: #CC99FF;
  --dark-blue: #1a1a2e;
  --glass: rgba(255, 255, 255, 0.1);
}

body {
  background: radial-gradient(circle at top, #2b2b4d, #1a1a2e);
  color: white;
  font-family: 'Segoe UI', Roboto, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 20px;
  margin: 0;
}

h1 {
  font-size: 2.5rem;
  letter-spacing: -1px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.card {
  background: var(--glass);
  backdrop-filter: blur(10px); 
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  margin-bottom: 30px;
  transition: transform 0.3s ease;
  text-align: center;
}

.card:hover {
  transform: translateY(-10px); 
  border-color: var(--purple);
}

.card-title { color: var(--purple); }
.card-message { font-size: 24px; font-weight: bold; color: #ff69b4; }
.card-small { padding: 10px; margin-top: 10px; }

.image-container {
  margin-top: 40px;
  text-align: center;
}

.profile-img {
  width: 150px;
  height: 150px;
  border-radius: 50%; 
  border: 3px solid white;
  object-fit: cover;
  margin: 10px;
  box-shadow: 0 0 15px var(--pink);
  transition: 0.5s;
}

.profile-img:hover { transform: rotate(5deg) scale(1.1); }

.img {
  transition: 0.5s;
  margin: 10px;
  cursor: pointer;
}

.mid-size {
  width: 200px; 
  height: 200px;
  object-fit: cover;
  border-radius: 0;
}

.last-img {
  width: 500px;
  height: 500px;
  border-radius: 50%; 
  border: 3px solid white;
  object-fit: cover;
  margin: 10px;
  box-shadow: 0 0 15px var(--pink);
  transition: 0.5s;
}

.img:hover { transform: scale(1.1); }

.separator { border: 0; border-top: 1px solid #eee; margin: 20px 0; }

button {
  background: linear-gradient(45deg, var(--pink), var(--purple));
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  color: #1a1a2e;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
}

button:active { transform: scale(0.95); }

input {
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  padding: 10px 15px;
  border-radius: 10px;
  width: 90%;
  margin-top: 20px;
  outline: none;
}
input:focus { border-color: var(--pink); }




