:root {
  --bg-color: #0c0d10; 
  --surface-color: #1a1b21;
  --primary-color: #1da1f2; 
  --primary-glow: rgba(29, 161, 242, 0.5);
  --accent-color: #ff003c; 
  --accent-glow: rgba(255, 0, 60, 0.4);
  --text-primary: #ffffff;
  --text-secondary: #a0a0b0;
  --glass-bg: rgba(26, 27, 33, 0.7);
  --glass-border: rgba(255, 255, 255, 0.05);
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-body);
}

body {
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, .section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
}

p {
  color: var(--text-secondary);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.glass-panel {
  background: rgba(255, 255, 255, 0); 

  border: 1px solid rgba(255, 255, 255, 0.1); 
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

#vanta-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 100;
  background-color: rgba(12, 13, 16, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-primary);
}

.logo img {
  height: 40px;
  width: auto;
}
.qr-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  margin-top: 20px;
  animation: fadeIn 0.4s ease;
}

.payment-info-text {
  flex: 1;
  text-align: left;
}

.payment-info-text h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.payment-text-box {
  background: rgba(0, 0, 0, 0.2);
  padding: 15px;
  border-radius: 10px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.9rem;
  line-height: 1.6;
  border: 1px solid var(--glass-border);
}

.payment-qr-side {
  flex-shrink: 0; 
  text-align: center;
}

.qr-image {
  width: 180px;
  height: 180px;
  border-radius: 12px;
  border: 4px solid #fff;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.qr-note {
  display: block;
  margin-top: 8px;
  font-size: 0.75rem;
  color: #888;
}

@media (max-width: 600px) {
  .qr-container {
    flex-direction: column-reverse; 
    text-align: center;
  }
  .payment-info-text {
    text-align: center;
  }
}
nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}

nav a {
  font-weight: 600;
  color: var(--text-secondary);
}

nav a:hover, nav a.discord-nav {
  color: var(--primary-color);
}

nav a.discord-nav {
  background-color: rgba(29, 161, 242, 0.1);
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid rgba(29, 161, 242, 0.3);
}

nav a.discord-nav:hover {
  background-color: rgba(29, 161, 242, 0.2);
  box-shadow: 0 0 15px var(--primary-glow);
}

main {
  padding-top: 110px;
  padding-bottom: 60px;
}

main > section {
  margin-bottom: 80px;
  padding: 80px 0;
}

.hero {
  padding: 0 0 80px;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.125rem;
  margin-bottom: 40px;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(29, 161, 242, 0.1);
  border: 1px solid rgba(29, 161, 242, 0.3);
  color: var(--primary-color);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: #2ecc71; 
  border-radius: 50%;
  box-shadow: 0 0 8px #2ecc71;
}

.hero-btns {
  display: flex;
  gap: 20px;
}

.hero-preview {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-preview img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px var(--primary-glow);
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-preview:hover img {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6), 0 0 30px var(--primary-glow);
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #0c84cc;
  box-shadow: 0 0 20px var(--primary-glow);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--surface-color);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: rgba(29, 161, 242, 0.1);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-card, .f-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

.feature-card:hover, .f-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary-color);
  box-shadow: 0 10px 40px rgba(29, 161, 242, 0.2);
}

.feature-icon, .f-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: inline-block;
  filter: drop-shadow(0 0 10px var(--primary-glow));
}
.pricing-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 15px;         
  justify-content: center;
  margin-top: 40px;
  width: 100%;
}


.pricing-card {
  flex: 1;          
  min-width: 220px;  
  max-width: 280px;  
  padding: 25px 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease;
}


.pricing-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
}

.pricing-card.featured {
  border: 1px solid var(--primary-color);
  background: rgba(29, 161, 242, 0.08);
  box-shadow: 0 0 20px rgba(29, 161, 242, 0.2);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

.plan-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.plan-price {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.plan-price span {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.plan-features {
  list-style: none;
  margin-bottom: 25px;
  text-align: left;
  font-size: 0.85rem; 
  line-height: 1.8;
  color: var(--text-secondary);
  flex-grow: 1;
}

.plan-features li::before {
  content: "✓";
  color: var(--primary-color);
  margin-right: 8px;
  font-weight: bold;
}

@media (max-width: 992px) {
  .pricing-grid {
    flex-wrap: wrap;
  }
  .pricing-card {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 600px) {
  .pricing-card {
    flex: 0 0 100%; 
  }
}

.card-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.875rem;
}

.pricing-card h3 {
  font-size: 1.75rem;
  margin-bottom: 30px;
}

.price-main {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.currency {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.text-xs {
  font-size: 0.75rem;
}

.price-desc {
  margin-bottom: 30px;
}

.pricing-card ul {
  list-style: none;
  text-align: left;
  max-width: 250px;
  margin: 0 auto 40px;
  color: var(--text-secondary);
  line-height: 2.2;
}

.pricing-card.premium ul {
  color: var(--text-primary);
}

.key-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.key-management h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: left;
}

.key-check input, .key-activation input, .key-activation textarea {
  width: 100%;
  padding: 14px 18px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-family: var(--font-body);
}

.key-check input:focus, .key-activation input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.status-message {
  margin-top: 15px;
  font-weight: 600;
  font-size: 1.1rem;
}

.status-message.success {
  color: #2ecc71;
}

.status-message.error {
  color: #e74c3c;
}

.key-activation form {
  display: flex;
  flex-direction: column;
}

.file-input-wrapper {
  position: relative;
  margin-bottom: 15px;
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 14px 18px;
  background-color: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
  cursor: pointer;
}

.file-input-wrapper label {
  cursor: pointer;
}

.file-input-wrapper input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.community-container {
  text-align: center;
  padding: 60px 0;
}

.community h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.community p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 30px;
}

.btn-discord {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #7289da;
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.125rem;
}

.btn-discord:hover {
  background-color: #5b6eae;
  box-shadow: 0 0 20px rgba(114, 137, 218, 0.5);
  transform: translateY(-2px);
}

.btn-discord img {
  height: 24px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  width: 90%;
  max-width: 600px;
  padding: 40px;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  color: var(--text-secondary);
  font-size: 2rem;
  cursor: pointer;
}

.modal h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.modal-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 30px;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.method-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background-color: var(--surface-color);
  border: 1px solid var(--glass-border);
  padding: 30px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.method-card:hover, .method-card.active {
  border-color: var(--primary-color);
  background-color: rgba(29, 161, 242, 0.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 10px var(--primary-glow);
}

.method-card img {
  height: 50px;
  max-width: 100%;
  object-fit: contain;
}

.method-card span {
  font-weight: 600;
  color: var(--text-primary);
}

.payment-details {
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 20px;
  border: 1px solid var(--glass-border);
  display: none;
}

.payment-details pre {
  color: var(--text-primary);
  font-family: var(--font-body);
  white-space: pre-wrap;
  line-height: 1.8;
  font-size: 1rem;
}

footer {
  background-color: var(--bg-color);
  border-top: 1px solid var(--glass-border);
  padding: 60px 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  color: var(--text-secondary);
}

.footer-info img {
  height: 40px;
  margin-bottom: 15px;
}

.footer-container h4 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  margin-bottom: 15px;
}

.footer-container ul {
  list-style: none;
  line-height: 2.2;
}

.footer-container a:hover {
  color: var(--primary-color);
}