/* Root Theme */
:root {
  --primary-color: #00c853;
  --primary-dark: #00b84a;
  --font-main: 'Inter', sans-serif;
}

/* Base Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: var(--font-main);
  background: #f7f9fb;
  color: #111;
  line-height: 1.6;
}
a {
  color: var(--primary-color);
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}

/* Header */
.main-header {
  width: 100%;
  background: rgba(255, 255, 255, 0.85); /* semi-transparent white */
  backdrop-filter: blur(12px); /* frosted glass effect */
  border-bottom: 1px solid #ccc;
  position: relative;
  z-index: 1000;
}

.header-container {
  max-width: 1400px;
  margin: auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 40px;
}

/* Navigation */
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav-links a {
  font-weight: 500;
  color: #333;
  transition: color 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-color);
}

/* Mobile Menu */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: #333;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 24px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.05);
  }
  .nav-links.show {
    display: flex;
  }
}

/* Main Content */
.main-content {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

/* Footer */
.main-footer {
  background: #f1f1f1;
  text-align: center;
  padding: 24px 16px;
  font-size: 0.9rem;
  color: #666;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
  padding: 100px 20px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(#00c85333, transparent 70%);
  animation: floatGlow 8s linear infinite;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.glow-text {
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 0 0 8px #00c853, 0 0 30px #00c85344;
}
.hero-subtext {
  font-size: 1.2rem;
  margin-top: 16px;
  color: #ccc;
}
.pulse-button {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 28px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 0 0px #00c85388;
  transition: background 0.3s ease;
  animation: pulseGlow 2s infinite;
}
.pulse-button:hover {
  background: var(--primary-dark);
}

/* Animations */
@keyframes pulseGlow {
  0% { box-shadow: 0 0 0px #00c85388; }
  50% { box-shadow: 0 0 20px #00c853cc; }
  100% { box-shadow: 0 0 0px #00c85388; }
}
@keyframes floatGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Features */
.features {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}
.section-title {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #111;
}
.feature-list {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: auto;
  color: #333;
}
.feature-list li {
  font-size: 1.1rem;
  margin: 16px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.comparison {
  background: #ffffff;
  padding: 60px 20px;
}
.comparison-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}
.comparison-grid .column {
  flex: 1;
  min-width: 280px;
  padding: 20px;
  border-radius: 10px;
  background: #f8f9fa;
}
.comparison-grid .traditional {
  border-left: 5px solid #e53935;
}
.comparison-grid .payqr {
  border-left: 5px solid #43a047;
}
.comparison-grid h3 {
  margin-bottom: 15px;
  font-size: 20px;
}
.comparison-grid ul {
  list-style: none;
  padding-left: 0;
}
.comparison-grid ul li {
  padding: 6px 0;
  border-bottom: 1px dashed #ccc;
}
.real-world-example {
  margin-top: 40px;
  font-size: 16px;
  background: #f1f1f1;
  padding: 20px;
  border-radius: 8px;
}
.cta-box {
  text-align: center;
  margin-top: 40px;
}
.cta-box p {
  margin: 10px 0;
}
.cta-box .btn-primary {
  font-size: 18px;
  padding: 12px 30px;
  margin-top: 10px;
}
.wallets {
  background: #f8f9fa;
  padding: 50px 0;
  text-align: center;
}
.wallets .section-title {
  font-size: 28px;
  margin-bottom: 10px;
}
.wallets .section-subtext {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}
.wallet-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.wallet-logos img {
  max-height: 40px;
  object-fit: contain;
  transition: transform 0.2s;
}
.wallet-logos img:hover {
  transform: scale(1.1);
}
