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

/* Reset and Variables */
:root {
  --color-primary: #8B5CF6;
  --color-bg: #0D0B1A;
  --color-card: #1E1A3A;
  --color-border: #6D28D9;
  --color-text: #F3E8FF;
  --color-hover: #A855F7;
  --color-muted: #A78BFA;
  
  --font-heading: 'VT323', monospace;
  --font-body: 'Inter', sans-serif;
  
  --transition-speed: 0.25s;
}

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

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Background noise texture and glow */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  content: "";
  opacity: 0.05;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

body::after {
  content: "";
  position: fixed;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle at 30% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 40%),
              radial-gradient(circle at 70% 60%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* Typography */
h1, h2, h3, h4, h5, h6, .minecraft-font {
  font-family: var(--font-heading);
  letter-spacing: 1px;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  text-shadow: 3px 3px 0px #4C1D95;
}

h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--color-primary);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

h3 {
  font-size: 1.8rem;
}

a {
  color: var(--color-text);
  text-decoration: none;
  transition: all var(--transition-speed) ease;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 11, 26, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--color-border);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--color-text);
  text-shadow: 2px 2px 0px #4C1D95;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-brand span {
  color: var(--color-primary);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 0.5px;
  padding: 0.25rem 0.5rem;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
  text-shadow: 0 0 8px rgba(139, 92, 246, 0.5);
}

.nav-btn {
  background: var(--color-primary);
  padding: 0.5rem 1.2rem;
  border-radius: 8px 3px 10px 4px; /* Asymmetric border radius */
  font-family: var(--font-heading);
  font-size: 1.3rem !important;
  border: 1px solid var(--color-border);
  box-shadow: 3px 3px 0px #4C1D95;
}

.nav-btn:hover {
  background: var(--color-hover) !important;
  color: white !important;
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0px #4C1D95, 0 0 10px rgba(168, 85, 247, 0.6);
  border-bottom-color: var(--color-border) !important;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 1.8rem;
}

/* Hero Section */
.hero {
  padding: 9rem 2rem 5rem;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.hero-logo {
  font-size: 4.5rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 4px 4px 0px #4C1D95, 0 0 20px rgba(139, 92, 246, 0.3);
  margin-bottom: 1rem;
}

.hero-banner-container {
  max-width: 680px;
  width: 100%;
  margin-bottom: 1.5rem;
  perspective: 1000px;
}

.hero-banner-img {
  width: 100%;
  height: auto;
  border-radius: 8px 16px 4px 12px;
  border: 3px solid var(--color-border);
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.35), 4px 4px 0px rgba(109, 40, 217, 0.3);
  transition: transform 0.4s ease;
  animation: float 6s ease-in-out infinite;
}

.hero-banner-img:hover {
  transform: translateY(-4px) scale(1.02) rotateX(3deg);
  border-color: var(--color-primary);
  box-shadow: 0 15px 30px rgba(139, 92, 246, 0.5), 6px 6px 0px rgba(109, 40, 217, 0.4);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--color-muted);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(30, 26, 58, 0.6);
  border: 1px solid var(--color-border);
  padding: 0.5rem 1rem;
  border-radius: 6px 12px 5px 8px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.stats-dot {
  width: 10px;
  height: 10px;
  background-color: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10B981;
  animation: pulse-green 2s infinite;
}

.ip-box {
  display: flex;
  align-items: center;
  background: #1E1A3A;
  border: 2px solid var(--color-border);
  padding: 0.5rem;
  border-radius: 12px 4px 14px 6px; /* Asymmetrical border radius */
  max-width: 480px;
  width: 100%;
  margin-bottom: 3rem;
  box-shadow: 5px 5px 0px rgba(109, 40, 217, 0.4);
  position: relative;
}

.ip-text {
  flex-grow: 1;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: #FFF;
  padding: 0.25rem 1rem;
  letter-spacing: 1px;
}

.btn-copy {
  background: var(--color-primary);
  color: var(--color-text);
  border: none;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  cursor: pointer;
  border-radius: 6px 12px 4px 9px;
  font-weight: bold;
  box-shadow: 2px 2px 0px #4C1D95;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-copy:hover {
  background: var(--color-hover);
  color: white;
  box-shadow: 3px 3px 0px #4C1D95, 0 0 10px rgba(168, 85, 247, 0.4);
}

.btn-copy:active {
  transform: translate(2px, 2px);
  box-shadow: none;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Buttons */
.btn-primary {
  background: var(--color-primary);
  color: white;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: bold;
  padding: 0.8rem 2rem;
  border: 2px solid var(--color-border);
  border-radius: 8px 16px 4px 12px;
  cursor: pointer;
  box-shadow: 4px 4px 0px #4C1D95;
  transition: all 0.15s ease;
  animation: neon-flicker 5s infinite alternate;
}

.btn-primary:hover {
  background: var(--color-hover);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px #4C1D95, 0 0 15px rgba(168, 85, 247, 0.7);
}

.btn-primary:active {
  transform: translate(4px, 4px);
  box-shadow: none;
}

.btn-secondary {
  background: transparent;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: bold;
  padding: 0.8rem 2rem;
  border: 2px dashed var(--color-border);
  border-radius: 12px 4px 16px 8px;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.btn-secondary:hover {
  border-style: solid;
  border-color: var(--color-primary);
  background: rgba(139, 92, 246, 0.1);
  color: var(--color-primary);
}

/* Sections */
.section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* About Section */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content p {
  margin-bottom: 1.5rem;
  color: #E2D5F5;
  font-size: 1.1rem;
}

.about-badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background: rgba(109, 40, 217, 0.3);
  border: 1px solid var(--color-border);
  border-radius: 12px 4px 8px 0px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--color-muted);
}

.about-image {
  background: var(--color-card);
  border: 2px solid var(--color-border);
  padding: 1rem;
  border-radius: 20px 8px 25px 12px;
  box-shadow: 6px 6px 0px rgba(109, 40, 217, 0.3);
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 250px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.about-illus {
  font-family: var(--font-heading);
  font-size: 8rem;
  color: var(--color-primary);
  opacity: 0.8;
  animation: float 4s ease-in-out infinite;
  text-shadow: 0 0 15px var(--color-primary);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--color-card);
  border: 2px solid var(--color-border);
  padding: 2rem;
  border-radius: 6px 18px 12px 24px; /* Distinct asymmetric shape */
  box-shadow: 4px 4px 0px rgba(109, 40, 217, 0.25);
  transition: all var(--transition-speed) ease;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
  box-shadow: 6px 6px 0px rgba(139, 92, 246, 0.4), 0 0 15px rgba(139, 92, 246, 0.25);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid var(--color-border);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px 3px 12px 5px;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.feature-card h3 {
  margin-bottom: 0.75rem;
  color: #FFF;
}

.feature-card p {
  color: #C3B4E3;
  font-size: 0.95rem;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}

.testi-card {
  background: var(--color-card);
  border: 2px solid var(--color-border);
  padding: 2rem;
  border-radius: 16px 8px 24px 12px;
  box-shadow: 5px 5px 0px rgba(109, 40, 217, 0.2);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.testi-avatar {
  width: 64px;
  height: 64px;
  background: #2E2854;
  border: 2px solid var(--color-primary);
  border-radius: 8px 12px 4px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--color-primary);
  flex-shrink: 0;
  overflow: hidden;
}

.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testi-info h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.testi-rank {
  font-family: var(--font-heading);
  font-size: 1rem;
  background: var(--color-primary);
  color: #FFF;
  padding: 0px 6px;
  border-radius: 3px;
}

.testi-content {
  color: #D2C4ED;
  font-style: italic;
  font-size: 0.95rem;
  position: relative;
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--color-card);
  border: 2px solid var(--color-border);
  border-radius: 8px 12px 4px 16px;
  overflow: hidden;
  transition: all var(--transition-speed) ease;
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  color: #FFF;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition-speed) ease;
}

.faq-question:hover {
  background: rgba(139, 92, 246, 0.08);
}

.faq-icon {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-primary);
  transition: transform var(--transition-speed) ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-item.open {
  border-color: var(--color-primary);
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.15);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-speed) ease, padding var(--transition-speed) ease;
  padding: 0 1.5rem;
  color: #D2C4ED;
  font-size: 0.95rem;
}

.faq-item.open .faq-answer {
  max-height: 200px; /* arbitrary height to slide down */
  padding: 0 1.5rem 1.5rem;
}

/* Store Cards */
.store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
  margin-bottom: 5rem;
}

.store-card {
  background: var(--color-card);
  border: 3px solid var(--color-border);
  padding: 2.5rem 2rem;
  border-radius: 12px 24px 8px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-speed) ease;
  box-shadow: 6px 6px 0px rgba(109, 40, 217, 0.3);
}

.store-card.selected {
  border-color: var(--color-primary);
  box-shadow: 8px 8px 0px var(--color-primary), 0 0 20px rgba(139, 92, 246, 0.4);
  transform: translateY(-5px);
}

.store-card.popular::before {
  content: "PALING LAKU";
  position: absolute;
  top: -12px;
  right: 20px;
  background: #F59E0B;
  color: #000;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: bold;
  padding: 2px 10px;
  border-radius: 4px;
  border: 2px solid #000;
  box-shadow: 2px 2px 0px var(--color-border);
}

.store-card-header {
  text-align: center;
  margin-bottom: 2rem;
  border-bottom: 2px dashed rgba(109, 40, 217, 0.4);
  padding-bottom: 1.5rem;
}

.store-card-name {
  font-size: 2.5rem;
  color: #FFF;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 0px rgba(109, 40, 217, 0.8);
}

.store-card-price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-muted);
}

.store-card-price span {
  font-size: 2.2rem;
  color: #FFF;
}

.store-card-perks {
  list-style: none;
  margin-bottom: 2.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.store-card-perks li {
  font-size: 0.95rem;
  color: #D2C4ED;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.store-card-perks li svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

.store-card .btn-select {
  width: 100%;
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-border);
  padding: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 8px 16px 4px 12px;
  transition: all 0.15s ease;
}

.store-card .btn-select:hover {
  background: var(--color-primary);
  color: #FFF;
  border-color: var(--color-primary);
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.4);
}

.store-card.selected .btn-select {
  background: var(--color-hover);
  color: #FFF;
  border-color: var(--color-hover);
  box-shadow: 3px 3px 0px #4C1D95;
}

/* Store Form Section */
.checkout-section {
  max-width: 600px;
  margin: 0 auto;
}

.form-card {
  background: var(--color-card);
  border: 2px dashed var(--color-border);
  padding: 3rem 2.5rem;
  border-radius: 20px 10px 24px 8px;
  box-shadow: 6px 6px 0px rgba(109, 40, 217, 0.15);
}

.form-group {
  margin-bottom: 1.75rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  background: rgba(13, 11, 26, 0.8);
  border: 2px solid var(--color-border);
  color: var(--color-text);
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: 8px 4px 12px 6px;
  outline: none;
  transition: all var(--transition-speed) ease;
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 8px rgba(139, 92, 246, 0.3);
}

.form-control::placeholder {
  color: #5B4E7A;
}

.form-feedback {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: #EF4444;
  margin-top: 0.25rem;
  display: none;
}

.btn-submit {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

/* Payment Page */
.payment-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  margin-top: 3rem;
}

.payment-details-card, .qris-card {
  background: var(--color-card);
  border: 2px solid var(--color-border);
  padding: 2.5rem;
  border-radius: 12px 20px 8px 24px;
  box-shadow: 5px 5px 0px rgba(109, 40, 217, 0.2);
}

.payment-summary-list {
  list-style: none;
  margin: 1.5rem 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-bottom: 2px dashed rgba(109, 40, 217, 0.3);
  padding-bottom: 1.5rem;
}

.payment-summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.payment-summary-item .label {
  color: var(--color-muted);
}

.payment-summary-item .val {
  font-weight: bold;
  color: #FFF;
}

.payment-total {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.payment-total .price {
  font-size: 2.2rem;
  color: var(--color-primary);
  text-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

.qris-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.qris-badge {
  font-family: var(--font-heading);
  background: #FFF;
  color: #111;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 2px 12px;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  border: 2px solid var(--color-border);
}

.qris-image-box {
  background: #FFF;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  width: 250px;
  height: 250px;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.qris-image-box svg {
  width: 100%;
  height: 100%;
}

.qris-desc {
  color: var(--color-muted);
  font-size: 0.9rem;
}

/* File Upload Field */
.file-upload-wrapper {
  position: relative;
  border: 2px dashed var(--color-border);
  border-radius: 12px 6px 16px 8px;
  padding: 2rem;
  text-align: center;
  background: rgba(13, 11, 26, 0.4);
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.file-upload-wrapper:hover, .file-upload-wrapper.dragover {
  border-color: var(--color-primary);
  background: rgba(139, 92, 246, 0.08);
}

.file-upload-wrapper input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-upload-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  display: block;
}

.file-upload-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: #FFF;
  margin-bottom: 0.25rem;
}

.file-upload-hint {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.file-selected-name {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #10B981;
  font-weight: bold;
  display: none;
}

/* Processing Overlay / Mock database loader */
.processing-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(13, 11, 26, 0.95);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.processing-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.processing-box {
  max-width: 450px;
  width: 90%;
  text-align: center;
  background: var(--color-card);
  border: 3px solid var(--color-border);
  border-radius: 12px 24px 8px 30px;
  padding: 3rem 2rem;
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
}

.processing-title {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  color: #FFF;
}

.processing-status {
  font-size: 1.1rem;
  color: var(--color-muted);
  margin-bottom: 2rem;
}

.progress-bar-container {
  width: 100%;
  height: 12px;
  background: rgba(13, 11, 26, 0.8);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.progress-bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-hover) 100%);
  box-shadow: 0 0 10px var(--color-hover);
  transition: width 0.1s linear;
}

/* Success Modal / Notification */
.success-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  z-index: 2001;
  max-width: 500px;
  width: 90%;
  background: var(--color-card);
  border: 3px solid #10B981;
  border-radius: 16px 8px 24px 12px;
  padding: 3rem 2.5rem;
  box-shadow: 0 0 40px rgba(16, 185, 129, 0.3);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-modal.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.success-icon {
  font-size: 5rem;
  color: #10B981;
  margin-bottom: 1rem;
  animation: bounce 1s infinite alternate;
}

.success-title {
  font-size: 2.6rem;
  color: #FFF;
  margin-bottom: 1rem;
}

.success-message {
  color: #D2C4ED;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* Footer */
.footer {
  background: #090712;
  border-top: 2px solid var(--color-border);
  padding: 4rem 2rem 2rem;
  margin-top: 6rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(109, 40, 217, 0.2);
}

.footer-brand h3 {
  font-size: 1.8rem;
  color: #FFF;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.footer-links h4, .footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: #FFF;
  margin-bottom: 1.25rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--color-primary);
  padding-left: 5px;
}

.footer-contact p {
  color: var(--color-muted);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact p svg {
  color: var(--color-primary);
}

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: #5B4E7A;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: #5B4E7A;
}

.footer-bottom a:hover {
  color: var(--color-primary);
}

/* Animations */
@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes bounce {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-8px);
  }
}

@keyframes neon-flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    text-shadow: 0 0 4px #8B5CF6, 0 0 10px #8B5CF6, 0 0 20px #A855F7;
    box-shadow: 4px 4px 0px #4C1D95, 0 0 12px rgba(139, 92, 246, 0.45);
  }
  20%, 24%, 55% {
    text-shadow: none;
    box-shadow: 4px 4px 0px #4C1D95;
  }
}

/* Responsive design */
@media (max-width: 992px) {
  h1 {
    font-size: 2.8rem;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .store-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .payment-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }
  .nav-links {
    position: fixed;
    top: 60px; /* height of navbar */
    left: 0;
    right: 0;
    background: #0D0B1A;
    border-bottom: 2px solid var(--color-border);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    align-items: stretch;
    text-align: center;
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    z-index: 999;
  }
  .nav-links.active {
    transform: translateY(0);
  }
  .hamburger {
    display: block;
  }
  .hero {
    padding-top: 8rem;
  }
  .hero-logo {
    font-size: 3rem;
  }
  .about-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .store-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
