/* =========================================================
   🔥 FURY RAMEN — CSS v2.0
   Fire Logo + Responsive + Hover Motion
   ========================================================= */

/* Font ---------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

/* Base ---------------------------------------------------*/
body {
  margin: 0;
  height: 100vh;
  background: #0d0d0d;
  color: #f5f5f5;
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Container ----------------------------------------------*/
.container {
  text-align: center;
  max-width: 480px;
  padding: 20px;
}

/* =========================================================
   🔥 LOGO WRAPPER — Fire Animation
   ========================================================= */
.logo-wrapper {
  position: relative;
  display: inline-block;
}

.logo-wrapper::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  right: -40px;
  bottom: -40px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 30%,
    rgba(255, 200, 80, 0.95) 0%,
    rgba(255, 120, 40, 0.7) 35%,
    rgba(255, 60, 0, 0.4) 65%,
    rgba(0, 0, 0, 0) 90%
  );
  filter: blur(28px);
  animation: flame 2.6s infinite ease-in-out alternate;
  z-index: 0;
}

/* Fire movement */
@keyframes flame {
  0% {
    transform: scale(1) rotate(0deg);
    opacity: 0.9;
    filter: blur(32px);
  }
  25% {
    transform: scale(1.08) rotate(1deg);
    opacity: 1;
    filter: blur(25px);
  }
  50% {
    transform: scale(1.1) rotate(-1deg);
    opacity: 0.85;
    filter: blur(30px);
  }
  75% {
    transform: scale(1.05) rotate(2deg);
    opacity: 1;
    filter: blur(27px);
  }
  100% {
    transform: scale(0.95) rotate(-2deg);
    opacity: 0.7;
    filter: blur(35px);
  }
}

/* =========================================================
   😼 LOGO (SVG Ready)
   ========================================================= */
.avatar {
  position: relative;
  z-index: 1;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  filter: drop-shadow(0 0 12px rgba(255, 70, 0, 0.6));
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover motion */
.avatar:hover {
  transform: scale(1.07);
  filter: drop-shadow(0 0 25px rgba(255, 60, 0, 0.9));
}

/* =========================================================
   🔡 TEXT STYLING
   ========================================================= */
h1 {
  font-size: 2rem;
  color: #ff3b3b;
  margin: 20px 0 10px 0;
}

.tagline {
  color: #bbb;
  font-size: 1.05rem;
  margin-bottom: 30px;
}

/* =========================================================
   🌐 SOCIAL LINKS
   ========================================================= */
.social {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 25px;
}

.social a {
  color: #f5f5f5;
  font-size: 1.6rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social a:hover {
  color: #ff3b3b;
  transform: scale(1.2);
}

/* =========================================================
   ✉️ CONTACT
   ========================================================= */
.contact {
  font-size: 0.95rem;
  color: #999;
}

.contact a {
  color: #ff3b3b;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

/* =========================================================
   📱 RESPONSIVE
   ========================================================= */
@media (max-width: 480px) {
  .avatar {
    width: 160px;
    height: 160px;
  }

  .logo-wrapper::before {
    top: -25px;
    left: -25px;
    right: -25px;
    bottom: -25px;
  }

  h1 {
    font-size: 1.6rem;
  }

  .tagline {
    font-size: 0.95rem;
  }

  .social a {
    font-size: 1.4rem;
  }
}

/* =========================================================
   ⏲️ COUNTER
   ========================================================= */
.counter {
  margin-top: 40px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffb347;
  text-shadow: 0 0 10px rgba(255, 90, 0, 0.7);
}

.counter .count-num {
  color: #ff3b3b;
  font-size: 1.4rem;
  margin: 0 6px;
  text-shadow: 0 0 15px rgba(255, 60, 0, 0.8);
}

.counter img {
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 60, 0, 0.6);
  transform: scale(1);
  transition: all 0.3s ease;
}

.counter img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 90, 0, 0.9);
}