/* =========================================
   BARONGACOR - MINIMALIST MODERN DESIGN
   ========================================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #d4af37;
  --primary-light: #e6c755;
  --dark: #000000;
  --dark-light: #1a1a1a;
  --text-light: rgba(255, 255, 255, 0.9);
  --text-lighter: rgba(255, 255, 255, 0.6);
  --accent: #a97239;
  --success: #10b981;
  --error: #ef4444;
  --glow-primary: 0 0 40px rgba(212, 175, 55, 0.6);
  --glow-accent: 0 0 30px rgba(169, 114, 57, 0.5);
  --transition-smooth: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

html, body {
  width: 100%;
  height: 100%;
  background: #000000;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-light);
  overflow-x: hidden;
  scroll-behavior: smooth;
  line-height: 1.6;
  transition: overflow 0.3s ease;
}

body.scroll-locked {
  overflow: hidden;
  pointer-events: none;
}

body.scroll-locked .activate {
  pointer-events: auto;
}

body.scroll-locked .bg-animation {
  opacity: 0.3;
  transition: opacity 0.6s ease-out;
}

body.scroll-locked .hero {
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0.5s ease-out;
}

/* =========== ANIMATED BACKGROUND =========== */
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.6s ease-out;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.12;
  transition: opacity 0.6s ease;
}

.glow-1 {
  width: 300px;
  height: 300px;
  background: #d4af37;
  top: 10%;
  left: 10%;
  animation: float 18s ease-in-out infinite;
}

.glow-2 {
  width: 250px;
  height: 250px;
  background: #a97239;
  bottom: 20%;
  right: 15%;
  animation: float 22s ease-in-out infinite 1s;
}

.glow-3 {
  width: 350px;
  height: 350px;
  background: #d4af37;
  bottom: 5%;
  left: 50%;
  animation: float 26s ease-in-out infinite 2s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(20px, -20px); }
  66% { transform: translate(-15px, 25px); }
}

/* =========== PAGE LOADER =========== */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: loaderFadeOut 0.6s ease-out 2.5s forwards;
}

.loader-container {
  text-align: center;
}

.loader-icon {
  font-size: 80px;
  margin-bottom: 5px;
  animation: loaderBounce 0.6s ease-in-out infinite;
}

.loader-text {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, #d4af37, #a97239);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.loader-bars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 20px;
}

.bar {
  width: 4px;
  height: 30px;
  background: #d4af37;
  border-radius: 2px;
  animation: loaderBar 1.2s ease-in-out infinite;
}

.bar-1 { animation-delay: 0s; }
.bar-2 { animation-delay: 0.15s; }
.bar-3 { animation-delay: 0.3s; }
.bar-4 { animation-delay: 0.45s; }
.bar-5 { animation-delay: 0.6s; }

@keyframes loaderBar {
  0%, 100% { height: 10px; opacity: 0.4; }
  50% { height: 30px; opacity: 1; }
}

@keyframes loaderBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.loader-subtext {
  font-size: 13px;
  color: var(--text-lighter);
  letter-spacing: 1px;
}

@keyframes loaderFadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

/* =========== MAIN CONTENT =========== */
.main-content {
  position: relative;
  z-index: 1;
  padding-top: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

/* =========== HERO SECTION =========== */
.hero {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  animation: fadeOut 1.5s ease-out forwards;
  animation-delay: 3s;
  z-index: 5;
  pointer-events: none;
}

.hero-container {
  max-width: 900px;
  width: 100%;
  text-align: center;
  position: relative;
  transition: var(--transition-smooth);
}

.hero-container:hover {
  transform: scale(1.02);
}

.hero-bg-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.element {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.06;
}

.element-1 {
  width: 200px;
  height: 200px;
  background: var(--primary);
  top: 10%;
  left: 10%;
}

.element-2 {
  width: 150px;
  height: 150px;
  background: var(--accent);
  bottom: 20%;
  right: 15%;
}

.element-3 {
  width: 180px;
  height: 180px;
  background: var(--primary);
  top: 50%;
  right: 10%;
}

.hero-inner {
  position: relative;
  z-index: 2;
  animation: slideInUp 0.8s ease-out;
  transition: var(--transition-smooth);
}

.hero-title {
  margin-bottom: 15px;
  transition: var(--transition-smooth);
}

.title-main {
  display: block;
  font-size: clamp(42px, 8vw, 72px);
  font-weight: 900;
  background: linear-gradient(90deg, #d4af37, #e6c755, #d4af37, #a97239, #d4af37);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  letter-spacing: -1px;
  animation: textGradientShift 4s ease-in-out infinite, neonPulse 2.5s ease-in-out infinite, glowWave 3.5s ease-in-out infinite;
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
  transition: var(--transition-smooth);
  cursor: default;
}

.title-sub {
  display: block;
  font-size: clamp(16px, 3vw, 22px);
  color: var(--text-lighter);
  font-weight: 500;
  margin-top: 10px;
  letter-spacing: 1px;
  animation: blurIn 1.2s ease-out 0.3s both, colorWave 3s ease-in-out infinite 1s;
  background: linear-gradient(90deg, rgba(230, 199, 85, 0.8), rgba(212, 175, 55, 0.6));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: var(--transition-smooth);
  cursor: default;
}

.hero-desc {
  font-size: 18px;
  color: var(--text-lighter);
  margin: 25px 0 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  animation: blurIn 1.2s ease-out 0.6s both;
  letter-spacing: 0.5px;
  font-weight: 400;
  transition: var(--transition-smooth);
  cursor: default;
}

.hero-desc:hover {
  color: var(--text-light);
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition-smooth);
  cursor: default;
}

.stat-item:hover {
  transform: translateY(-8px) scale(1.05);
}

.stat-number {
  font-size: 32px;
  font-weight: 900;
  color: #d4af37;
  display: block;
  animation: neonPulse 2s ease-in-out infinite, floatText 3s ease-in-out infinite, glowWave 3.5s ease-in-out infinite;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
  transition: var(--transition-smooth);
}

.stat-text {
  font-size: 13px;
  color: var(--text-lighter);
  margin-top: 5px;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
}

.stat-item:hover .stat-text {
  color: var(--text-light);
}

.btn-scroll {
  display: inline-block;
  padding: 14px 40px;
  background: linear-gradient(135deg, #d4af37, #e6c755);
  color: var(--dark);
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn-scroll::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.7s ease;
}

.btn-scroll:hover::before {
  left: 100%;
}

.btn-scroll:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.btn-scroll:active {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========== FEATURES SECTION =========== */
/* =========== ACTIVATION SECTION =========== */
.activate {
  width: 100vw;
  height: 100vh;
  padding: 80px 20px;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  animation: fadeIn 0.8s ease-out forwards, visibilityIn 0.8s forwards;
  animation-delay: 2.5s, 2.5s;
  z-index: 20;
  pointer-events: auto;
}

@keyframes activateEntrance {
  from {
    opacity: 0;
    transform: translateY(100px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.activate-container {
  width: 100%;
  max-width: 600px;
  animation: slideInUp 0.8s ease-out 4.1s both;
  transition: var(--transition-smooth);
}

.activate-header {
  text-align: center;
  margin-bottom: 40px;
  animation: fadeIn 0.6s ease-out 4.0s forwards;
  opacity: 0;
  transition: transform 0.3s ease;
}

.activate-header:hover {
  transform: scale(1.02);
}

.activate-header h2 {
  font-size: 36px;
  font-weight: 900;
  color: #d4af37;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  animation: neonPulse 2s ease-in-out infinite, glowWave 3.5s ease-in-out infinite;
  background: linear-gradient(90deg, #d4af37, #e6c755, #d4af37);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
  transition: var(--transition-smooth);
  cursor: default;
}

.activate-header p {
  font-size: 15px;
  color: var(--text-lighter);
  transition: var(--transition-smooth);
}

.activate-header p:hover {
  color: var(--text-light);
}

.activate-form {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 20px;
  padding: 35px;
  animation: slideInUp 0.8s ease-out 4.1s both;
  transition: var(--transition-smooth);
}

.activate-form:hover {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.1);
}

.error-alert {
  display: none;
  padding: 14px 16px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 10px;
  color: #fca5a5;
  font-size: 13px;
  margin-bottom: 20px;
  animation: slideDown 0.3s ease-out;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.error-alert.show {
  display: block;
  animation: slideDown 0.3s ease-out;
  opacity: 1;
  visibility: visible;
}

.error-alert.hide {
  animation: slideUp 0.3s ease-out forwards;
  visibility: hidden;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-section {
  margin-bottom: 20px;
  animation: formCascade 0.8s ease-out forwards;
  opacity: 0;
  transition: transform 0.3s ease;
  visibility: hidden;
}

/* Ensure form-sections stay visible once animation completes */
.form-section {
  will-change: opacity, transform;
}

.form-section:nth-of-type(1),
.form-section:nth-of-type(2),
.form-section:nth-of-type(3) {
  animation-fill-mode: forwards;
}

/* After animation, lock visibility to prevent resets */
.form-section:nth-of-type(1),
.form-section:nth-of-type(2),
.form-section:nth-of-type(3) {
  opacity: 1 !important;
  visibility: visible !important;
}

.form-section:hover {
  transform: translateX(5px);
}

.form-section:nth-of-type(1) { animation-delay: 4.2s; }
.form-section:nth-of-type(1) .form-label { animation-delay: 4.2s; }
.form-section:nth-of-type(1) .form-input { animation-delay: 4.3s; }
.form-section:nth-of-type(1) .form-hint { animation-delay: 4.4s; }

.form-section:nth-of-type(2) { animation-delay: 5.0s; }
.form-section:nth-of-type(2) .form-label { animation-delay: 5.0s; }
.form-section:nth-of-type(2) .form-input { animation-delay: 5.1s; }
.form-section:nth-of-type(2) .form-hint { animation-delay: 5.2s; }

.form-section:nth-of-type(3) { animation-delay: 5.8s; }
.form-section:nth-of-type(3) .form-label { animation-delay: 5.8s; }
.form-section:nth-of-type(3) .form-input { animation-delay: 5.9s; }
.form-section:nth-of-type(3) .form-hint { animation-delay: 6.0s; }

@keyframes formCascade {
  from {
    opacity: 0;
    transform: translateY(15px);
    visibility: hidden;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  color: var(--text-light);
  animation: fadeIn 0.5s ease-out forwards;
  opacity: 0;
  transition: color 0.3s ease;
}

.form-label:hover {
  color: #e6c755;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.cheat-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 10px;
  animation: fadeIn 0.5s ease-out 4.2s forwards;
  opacity: 1 !important;
  visibility: visible !important;
  transition: gap 0.3s ease;
}

.cheat-buttons:hover {
  gap: 12px;
}

.cheat-btn {
  padding: 12px 10px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(169, 114, 57, 0.05));
  border: 1.5px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  color: #d4af37;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: relative;
  overflow: hidden;
  animation: cheatBtnLoad 0.5s ease-out 4.2s both;
  min-height: 80px;
  visibility: visible !important;
  opacity: 1 !important;
}

.cheat-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cheat-btn:hover::before {
  left: 100%;
}

.cheat-btn:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(169, 114, 57, 0.15));
  border-color: rgba(212, 175, 55, 0.8);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.4), inset 0 0 20px rgba(212, 175, 55, 0.12), 0 0 50px rgba(212, 175, 55, 0.15);
  transform: translateY(-6px) scale(1.08);
  color: #e6c755;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.cheat-btn:active {
  transform: translateY(-2px) scale(0.96);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.25), inset 0 0 15px rgba(212, 175, 55, 0.1);
}

.cheat-btn.selected {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(169, 114, 57, 0.15));
  border-color: #d4af37;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.5), inset 0 0 15px rgba(212, 175, 55, 0.2), 0 0 50px rgba(212, 175, 55, 0.2);
  color: #e6c755;
  transform: scale(1.08);
  animation: cheatBtnSelect 0.4s ease-out;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

@keyframes cheatBtnLoad {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes cheatBtnSelect {
  0% {
    transform: scale(1) rotate(-5deg);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
  }
  50% {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
  }
  100% {
    transform: scale(1.08) rotate(0);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
  }
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(212, 175, 55, 0.02));
  border: 1.5px solid rgba(212, 175, 55, 0.15);
  border-radius: 10px;
  color: var(--text-light);
  font-size: 14px;
  transition: var(--transition-smooth);
  font-family: inherit;
  animation: fadeIn 0.5s ease-out forwards;
  opacity: 0;
  position: relative;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.3s ease;
}

.form-input:hover {
  border-color: rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(212, 175, 55, 0.04));
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.form-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 175, 55, 0.8);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3), inset 0 0 12px rgba(212, 175, 55, 0.08);
  transform: scale(1.015);
  color: #e6c755;
}

.form-hint {
  display: block;
  font-size: 11px;
  color: var(--text-lighter);
  margin-top: 5px;
  animation: fadeIn 0.4s ease-out forwards;
  opacity: 0;
  transition: color 0.3s ease;
}

.form-hint:hover {
  color: rgba(212, 175, 55, 0.7);
}

.btn-activate {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #d4af37, #e6c755);
  color: var(--dark);
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
  margin-bottom: 15px;
  font-family: inherit;
  animation: fadeIn 0.6s ease-out 6.0s forwards;
  opacity: 0;
  position: relative;
  overflow: hidden;
}

.btn-activate::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.8s ease;
}

.btn-activate:hover::after {
  left: 100%;
}

.btn-activate:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.btn-activate:active {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
}

.btn-activate:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-disclaimer {
  text-align: center;
  font-size: 11px;
  color: var(--text-lighter);
  animation: fadeIn 0.6s ease-out 6.2s forwards;
  opacity: 0;
  transition: color 0.3s ease;
}

.form-disclaimer:hover {
  color: var(--text-light);
}

.form-disclaimer a {
  color: #d4af37;
  text-decoration: none;
  transition: var(--transition-smooth);
  position: relative;
}

.form-disclaimer a:hover {
  color: #e6c755;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
  text-decoration: underline;
}

/* =========== LOADING OVERLAY =========== */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 998;
  backdrop-filter: blur(6px);
  transition: backdrop-filter 0.3s ease;
}

.loading-overlay.active {
  display: flex;
  animation: fadeIn 0.5s ease-out;
}

.loading-content {
  text-align: center;
  animation: fadeIn 0.6s ease-out;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  border: 3px solid rgba(212, 175, 55, 0.15);
  border-top-color: #d4af37;
  border-radius: 50%;
  animation: spin 1.3s linear infinite;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading-overlay p {
  font-size: 14px;
  color: var(--text-light);
  letter-spacing: 1px;
  animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes visibilityIn {
  from { visibility: hidden; }
  to { visibility: visible; }
}

@keyframes fadeOut {
  from { opacity: 1; visibility: visible; }
  to { opacity: 0; visibility: hidden; }
}

/* =========== SUCCESS MODAL =========== */
.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  backdrop-filter: blur(6px);
  transition: backdrop-filter 0.3s ease;
}

.success-modal.active {
  display: flex;
  animation: fadeIn 0.5s ease-out;
}

.modal-content {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.98), rgba(26, 26, 26, 0.98));
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: var(--transition-smooth);
}

.modal-content:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-icon {
  font-size: 60px;
  margin-bottom: 20px;
  animation: bounce 0.6s ease-out, neonPulse 2s ease-in-out infinite 1s;
  transition: var(--transition-smooth);
}

@keyframes bounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.modal-content h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--success);
  animation: slideDown 0.5s ease-out;
  transition: var(--transition-smooth);
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.modal-content h3:hover {
  text-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
  transform: scale(1.05);
}

.modal-content p {
  font-size: 14px;
  color: var(--text-lighter);
  margin-bottom: 30px;
  line-height: 1.7;
  animation: fadeIn 0.6s ease-out 0.2s both;
  transition: color 0.3s ease;
}

.modal-content p:hover {
  color: var(--text-light);
}

.btn-modal {
  padding: 12px 35px;
  background: linear-gradient(135deg, #d4af37, #e6c755);
  color: var(--dark);
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-family: inherit;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn-modal::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn-modal:hover::before {
  left: 100%;
}

.btn-modal:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

/* =========== TEXT ANIMATION EFFECTS =========== */

/* Enhanced Gradient Shift */
@keyframes textGradientShift {
  0% {
    background-position: 0% 50%;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
  }
  50% {
    background-position: 100% 50%;
    filter: drop-shadow(0 0 16px rgba(212, 175, 55, 0.8));
  }
  100% {
    background-position: 0% 50%;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
  }
}

/* Neon Pulse Effect */
@keyframes neonPulse {
  0%, 100% {
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5), 0 0 20px rgba(212, 175, 55, 0.3);
    filter: brightness(1);
  }
  50% {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.8), 0 0 30px rgba(212, 175, 55, 0.5), 0 0 40px rgba(212, 175, 55, 0.3);
    filter: brightness(1.1);
  }
}

/* Glow Wave Effect */
@keyframes glowWave {
  0% {
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.3), 0 0 10px rgba(212, 175, 55, 0.2);
  }
  50% {
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.6), 0 0 25px rgba(212, 175, 55, 0.4), 0 0 35px rgba(212, 175, 55, 0.2);
  }
  100% {
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.3), 0 0 10px rgba(212, 175, 55, 0.2);
  }
}

/* Blur In Animation */
@keyframes blurIn {
  from {
    opacity: 0;
    filter: blur(10px);
  }
  to {
    opacity: 1;
    filter: blur(0px);
  }
}

/* Glitch Text Effect */
@keyframes glitchText {
  0% {
    text-shadow: 2px 0 #ff00ff, -2px 0 #00ffff;
  }
  14% {
    text-shadow: 2px 0 #ff00ff, -2px 0 #00ffff;
  }
  15% {
    text-shadow: -2px 0 #ff00ff, 2px 0 #00ffff;
  }
  49% {
    text-shadow: -2px 0 #ff00ff, 2px 0 #00ffff;
  }
  50% {
    text-shadow: 2px 0 #ff00ff, -2px 0 #00ffff;
  }
  100% {
    text-shadow: 2px 0 #ff00ff, -2px 0 #00ffff;
  }
}

/* Shimmer Effect */
@keyframes shimmerText {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* Float Text Animation */
@keyframes floatText {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Liquid Gradient */
@keyframes liquidGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Text Hover Glow */
.title-main,
.activate-header h2 {
  cursor: default;
  transition: var(--transition-smooth);
}

/* Smooth Text Underline Effect */
@keyframes slideUnderline {
  from {
    width: 0;
    left: 0;
  }
  to {
    width: 100%;
    left: 0;
  }
}

/* Color Wave Effect */
@keyframes colorWave {
  0% {
    color: #d4af37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
  }
  50% {
    color: #e6c755;
    text-shadow: 0 0 20px rgba(230, 199, 85, 0.6);
  }
  100% {
    color: #d4af37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
  }
}

/* =========== UTILITIES =========== */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-8px); }
  75% { transform: translateX(8px); }
}

/* Ripple Effect */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent);
  transform: scale(0);
  animation: rippleAnimation 0.6s ease-out;
  pointer-events: none;
}

@keyframes rippleAnimation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Smooth Slide Down */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Smooth Slide Up */
@keyframes slideUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}

/* =========== RESPONSIVE =========== */
@media (max-width: 768px) {
  .hero {
    padding: 50px 20px;
    min-height: auto;
  }

  .title-main {
    font-size: 42px;
  }



  .activate {
    padding: 60px 20px;
    min-height: auto;
  }

  .activate-form {
    padding: 25px;
  }

  .cheat-buttons {
    grid-template-columns: repeat(3, 1fr);
  }

  .modal-content {
    margin: 20px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 40px 15px;
  }

  .title-main {
    font-size: 28px;
  }

  .title-sub {
    font-size: 14px;
  }

  .hero-desc {
    font-size: 14px;
    margin: 20px 0 30px;
  }

  .hero-stats {
    gap: 20px;
    margin-bottom: 30px;
  }

  .stat-number {
    font-size: 24px;
  }

  .stat-text {
    font-size: 11px;
  }



  .activate {
    padding: 50px 15px;
  }

  .activate-container {
    max-width: 100%;
  }

  .activate-header h2 {
    font-size: 28px;
  }

  .activate-form {
    padding: 20px;
  }

  .cheat-buttons {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .cheat-btn {
    padding: 12px 8px;
    font-size: 10px;
    letter-spacing: 0.5px;
  }

  .form-input {
    padding: 10px 12px;
    font-size: 13px;
  }

  .btn-activate {
    padding: 12px;
    font-size: 13px;
  }

  .modal-content {
    padding: 30px 20px;
    max-width: calc(100% - 30px);
  }

  .modal-icon {
    font-size: 48px;
  }

  .modal-content h3 {
    font-size: 20px;
  }

  .modal-content p {
    font-size: 12px;
  }

  .btn-modal {
    padding: 10px 25px;
  }
}
