@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  height: 100vh;
  background: linear-gradient(135deg, #0a84ff, #00d4ff);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

body::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.35) 0%, transparent 50%, rgba(255,255,255,0.25) 100%);
  pointer-events: none;
  animation: shine 8s linear infinite;
}

@keyframes shine {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.container {
  background: #ffffff;
  padding: 70px 60px;
  border-radius: 30px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  max-width: 820px;
  text-align: center;
}

/* Logo */
.logo {
  font-size: 92px;
  font-weight: 700;
  letter-spacing: -8px;
  margin-bottom: 25px;
  line-height: 1;
}

.logo span {
  display: inline-block;
  transition: transform 0.3s ease;
}

.logo span:hover {
  transform: scale(1.2);
}

/* Colors */
.S { color: #0EA5E9; }
.I { color: #4F46E5; }
.M { color: #7C3AED; }
.Z { color: #C026D3; }
.P { color: #14B8A6; }
.r { color: #F43F5E; }
.o { color: #F59E0B; }

.dot {
  color: #1E3A8A;
  font-size: 72px;
}

.com {
  color: #1E3A8A;
  font-size: 58px;
  letter-spacing: -2px;
}

p {
  font-size: 22px;
  color: #334155;
  max-width: 580px;
  margin: 0 auto 45px;
  line-height: 1.45;
}

.btn {
  display: inline-block;
  padding: 18px 52px;
  font-size: 21px;
  font-weight: 600;
  color: white;
  background: linear-gradient(90deg, #00d4ff, #0099ff);
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0, 212, 255, 0.4);
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 212, 255, 0.5);
}

/* Popup */
.popup {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.7);
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.popup-content {
  background: white;
  padding: 40px 50px;
  border-radius: 20px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.popup-content input {
  width: 100%;
  padding: 14px;
  font-size: 18px;
  margin: 20px 0;
  border: 2px solid #00d4ff;
  border-radius: 10px;
}

.popup-content button {
  padding: 14px 40px;
  font-size: 18px;
  background: #00d4ff;
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
}
