* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', system-ui, sans-serif;
}

body {
  background: #050505;
  color: #ffffff;
  overflow-x: hidden;
}

.coming-soon {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}


.bg-animated {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, #1a1a1a, transparent 40%),
    radial-gradient(circle at 80% 80%, #0f0f0f, transparent 40%),
    linear-gradient(180deg, #000, #080808);
  animation: bgMove 14s ease-in-out infinite alternate;
  z-index: 1;
}

@keyframes bgMove {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}


.content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  padding: 60px 20px;
  animation: fadeUp 1.4s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}


.logo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}

.logo {
  width: 120px;
  position: relative;
  z-index: 2;
}

.logo-glow {
  position: absolute;
  inset: -25px;
  background: radial-gradient(circle, rgba(255,255,255,0.25), transparent 70%);
  filter: blur(30px);
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0% { opacity: 0.4; }
  50% { opacity: 0.9; }
  100% { opacity: 0.4; }
}


.title {
  font-size: 60px;
  letter-spacing: 3px;
  font-weight: 600;
  background: linear-gradient(90deg, #ffffff, #cfcfcf, #ffffff);
  background-size: 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s infinite;
}

@keyframes shimmer {
  from { background-position: 0%; }
  to { background-position: 200%; }
}

.subtitle {
  margin-top: 12px;
  font-size: 18px;
  letter-spacing: 5px;
  color: #cfcfcf;
  text-transform: uppercase;
}


.description {
  max-width: 650px;
  margin: 30px auto;
  font-size: 17px;
  line-height: 1.8;
  color: #bdbdbd;
}


.highlight {
  display: inline-block;
  margin-bottom: 35px;
  padding-bottom: 6px;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
  cursor: default;
}

.highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: #ffffff;
  transition: width 0.5s ease;
}

.highlight:hover::after {
  width: 100%;
}


.notify-btn {
  display: inline-block;
  padding: 14px 38px;
  border-radius: 40px;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 60px;
  transition: all 0.4s ease;
}

.notify-btn:hover {
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 30px rgba(255,255,255,0.15);
  transform: translateY(-3px);
}


.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.img-card {
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.img-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.6s ease;
}


.img-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.img-card:hover img {
  transform: scale(1.15);
}


@media (max-width: 900px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .title {
    font-size: 44px;
  }
}

@media (max-width: 480px) {
  .gallery {
    grid-template-columns: 1fr;
  }
  .logo {
    width: 90px;
  }
}
