html {
  height: 100%;
  width: 100%;
}

body {
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url('attached_assets/Duvar kağıdı Uzay (evren), Ay, Uzay, Ateş (1)_1752308973400.jpg') center/cover no-repeat;
  background-attachment: fixed;
}

.profile-container {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.profile-image {
  width: 100vw;
  height: 100vh;
  border-radius: 0;
  box-shadow: none;
  opacity: 0.6;
  transition: all 0.3s ease;
  object-fit: cover;
  object-position: center 20%;
  filter: contrast(1.1) brightness(1.05);
}

.profile-image:hover {
  opacity: 0.9;
  transform: scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.coming-soon {
  font-family: 'Arial', sans-serif;
  font-size: 4rem;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  text-align: center;
  margin: 0;
  padding: 20px;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 165, 0, 0.5);
  }
  to {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 165, 0, 0.8), 0 0 40px rgba(255, 165, 0, 0.6);
  }
}