* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.logo {
  width: 90px;
  height: 90px;
  margin: 0 auto 15px;
  border-radius: 50%;
  position: relative;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 0 25px rgba(0,212,255,0.2);
  animation: fadeIn 1s ease;

  /* важно: не режем пульсацию */
  overflow: visible;
}

/* картинка внутри остаётся круглой */
.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* зелёный статус */
.status {
  position: absolute;
  bottom: 6px;
  right: 6px;

  width: 12px;
  height: 12px;
  background: #00ff7b;
  border-radius: 50%;

  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* пульсация делаем через псевдо-элемент (ВАЖНО) */
.status::before {
  content: "";
  position: absolute;

  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #00ff7b;

  animation: pulse 1.5s infinite;
  opacity: 0.7;
}

/* ядро точки */
.status::after {
  content: "";
  position: absolute;

  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00ff7b;
}

/* анимация */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

body {
  background: #070812;
  overflow-x: hidden;
  color: white;
}

/* фон сетка */
.grid-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

/* световые пятна */
.glow {
  position: absolute;
  width: 500px;
  height: 500px;
  filter: blur(120px);
  opacity: 0.4;
}

.glow-1 {
  background: purple;
  top: -100px;
  left: -100px;
}

.glow-2 {
  background: #00d4ff;
  bottom: -150px;
  right: -150px;
}

/* центр */
.center {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  position: relative;
  z-index: 2;
}

/* карточка */
.card {
  width: 420px;
  padding: 30px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 0 40px rgba(0,0,0,0.5);
  animation: fadeIn 1s ease;
}

h1 {
  font-size: 34px;
  text-align: center;
  letter-spacing: 2px;
}

h1 span {
  color: #00d4ff;
}

.subtitle {
  text-align: center;
  margin: 10px 0 20px;
  color: #aaa;
  font-size: 12px;
  letter-spacing: 2px;
}

/* инфо */
.info {
  text-align:center;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #ddd;
}

.info span {
  color: #00ff9d;
  font-weight: bold;
}

/* кнопка */
.btn {
  display: block;
  text-align: center;
  padding: 12px;
  background: linear-gradient(45deg, #00d4ff, #7c3aed);
  border-radius: 12px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #00d4ff;
}

/* features */
.features {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  font-size: 12px;
  color: #aaa;
}

/* footer */
.footer {
  margin-top: 15px;
  text-align: center;
  font-size: 11px;
  color: #666;
}

/* монеты */
.coin {
  position: absolute;
  width: 60px;
  opacity: 0.6;
  animation: float 6s infinite ease-in-out;
}

.c1 { top: 10%; left: 10%; }
.c2 { bottom: 15%; left: 20%; animation-delay: 2s; }
.c3 { top: 20%; right: 10%; animation-delay: 4s; }

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(10deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* адаптив */
@media (max-width: 500px) {
  .card {
    width: 90%;
  }
}