/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
  --primary-green: #6aa84f;
  --dark-green: #38761d;
  --bright-green: #7cfc00;
  --deep-black: #08090c;
  --card-bg: #11141a;
  --metallic-grey: #1f2833;
  --border-grey: #2e3b4e;
  --text-white: #ffffff;
  --text-gray: #b0b5c1;
  --text-dark: #1f2937;
  
  --red-accent: #e05a47;
  --red-glow: rgba(224, 90, 71, 0.3);
  --green-glow: rgba(106, 168, 79, 0.35);
  --white-glow: rgba(255, 255, 255, 0.1);

  --font-primary: 'Outfit', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;

  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--deep-black);
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-primary);
  background-color: var(--deep-black);
  color: var(--text-gray);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
  color: var(--text-white);
  font-weight: 700;
  line-height: 1.25;
}

p {
  font-weight: 400;
  font-size: 1rem;
}

.text-center {
  text-align: center;
}

.text-green {
  color: var(--primary-green);
}

.text-gradient {
  background: linear-gradient(135deg, var(--text-white) 30%, var(--primary-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead {
  font-size: 1.15rem;
  color: var(--text-white);
  font-weight: 500;
}

/* Margins */
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }

/* ==========================================================================
   GLOW ORBS & TEXTURES
   ========================================================================== */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.25;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: var(--primary-green);
  top: 10%;
  left: -10%;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: var(--dark-green);
  top: 50%;
  right: -10%;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-primary);
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-xl {
  padding: 20px 48px;
  font-size: 1.2rem;
  border-radius: var(--border-radius-md);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  color: var(--text-white);
  box-shadow: 0 4px 20px rgba(106, 168, 79, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(106, 168, 79, 0.6);
  background: linear-gradient(135deg, #7dbd60, var(--primary-green));
}

.btn-glow::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(90deg, var(--primary-green), var(--bright-green), var(--primary-green));
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: var(--transition-smooth);
}

.btn-glow:hover::after {
  opacity: 1;
}

.btn-secondary {
  background: transparent;
  color: var(--text-white);
  border: 1px solid var(--border-grey);
}

.btn-secondary:hover {
  background: var(--white-glow);
  border-color: var(--primary-green);
}

.btn-arrow {
  width: 20px;
  height: 20px;
  transition: var(--transition-smooth);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(8, 9, 12, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 100;
  display: flex;
  align-items: center;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-white);
}

.logo-icon {
  width: 28px;
  height: 28px;
  color: var(--primary-green);
  filter: drop-shadow(0 0 8px rgba(106, 168, 79, 0.6));
}

.desktop-nav {
  display: flex;
  gap: 32px;
}

.desktop-nav a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.desktop-nav a:hover {
  color: var(--primary-green);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 160px 0 100px 0;
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.badge-new {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(106, 168, 79, 0.1);
  border: 1px solid rgba(106, 168, 79, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 24px;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background: var(--primary-green);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(106, 168, 79, 0.7);
  animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(106, 168, 79, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(106, 168, 79, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(106, 168, 79, 0); }
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 36px;
  max-width: 650px;
}

.hero-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-white);
}

.icon-check {
  width: 18px;
  height: 18px;
  color: var(--primary-green);
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.secure-checkout-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-gray);
}

.icon-lock {
  width: 14px;
  height: 14px;
}

/* Hero Visual Box styling */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

/* --- Computer Monitor Mockup --- */
.computer-mockup {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  perspective: 1000px;
}

.monitor-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 10px solid #1f2833;
  border-radius: 12px 12px 2px 2px;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(106, 168, 79, 0.25);
  overflow: hidden;
  transition: var(--transition-smooth);
  container-type: inline-size;
}

.computer-mockup:hover .monitor-screen {
  transform: translateY(-5px) rotateX(1deg);
  border-color: var(--primary-green);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.7),
    0 0 45px rgba(106, 168, 79, 0.45);
}

.monitor-screen .mockup-img,
.monitor-screen .mockup-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.computer-mockup:hover .mockup-img,
.computer-mockup:hover .mockup-video {
  transform: scale(1.02);
}

.screen-glare {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 50%);
  pointer-events: none;
  z-index: 2;
}

.screen-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(106, 168, 79, 0.05) 0%, transparent 80%);
  pointer-events: none;
  z-index: 1;
}

.monitor-stand {
  width: 44px;
  height: 32px;
  background: linear-gradient(to bottom, #1f2833, #0f1318);
  margin: 0 auto;
  position: relative;
  z-index: -1;
  box-shadow: inset 0 0 8px rgba(0,0,0,0.5);
}

.monitor-base {
  width: 160px;
  height: 6px;
  background: linear-gradient(to bottom, #2e3b4e, #1f2833);
  margin: 0 auto;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.visual-badge {
  display: none !important;
}

.visual-badge .badge-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-green);
}

.visual-badge .badge-desc {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-white);
}

/* Responsiveness for Monitor Mockup */
@media (max-width: 768px) {
  .monitor-stand, .monitor-base {
    display: none;
  }
  .monitor-screen {
    border-radius: 8px;
    border-width: 6px;
  }
}

/* ==========================================================================
   SECTIONS GENERAL
   ========================================================================== */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.tag-red {
  color: var(--red-accent);
}

.section-header h2 {
  font-size: 2.3rem;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.header-line {
  width: 60px;
  height: 4px;
  background-color: var(--primary-green);
  margin: 0 auto 20px auto;
  border-radius: 2px;
}

.bg-red {
  background-color: var(--red-accent) !important;
}

/* ==========================================================================
   SPIN: SITUATION
   ========================================================================== */
.situation-content {
  max-width: 800px;
  margin: 0 auto 50px auto;
  text-align: center;
}

.situation-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text-white);
}

.situation-lead {
  font-size: 1.2rem !important;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85) !important;
}

/* --- Game Covers Marquee --- */
.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 10px 0 0 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 14px;
  animation: marquee-scroll 35s linear infinite;
  will-change: transform;
}

.marquee-cover {
  display: block;
  width: 120px;
  height: 160px;
  min-width: 120px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 7px)); }
}

/* ==========================================================================
   SPIN: PROBLEM
   ========================================================================== */
.problem-section {
  background: rgba(224, 90, 71, 0.02);
  border-top: 1px solid rgba(224, 90, 71, 0.05);
  border-bottom: 1px solid rgba(224, 90, 71, 0.05);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.problem-card {
  background: var(--card-bg);
  border: 1px solid var(--border-grey);
  padding: 30px;
  border-radius: var(--border-radius-md);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: transparent;
  transition: var(--transition-smooth);
}

.problem-card:hover {
  transform: translateY(-5px);
  border-color: rgba(224, 90, 71, 0.3);
  box-shadow: 0 10px 30px var(--red-glow);
}

.problem-card:hover::before {
  background-color: var(--red-accent);
}

.problem-icon {
  width: 48px;
  height: 48px;
  background: rgba(224, 90, 71, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--red-accent);
  transition: var(--transition-smooth);
}

.problem-card:hover .problem-icon {
  background: var(--red-accent);
  color: var(--text-white);
  transform: scale(1.05);
}

.icon-cross {
  width: 24px;
  height: 24px;
}

.problem-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.problem-card p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* ==========================================================================
   SPIN: IMPLICATION
   ========================================================================== */
.implication-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border-grey);
  border-radius: var(--border-radius-lg);
  padding: 60px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
}

.implication-glow {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, rgba(106,168,79,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.implication-content {
  position: relative;
  z-index: 2;
}

.implication-content h2 {
  font-size: 2.3rem;
  margin-bottom: 24px;
}

.implication-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 40px 0;
}

.implication-box {
  padding: 30px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-grey);
}

.implication-box.bad {
  background: rgba(224, 90, 71, 0.03);
  border-color: rgba(224, 90, 71, 0.15);
}

.implication-box.good {
  background: rgba(106, 168, 79, 0.03);
  border-color: rgba(106, 168, 79, 0.15);
}

.implication-box h4 {
  font-size: 1.15rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.implication-box.bad h4 {
  color: var(--red-accent);
}

.implication-box.good h4 {
  color: var(--primary-green);
}

.implication-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.implication-box ul li {
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-white);
}

.implication-footer {
  font-size: 1.05rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  text-align: center;
}

/* ==========================================================================
   SPIN: NEED PAYOFF
   ========================================================================== */
.payoff-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.payoff-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.payoff-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.05rem;
}

.payoff-list li span {
  color: var(--text-gray);
}

.payoff-list li strong {
  color: var(--text-white);
}

/* Server Custom CSS Mockup */
.payoff-visual {
  display: flex;
  justify-content: center;
}

.isometric-grid-card {
  background: var(--card-bg);
  border: 1px solid var(--border-grey);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
  position: relative;
  overflow: hidden;
}

.isometric-grid-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(106,168,79,0.1), transparent 60%);
  pointer-events: none;
}

.server-node {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(106, 168, 79, 0.1);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 24px;
}

.pulse-green {
  width: 8px;
  height: 8px;
  background: var(--bright-green);
  border-radius: 50%;
  animation: pulse-ring 1.5s infinite;
}

.games-count-badge {
  margin-bottom: 30px;
}

.games-count-badge .count {
  font-size: 4rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
  background: linear-gradient(135deg, var(--text-white), var(--primary-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.games-count-badge .label {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.speed-bar {
  font-size: 0.85rem;
  color: var(--text-white);
}

.speed-bar span {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.bar-bg {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  overflow: hidden;
}

.bar-fill {
  width: 92%;
  height: 100%;
  background: var(--primary-green);
  border-radius: inherit;
  box-shadow: 0 0 10px var(--bright-green);
}

/* ==========================================================================
   GAME GALLERY SECTION
   ========================================================================== */
.gallery-section {
  background: rgba(255,255,255,0.01);
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-grey);
  color: var(--text-gray);
  padding: 10px 20px;
  border-radius: 50px;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.tab-btn:hover, .tab-btn.active {
  border-color: var(--primary-green);
  color: var(--text-white);
  background: rgba(106, 168, 79, 0.1);
  box-shadow: 0 0 10px rgba(106, 168, 79, 0.2);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.game-card {
  background: var(--card-bg);
  border: 1px solid var(--border-grey);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.game-card.hidden {
  display: none;
}

.game-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: var(--primary-green);
  box-shadow: 0 10px 25px rgba(106, 168, 79, 0.15);
}

.game-image-container {
  position: relative;
  aspect-ratio: 3/4;
  background: #000;
  overflow: hidden;
}

.game-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.game-card:hover .game-img {
  filter: brightness(1.1);
}

.game-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(8, 9, 12, 0.8);
  border: 1px solid var(--primary-green);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-white);
  text-transform: uppercase;
}

.game-info {
  padding: 16px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.game-info h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-white);
}

.game-info p {
  font-size: 0.8rem;
  color: var(--text-gray);
  line-height: 1.4;
}

/* ==========================================================================
   BENEFITS SECTION
   ========================================================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit-card {
  background: var(--card-bg);
  border: 1px solid var(--border-grey);
  border-radius: var(--border-radius-md);
  padding: 30px;
  transition: var(--transition-smooth);
}

.benefit-card:hover {
  border-color: var(--primary-green);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(106,168,79,0.1);
}

.benefit-icon-wrapper {
  width: 50px;
  height: 50px;
  background: rgba(106, 168, 79, 0.1);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}

.benefit-card:hover .benefit-icon-wrapper {
  background: var(--primary-green);
  color: var(--text-white);
  box-shadow: 0 0 15px var(--primary-green);
}

.benefit-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

.benefit-card h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--text-gray);
}

/* ==========================================================================
   OFFER / PRICE SECTION
   ========================================================================== */
/* Offer Section Header */
.offer-header {
  margin-bottom: 50px;
}

.offer-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.badge-limited {
  display: inline-block;
  background: var(--primary-green);
  color: var(--deep-black);
  padding: 6px 20px;
  font-size: 0.85rem;
  font-weight: 800;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.15em;
  box-shadow: 0 0 15px rgba(106,168,79,0.4);
}

.offer-warning {
  color: var(--text-white);
  font-size: 1rem;
  margin-bottom: 30px;
}

/* Countdown */
.countdown-container {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}

.countdown {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #000000;
  padding: 16px 32px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-grey);
}

.timer-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timer-num {
  font-family: var(--font-mono);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--bright-green);
  text-shadow: 0 0 10px rgba(124, 252, 0, 0.4);
  line-height: 1;
}

.timer-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-top: 4px;
  letter-spacing: 0.05em;
}

.timer-colon {
  font-family: var(--font-mono);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--bright-green);
  text-shadow: 0 0 10px rgba(124, 252, 0, 0.4);
  animation: blink 1s step-start infinite;
  line-height: 1;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* ==========================================================================
   PRICING GRID — TWO PLANS SIDE BY SIDE
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 960px;
  margin: 0 auto;
  align-items: stretch;
}

/* --- Base Plan Card --- */
.plan-card {
  position: relative;
  background: linear-gradient(145deg, #0d1219, #080a0d);
  border-radius: var(--border-radius-lg);
  padding: 40px 32px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  transition: var(--transition-smooth);
}

/* --- PLAN BASIC (opaco / dimmed) --- */
.plan-basic {
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.6;
  transform: scale(0.96);
}

.plan-basic:hover {
  opacity: 0.8;
  transform: scale(0.98);
}

/* --- PLAN PREMIUM (highlighted) --- */
.plan-premium {
  border: 2px solid var(--primary-green);
  box-shadow:
    0 0 30px rgba(106, 168, 79, 0.25),
    0 20px 50px rgba(106, 168, 79, 0.15),
    inset 0 1px 0 rgba(106, 168, 79, 0.2);
  transform: scale(1.04);
}

.plan-premium:hover {
  box-shadow:
    0 0 40px rgba(106, 168, 79, 0.35),
    0 25px 60px rgba(106, 168, 79, 0.2),
    inset 0 1px 0 rgba(106, 168, 79, 0.3);
  transform: scale(1.06);
}

.plan-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center top, rgba(106, 168, 79, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

/* "MAIS VENDIDO" floating badge */
.plan-best-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  color: var(--text-white);
  padding: 6px 24px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 4px 15px rgba(106, 168, 79, 0.5);
  z-index: 2;
  white-space: nowrap;
}

/* Plan header tags */
.plan-header-tag {
  display: inline-block;
  padding: 5px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  border-radius: 50px;
  margin-bottom: 16px;
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-gray);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.plan-tag-premium {
  background: rgba(106, 168, 79, 0.15);
  color: var(--primary-green);
  border-color: rgba(106, 168, 79, 0.3);
}

/* Plan Title */
.plan-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 10px;
}

.plan-premium .plan-title {
  font-size: 1.8rem;
}

/* Plan Description */
.plan-desc {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 320px;
}

/* Plan Feature List */
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  width: 100%;
  text-align: left;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 0.9rem;
  color: var(--text-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--primary-green);
}

.plan-feature-disabled {
  opacity: 0.4;
}

.plan-feature-disabled svg {
  color: #e74c3c !important;
}

.plan-feature-disabled span {
  text-decoration: line-through;
  color: var(--text-gray) !important;
}

.plan-premium .plan-features li svg {
  color: var(--bright-green);
  filter: drop-shadow(0 0 3px rgba(124, 252, 0, 0.3));
}

/* Plan Price Area */
.plan-price-area {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.plan-price-old {
  font-size: 1rem;
  color: var(--text-gray);
  text-decoration: line-through;
}

.plan-price-value {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  margin-top: 4px;
}

.plan-currency {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-white);
  margin-top: 8px;
}

.plan-amount {
  font-size: 4rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 0.9;
}

.plan-cents {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-white);
  margin-top: 6px;
}

/* Premium price glow */
.plan-price-highlight .plan-amount {
  font-size: 5rem;
  color: var(--text-white);
  text-shadow: 0 0 20px rgba(106, 168, 79, 0.3);
}

.plan-price-highlight .plan-currency,
.plan-price-highlight .plan-cents {
  color: var(--primary-green);
}

.plan-payment-info {
  font-size: 0.82rem;
  color: var(--text-gray);
  margin-top: 4px;
}

.plan-discount-tag {
  display: inline-block;
  background: rgba(106, 168, 79, 0.15);
  color: var(--bright-green);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  border: 1px solid rgba(106, 168, 79, 0.3);
  margin-top: 6px;
  letter-spacing: 0.03em;
}

/* Plan Buttons */
.btn-outline-plan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-md);
  background: transparent;
  color: var(--text-gray);
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn-outline-plan:hover {
  border-color: var(--primary-green);
  color: var(--primary-green);
  background: rgba(106, 168, 79, 0.05);
}

.plan-premium .btn {
  width: 100%;
  margin-top: auto;
}

/* Pulse Animation CTA */
.pulse-animation {
  position: relative;
  animation: subtle-pulse 2s infinite;
}

@keyframes subtle-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

/* Trust Badges (shared below both plans) */
.checkout-trust {
  display: flex;
  justify-content: center;
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  margin-top: 40px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-gray);
}

.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--primary-green);
}

/* ==========================================================================
   WARRANTY SECTION
   ========================================================================== */
.warranty-card {
  display: flex;
  align-items: center;
  gap: 40px;
  background: var(--card-bg);
  border: 1px solid var(--border-grey);
  border-radius: var(--border-radius-md);
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.warranty-badge {
  width: 80px;
  height: 80px;
  background: rgba(106, 168, 79, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  flex-shrink: 0;
  border: 1px solid rgba(106,168,79,0.2);
}

.shield-icon {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 0 10px var(--primary-green));
}

.warranty-info h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.warranty-info p {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-accordion-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border-grey);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: rgba(255,255,255,0.15);
}

.faq-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-white);
  transition: var(--transition-smooth);
}

.faq-trigger:hover {
  color: var(--primary-green);
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--text-gray);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active {
  border-color: var(--primary-green);
}

.faq-item.active .faq-trigger {
  color: var(--primary-green);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--primary-green);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content-inner {
  padding: 0 24px 20px 24px;
  font-size: 0.95rem;
  color: var(--text-gray);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 16px;
}

/* ==========================================================================
   CTA FINAL SECTION
   ========================================================================== */
.cta-final-section {
  background: linear-gradient(180deg, var(--deep-black) 0%, rgba(106, 168, 79, 0.05) 100%);
  border-top: 1px solid rgba(255,255,255,0.02);
}

.cta-final-section h2 {
  font-size: 2.3rem;
  margin-bottom: 12px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
  background: #040507;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-left {
  max-width: 700px;
}

.footer-left p {
  font-size: 0.85rem;
  color: var(--text-gray);
}

.footer-disclaimer {
  font-size: 0.75rem !important;
  color: rgba(255, 255, 255, 0.55) !important;
  margin-top: 12px;
  line-height: 1.4;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-link {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.footer-link:hover {
  color: var(--primary-green);
}

/* ==========================================================================
   SOCIAL PROOF SECTION
   ========================================================================== */
.social-proof-section {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.proof-images-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.proof-image-card {
  background: var(--card-bg);
  border: 1px solid var(--border-grey);
  border-radius: var(--border-radius-md);
  padding: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
  overflow: hidden;
}

.proof-image-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-green);
  box-shadow: 0 15px 30px rgba(106, 168, 79, 0.2);
}

.proof-img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-sm);
  display: block;
  cursor: zoom-in;
}

/* Image Lightbox Modal */
.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(8, 9, 12, 0.95);
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  padding: 20px;
}

.modal-wrapper {
  position: relative;
  max-width: 650px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  display: block;
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--border-radius-md);
  border: 2px solid var(--primary-green);
  box-shadow: 0 0 40px rgba(106, 168, 79, 0.4);
  animation: zoom-in 0.3s ease-out;
}

@keyframes zoom-in {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: var(--text-white);
  font-size: 3rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
  z-index: 10000;
  line-height: 1;
}

.modal-close:hover {
  color: var(--primary-green);
  transform: rotate(90deg);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Large screens and desktop hover effects */
@media (min-width: 1024px) {
  /* Scroll-triggered reveal animations class definitions */
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .fade-in.reveal {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Medium Screens (Tablets / Laptops) */
@media (max-width: 1023px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-benefits-grid {
    max-width: 500px;
    margin: 0 auto 30px auto;
  }

  .hero-actions {
    align-items: center;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 400px;
  }

  .hero-visual {
    margin-top: 20px;
  }

  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .implication-boxes {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .payoff-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .payoff-visual {
    order: -1;
  }

  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-images-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
    gap: 20px;
  }

  .pricing-grid {
    gap: 24px;
    max-width: 800px;
  }

  .plan-premium {
    transform: scale(1.02);
  }

  .plan-basic {
    transform: scale(0.97);
  }

  .offer-header h2 {
    font-size: 2rem;
  }
}

/* Small Screens (Mobile Phones) */
@media (max-width: 767px) {
  .glow-orb {
    display: none;
  }

  .main-header {
    height: 70px;
  }

  .desktop-nav {
    display: none;
  }

  #header-cta {
    display: none;
  }

  .logo {
    font-size: 1.15rem;
  }

  .hero-section {
    padding: 110px 0 60px 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-benefits-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: left;
  }

  .section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .implication-card {
    padding: 30px 20px;
  }

  .implication-content h2 {
    font-size: 1.8rem;
  }

  .games-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 420px;
    margin: 0 auto;
  }

  .plan-premium {
    order: -1;
    transform: scale(1);
  }

  .plan-premium:hover {
    transform: scale(1.01);
  }

  .plan-basic {
    transform: scale(1);
    opacity: 0.55;
  }

  .plan-basic:hover {
    transform: scale(1);
    opacity: 0.7;
  }

  .plan-card {
    padding: 32px 20px 28px;
  }

  .plan-title {
    font-size: 1.4rem;
  }

  .plan-premium .plan-title {
    font-size: 1.5rem;
  }

  .plan-amount {
    font-size: 3.5rem;
  }

  .plan-price-highlight .plan-amount {
    font-size: 4.2rem;
  }

  .plan-features li {
    font-size: 0.85rem;
    padding: 8px 0;
  }

  .offer-header h2 {
    font-size: 1.8rem;
  }

  .checkout-trust {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .warranty-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .footer-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    width: 100%;
  }

  .proof-images-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 450px;
    margin: 0 auto;
  }
}

/* ==========================================================================
   DASHBOARD MOCKUP IN MONITOR SCREEN (NATIVE HTML/CSS)
   ========================================================================== */
.dashboard-mockup {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: #08090c;
  font-family: var(--font-primary);
  font-size: 2.2cqw;
  color: var(--text-gray);
  text-align: left;
  user-select: none;
}

.db-sidebar {
  width: 27%;
  background-color: #061f12;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  padding: 2.2cqw 1.6cqw;
  box-sizing: border-box;
  justify-content: space-between;
}

.db-logo {
  display: flex;
  align-items: center;
  gap: 1.2cqw;
  font-weight: 800;
  font-size: 2cqw;
  color: var(--text-white);
  letter-spacing: 0.5px;
}

.db-logo-img {
  width: 2.8cqw;
  height: 2.8cqw;
  object-fit: contain;
}

.db-nav {
  display: flex;
  flex-direction: column;
  gap: 0.8cqw;
  margin-top: 3cqw;
  flex-grow: 1;
}

.db-nav-item {
  display: flex;
  align-items: center;
  gap: 1.2cqw;
  padding: 1.2cqw 1.6cqw;
  border-radius: 0.8cqw;
  color: var(--text-gray);
  font-size: 1.8cqw;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.db-nav-item svg {
  width: 2.4cqw;
  height: 2.4cqw;
  stroke: currentColor;
  flex-shrink: 0;
}

.db-nav-item.active {
  background-color: rgba(106, 168, 79, 0.15);
  color: #7cfc00;
  font-weight: 600;
}

.db-nav-item:hover:not(.active) {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
}

.db-user {
  display: flex;
  align-items: center;
  gap: 1.2cqw;
  padding-top: 1.6cqw;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.db-avatar {
  width: 3.2cqw;
  height: 3.2cqw;
  border-radius: 50%;
  background-color: var(--primary-green);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6cqw;
  font-weight: 700;
}

.db-username {
  font-size: 1.6cqw;
  color: var(--text-gray);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 12cqw;
}

.db-main {
  width: 73%;
  padding: 2.4cqw;
  display: flex;
  flex-direction: column;
  gap: 2cqw;
  box-sizing: border-box;
}

.db-banner {
  background: linear-gradient(135deg, #093219 0%, #0c1410 100%);
  border: 1px solid var(--primary-green);
  border-radius: 1.6cqw;
  padding: 2cqw 2.8cqw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  box-shadow: 0 4px 15px rgba(106, 168, 79, 0.15);
}

.db-banner-content h2 {
  font-size: 3cqw;
  font-weight: 800;
  color: #7cfc00;
  margin: 0;
  line-height: 1.1;
  letter-spacing: 0.5px;
  text-shadow: 0 0 8px rgba(124, 252, 0, 0.3);
}

.db-banner-content p {
  font-size: 1.6cqw;
  font-weight: 700;
  color: var(--text-white);
  margin: 0.4cqw 0 0 0;
  letter-spacing: 1px;
}

.db-banner-covers {
  display: flex;
  gap: 0.8cqw;
}

.db-mini-cover {
  width: 3.6cqw;
  height: 4.8cqw;
  object-fit: cover;
  border-radius: 0.6cqw;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.db-section-title {
  font-size: 1.8cqw;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: -0.4cqw;
}

.db-modules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6cqw;
}

.db-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-grey);
  border-radius: 1.6cqw;
  padding: 1.6cqw;
  display: flex;
  align-items: center;
  gap: 1.6cqw;
  transition: var(--transition-smooth);
}

.db-card:hover {
  border-color: var(--primary-green);
  background-color: rgba(106, 168, 79, 0.02);
}

.db-card-icon-box {
  width: 4.8cqw;
  height: 4.8cqw;
  background-color: rgba(106, 168, 79, 0.1);
  border-radius: 1.2cqw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #7cfc00;
  flex-shrink: 0;
}

.db-card-number {
  position: absolute;
  font-size: 1.4cqw;
  font-weight: 800;
  top: 0.2cqw;
  left: 0.4cqw;
  color: var(--text-white);
}

.db-card-icon {
  width: 2.4cqw;
  height: 2.4cqw;
  stroke: currentColor;
}

.db-card-info {
  display: flex;
  flex-direction: column;
  gap: 0.2cqw;
  min-width: 0;
}

.db-card-info h4 {
  font-size: 1.7cqw;
  font-weight: 700;
  color: var(--text-white);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.db-card-info p {
  font-size: 1.5cqw;
  color: var(--text-gray);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.db-whatsapp-btn {
  background-color: #25d366;
  color: var(--text-white);
  border: none;
  border-radius: 0.8cqw;
  font-size: 1.4cqw;
  font-weight: 700;
  padding: 0.4cqw 1.2cqw;
  cursor: pointer;
  margin-top: 0.4cqw;
  transition: var(--transition-smooth);
  width: fit-content;
}

.db-whatsapp-btn:hover {
  background-color: #1ebd59;
}
