/* =============================================
   ROBLOX ARGENTINA - DIAMANTITOS.COM.AR
   Premium High-Scale, Milky Frosted Glass & Responsive
   ============================================= */

:root {
  --bg-dark: #06090e;
  --bg-modal: #0b0f1a;
  --green-primary: #54ab1e;
  --green-bright: #65ac21;
  --green-text: #54b927;
  --white: #ffffff;
  --font: 'Poppins', sans-serif;
}

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

body { 
  font-family: var(--font); 
  background: var(--bg-dark); 
  color: var(--white); 
  overflow-x: hidden; 
}

/* =============================================
   NAVBAR & HEADER LINKS
   ============================================= */
.navbar { 
  position: fixed; 
  top: 0; 
  width: 100%; 
  background: #190529; 
  align-content: center;
  backdrop-filter: blur(10px);
  height: 12.5vh;
  z-index: 1000; 
  transition: all 0.3s ease; 
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

.navbar.scrolled { 
  background: rgba(25, 5, 41, 0.95); 
  backdrop-filter: blur(12px); 
  box-shadow: 0 4px 20px rgba(0,0,0,0.3); 
}

.nav-container { 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 20px;
  width: 100%; 
}

.logo-container { 
  display: flex; 
  align-items: center; 
  color: #fff; 
  font-size: 1.5rem; 
  font-weight: bold; 
  text-decoration: none; 
}

.logo-container::before {
  margin-right: 8px;
  font-size: 1.8rem;
}

.logo-image { 
  height: 6vh; 
  width: auto; 
}

.nav-menu { 
  display: flex; 
  list-style: none; 
  gap: 30px; 
  align-items: center; 
}

.nav-link { 
  color: #fff; 
  text-decoration: none; 
  font-weight: 500; 
  font-size: 1rem; 
  transition: all 0.3s ease; 
  padding: 8px 16px;
  border-radius: 25px;
}

.nav-link:hover { 
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.nav-toggle { 
  display: none; 
  background: none; 
  border: none; 
  color: #54ab1e; 
  font-size: 1.5rem; 
  cursor: pointer; 
  padding: 5px; 
  transition: all 0.3s ease; 
}

.nav-toggle:hover {
  transform: scale(1.1);
}

/* =============================================
   HERO AREA & BRIGHT BACKGROUND WITH BOTTOM SHADOW
   ============================================= */
.hero { 
  position: relative; 
  min-height: 100vh; 
  padding-top: 180px; 
  padding-bottom: 20px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  overflow: hidden;
}

.hero-bg { 
  position: absolute; 
  inset: 0; 
  z-index: -1; 
  overflow: hidden; 
}

/* Extremely vibrant background letting the sky and forest pop */
.bg-img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  object-position: center center;
  opacity: 0.9; 
  filter: brightness(0.85) contrast(1.05); 
}

/* Gradient overlay INSIDE the bg container so it never covers content */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(to bottom, rgba(6, 9, 14, 0.35) 0%, rgba(6, 9, 14, 0.15) 18%, rgba(6, 9, 14, 0.1) 35%, rgba(6, 9, 14, 0.55) 70%, #06090e 100%);
  z-index: 2;
}

.hero-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

/* Expanded container width to fit massive pricing cards side-by-side */
.hero-content-left {
  flex: 1;
  max-width: 720px;
  position: relative;
  z-index: 3;
}

/* Big absolutely-positioned character sitting grounded behind the right card */
.hero-image {
  position: absolute;
  right: 2%;
  bottom: -55px; /* Stand low so boots sit behind cards container */
  width: 46%;
  max-width: 630px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
}

/* =============================================
   MASSIVE TYPOGRAPHY
   ============================================= */
.text-white { color: var(--white); }
.text-green { color: var(--green-text); }
.text-huge { 
  font-size: clamp(6.9rem, 11.5vw, 11.5rem); 
  font-weight: 900; 
  line-height: 0.85; 
  letter-spacing: -1.5px; 
  text-shadow: 0 4px 30px rgba(84, 171, 30, 0.45); 
  display: block; 
  margin-top: -2px; 
  margin-bottom: 5px;
}

.hero-title { 
  font-size: clamp(3.2rem, 5.7vw, 4.8rem); 
  font-weight: 800; 
  line-height: 1.05; 
  margin-bottom: 2px; 
}

.hero-subtitle { 
  font-size: clamp(1.7rem, 3.4vw, 2.75rem); 
  font-weight: 700; 
  letter-spacing: 0.5px; 
  margin-bottom: 25px; 
  line-height: 1.3; 
}

/* =============================================
   ENLARGED TRUST BADGES
   ============================================= */
.trust-badges { 
  display: flex; 
  gap: 45px; 
  margin-bottom: 35px; 
  flex-wrap: wrap; 
}

.trust-badge { 
  display: flex; 
  align-items: center; 
  gap: 14px; 
  font-size: 1.3rem; 
  font-weight: 800; 
  line-height: 1.25; 
  letter-spacing: 0.5px;
}

.trust-badge img { 
  width: 42px; 
  height: 42px; 
  filter: drop-shadow(0 0 10px rgba(84, 171, 30, 0.65)); 
}

/* =============================================
   SECTION DIVIDER
   ============================================= */
.section-divider { 
  display: flex; 
  align-items: center; 
  gap: 15px; 
  margin: 0 0 12px 0; 
  color: var(--white); 
  font-weight: 700; 
  width: 100%; 
  justify-content: flex-start;
}

.section-divider .line { 
  height: 1px; 
  width: 32px; 
  background: var(--green-primary); 
  opacity: 1; 
}

.section-divider .text { 
  font-size: 1.05rem; 
  letter-spacing: 3px; 
  color: rgba(255,255,255,0.85); 
  display: flex; 
  align-items: center; 
  font-weight: 800;
}

.divider-line-1, .divider-line-2 { 
  display: inline-block; 
}

.divider-line-2 { 
  margin-left: 6px; 
}

/* =============================================
   VISIBILIDAD INSTANTÁNEA Y ESTABLE
   ============================================= */
.hero-title, .hero-subtitle, .trust-badge, .section-divider, .pricing-card {
  opacity: 1 !important;
  transform: none !important;
}

/* =============================================
   PREMIUM MILKY FROSTED GLASS (MILKY GLASSMORPHISM)
   ============================================= */
.liquid-crystal {
  background: rgba(14, 16, 20, 0.92); 
  border: 1px solid rgba(84, 171, 30, 0.5); 
  backdrop-filter: blur(14px); 
  -webkit-backdrop-filter: blur(14px);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.pricing-grid { 
  display: flex; 
  gap: 25px; 
  width: 100%; 
}

/* CTA Button inside each card */
.card-btn {
  background: var(--green-primary);
  color: #fff;
  padding: 8px 22px;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
  margin-left: 15px;
}

.pricing-card:hover .card-btn {
  background: var(--green-bright);
  transform: scale(1.05);
}

.pricing-card {
  display: flex;
  align-items: center;
  padding: 28px 35px;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
  flex: 1;
  min-height: 160px;
  border-radius: 24px;
}

.pricing-card:hover {
  transform: translateY(-6px);
  background: rgba(24, 28, 34, 0.95);
  border-color: rgba(84, 171, 30, 0.5);
  box-shadow: 0 16px 45px rgba(84, 171, 30, 0.25), inset 0 0 0 1px rgba(84, 171, 30, 0.35);
}

.pricing-card::before {
  content: ''; 
  position: absolute; 
  inset: 0; 
  background: radial-gradient(circle at top right, rgba(84, 171, 30, 0.08) 0%, transparent 60%); 
  pointer-events: none;
}

/* Massive card contents */
.card-icon { 
  width: 92px; 
  height: 92px; 
  filter: drop-shadow(0 4px 15px rgba(84, 171, 30, 0.45)); 
  flex-shrink: 0; 
}

.card-content { 
  display: flex; 
  flex: 1; 
  margin-left: 25px; 
  align-items: center; 
  justify-content: space-between; 
}

.card-info { 
  display: flex; 
  flex-direction: column; 
}

.card-info h2 { 
  font-size: 3.2rem; 
  font-weight: 900; 
  line-height: 1; 
  color: #fff; 
}

.card-info h3 { 
  font-size: 1.2rem; 
  color: var(--green-text); 
  font-weight: 800; 
  letter-spacing: 1px; 
  margin-top: 4px;
}

/* Giant price pill button */
.card-price {
  background: var(--green-primary);
  color: #fff;
  padding: 10px 32px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 1.45rem;
  box-shadow: 0 6px 20px rgba(84,171,30,0.4);
  display: inline-block;
  text-align: center;
  transition: background 0.2s, transform 0.2s;
}

.pricing-card:hover .card-price {
  background: var(--green-bright);
  transform: scale(1.05);
}

/* =============================================
   PC SPECIFIC LAYOUT ADJUSTMENTS
   ============================================= */
@media (min-width: 992px) {
  .card-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-left: 30px;
  }
  
  .card-info h2 {
    font-size: 3.4rem;
    line-height: 0.95;
  }
  
  .card-info h3 {
    font-size: 1.25rem;
    margin-bottom: 6px;
  }
  
  .card-price {
    display: inline-block;
  }

  .card-btn {
    display: none;
  }
}

/* =============================================
   STABLE DIRECT SCREEN FLOATING ROBUX (ROTATED & VERY SOFT FLOAT)
   ============================================= */
.floating-robux {
  position: absolute;
  filter: drop-shadow(0 6px 18px rgba(84, 171, 30, 0.55));
  pointer-events: none;
  z-index: 2;
}

/* Floating robux clustered near the character */
.robux-1 {
  top: 15%;
  right: 12%;
  width: 85px;
  height: 85px;
  animation: float1 7.5s ease-in-out infinite;
}

.robux-2 {
  top: 30%;
  right: 15%;
  width: 58px;
  height: 58px;
  animation: float2 6.5s ease-in-out infinite;
}

.robux-3 {
  top: 22%;
  right: 18%;
  width: 68px;
  height: 68px;
  animation: float3 8.5s ease-in-out infinite;
}

/* Premium character with floating animation */
.character-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 45px rgba(0,0,0,0.65));
  animation: characterFloat 6.5s ease-in-out infinite;
}

/* Ultra-smooth, slow keyframes maintaining unique 3D tilted rotations */
@keyframes float1 {
  0%, 100% { transform: translateY(0) rotate(15deg); }
  50% { transform: translateY(-8px) rotate(18deg); }
}

@keyframes float2 {
  0%, 100% { transform: translateY(0) rotate(-12deg); }
  50% { transform: translateY(-8px) rotate(-15deg); }
}

@keyframes float3 {
  0%, 100% { transform: translateY(0) rotate(8deg); }
  50% { transform: translateY(-8px) rotate(5deg); }
}

/* Smooth slow character float */
@keyframes characterFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* =============================================
   RESPONSIVE DESIGN (MOBILE & TABLET)
   ============================================= */
@media (max-width: 991px) {
  .navbar {
    padding: 10px 16px;
  }
  
  .logo-image {
    height: 5vh;
  }

  .logo-container {
    position: fixed;
    left: 5vw;
  }
  
  .nav-menu {
    position: fixed;
    top: 12.5vh;
    left: -100%;
    width: 100%;
    height: calc(100vh - 12.5vh);
    background: #190529;
    flex-direction: column;
    justify-content: flex-start;
    align-items: end;
    padding-top: 50px;
    transition: left 0.5s ease;
    gap: 10px;
    z-index: 999;
    margin: 0;
  }
  
  .nav-menu.active { 
    left: 0; 
  }
  
  .nav-link { 
    font-size: 1.2rem; 
    padding: 15px 30px;
    width: 80%;
    text-align: center;
    margin: 5px 0;
    font-weight: 700;
  }

  .nav-toggle {
    display: block;
    position: fixed;
    right: 5vw;
  }

  /* Hero fills exactly the viewport */
  .hero {
    min-height: 100dvh;
    min-height: 100vh;
    height: 100dvh;
    height: 100vh;
    padding-top: 50px;
    padding-bottom: 12px;
    align-items: stretch;
  }

  .hero-bg::after {
    background: 
      linear-gradient(to bottom, rgba(6, 9, 14, 0.8) 0%, rgba(6, 9, 14, 0.4) 18%, rgba(6, 9, 14, 0.2) 35%, rgba(6, 9, 14, 0.75) 65%, #06090e 90%);
  }

  .hero-container {
    flex-direction: column;
    padding-top: 12px;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    gap: 0;
  }
  
  .hero-content-left {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    gap: 0;
  }

  /* Typography Mobile */
  .hero-title {
    font-size: 2.3rem;
    line-height: 1;
    margin-bottom: 0;
  }
  .text-huge {
    font-size: 5rem;
    line-height: 0.85;
    margin-bottom: 2px;
    margin-top: 0;
  }
  .hero-subtitle {
    font-size: 1.2rem;
    margin-top: 3px;
    margin-bottom: 10px;
    line-height: 1.25;
  }

  /* Character: right side, overlapping badges area */
  .hero-image {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-55%);
    width: 48%;
    max-width: 230px;
    z-index: 2;
    opacity: 1;
    pointer-events: none;
    bottom: auto;
  }
  
  .character-img { 
    width: 100%; 
    height: auto; 
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.6)); 
    animation: characterFloat 6.5s ease-in-out infinite;
  }

  .floating-robux { 
    display: none; 
  }

  /* Badges - compact, left-aligned */
  .trust-badges {
    flex-direction: column;
    gap: 6px;
    margin-bottom: 10px;
    position: relative;
    z-index: 3;
    max-width: 55%;
  }
  
  .trust-badge {
    gap: 8px;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.15;
    text-align: left;
  }

  .trust-badge img {
    width: 22px;
    height: auto;
  }

  /* Section Divider - tight */
  .section-divider {
    flex-direction: column;
    gap: 2px;
    align-items: center;
    margin-bottom: 8px;
    margin-top: 4px;
  }
  
  .section-divider .line {
    display: none;
  }
  
  .section-divider .text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    width: 100%;
    letter-spacing: 0;
  }
  
  .divider-line-1, .divider-line-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    font-size: 1rem;
    letter-spacing: 1px;
    font-weight: 800;
  }
  
  .divider-line-1::before, .divider-line-1::after,
  .divider-line-2::before, .divider-line-2::after {
    content: '';
    height: 1px;
    width: 20px;
    background: var(--green-primary);
    opacity: 1;
  }

  /* Cards - compact */
  .pricing-grid { 
    flex-direction: column; 
    gap: 8px; 
  }
  
  .pricing-card { 
    padding: 10px 16px; 
    border-radius: 14px;
    min-height: auto;
  }
  
  .card-icon { 
    width: 42px; 
    height: 42px; 
  }
  
  .card-content { 
    margin-left: 10px; 
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  
  .card-info h2 { 
    font-size: 1.7rem; 
  }
  
  .card-info h3 { 
    font-size: 0.85rem; 
    margin-top: 0;
  }
  
  /* Price text on far right */
  .card-price {
    background: transparent;
    color: var(--green-text);
    font-weight: 850;
    font-size: 1.4rem;
    padding: 0;
    box-shadow: none;
    margin-left: auto;
  }
  
  .pricing-card:hover .card-price {
    background: transparent;
    transform: none;
  }

  .card-btn {
    padding: 6px 14px;
    font-size: 0.72rem;
    margin-left: auto;
    letter-spacing: 1px;
  }
}

/* =============================================
   MODALS (PURCHASE & SUCCESS)
   ============================================= */
.modal-overlay { 
  position: fixed; 
  inset: 0; 
  background: rgba(3, 8, 3, 0.42); /* Lighter and green-tinted, lets the background shine through */
  backdrop-filter: blur(5px); 
  -webkit-backdrop-filter: blur(5px);
  z-index: 2000; 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  opacity: 0; 
  pointer-events: none; 
  transition: opacity 0.3s ease; 
  padding: 20px; 
  overflow: hidden; /* Keep blobs inside overlay */
}

.modal-overlay.active { 
  opacity: 1; 
  pointer-events: all; 
}

/* Glassmorphic background glowing blobs for Liquid Crystal effect */
.glass-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
}

.blob-1 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(132, 220, 40, 0.6) 0%, rgba(132, 220, 40, 0) 70%);
  top: 15%;
  left: 15%;
  animation: floatBlob1 14s infinite alternate ease-in-out;
}

.blob-2 {
  width: 325px;
  height: 325px;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.45) 0%, rgba(0, 242, 254, 0) 70%);
  bottom: 10%;
  right: 15%;
  animation: floatBlob2 16s infinite alternate ease-in-out;
}

.blob-3 {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(132, 220, 40, 0.4) 0%, rgba(132, 220, 40, 0) 70%);
  top: 35%;
  right: 30%;
  animation: floatBlob3 11s infinite alternate ease-in-out;
}

@keyframes floatBlob1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, -70px) scale(1.15); }
  100% { transform: translate(-30px, 40px) scale(0.9); }
}

@keyframes floatBlob2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-60px, 50px) scale(0.9); }
  100% { transform: translate(40px, -40px) scale(1.15); }
}

@keyframes floatBlob3 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 40px) scale(1.1); }
  100% { transform: translate(-50px, -50px) scale(0.9); }
}

.modal { 
  width: 100%; 
  max-width: 420px; 
  padding: 40px 28px 32px; 
  position: relative; 
  text-align: center; 
  border-radius: 36px; /* Más redondeado como la foto de referencia */
  background: linear-gradient(135deg, rgba(84, 171, 30, 0.25) 0%, rgba(12, 26, 12, 0.52) 100%); /* Gradiente verde translúcido ligeramente más denso para tapar textos traseros */
  border: 2.5px solid rgba(132, 220, 40, 0.52); /* Borde verde translúcido grueso e iluminado */
  backdrop-filter: blur(35px) saturate(155%); /* Subimos el blur de 20px a 35px para disolver el texto de atrás */
  -webkit-backdrop-filter: blur(35px) saturate(155%);
  box-shadow: 
    0 30px 65px rgba(0, 0, 0, 0.45),
    0 0 50px rgba(84, 171, 30, 0.25),
    inset 0 1.5px 3px rgba(255, 255, 255, 0.4), /* Brillo de cristal en borde superior interno */
    inset 0 0 25px rgba(132, 220, 40, 0.18); /* Resplandor interno verde rico */
  overflow: hidden;
  z-index: 2; /* Encima de los blobs */
}

.modal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, transparent 100%);
  border-radius: 36px 36px 0 0;
  pointer-events: none;
}

.modal-close { 
  position: absolute; 
  top: 18px; 
  right: 22px; 
  background: transparent; 
  color: rgba(255,255,255,0.5); 
  font-size: 1.5rem; 
  transition: color 0.2s, transform 0.2s; 
  border: none; 
  cursor: pointer; 
}

.modal-close:hover { 
  color: #fff; 
  transform: scale(1.1);
}

.modal-header { 
  margin-bottom: 28px; 
}

.modal-header h2 { 
  font-size: 1.45rem; 
  font-weight: 800; 
  letter-spacing: 1.5px; 
  color: #fff; 
}

.modal-header h3 { 
  font-size: 2.2rem; 
  font-weight: 900; 
  margin: 6px 0 10px 0; 
  color: var(--green-text); 
  text-shadow: 0 4px 15px rgba(84, 171, 30, 0.25);
}

.modal-header p, .modal-info-text { 
  font-size: 0.95rem; 
  color: rgba(255, 255, 255, 0.9); /* Brighter white for high legibility on green glass */
  line-height: 1.55;
  margin-top: 10px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); /* Soft shadow for perfect contrast */
}

.purchase-form { 
  display: flex; 
  flex-direction: column; 
  gap: 16px; 
}

.input-group { 
  position: relative; 
  display: flex; 
  align-items: center; 
  width: 100%;
}

.input-icon { 
  position: absolute; 
  left: 16px; 
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.input-icon svg {
  stroke: var(--green-primary);
}

.input-group input { 
  width: 100%; 
  padding: 18px 18px 18px 52px; 
  border-radius: 16px; 
  border: 2px solid rgba(0, 0, 0, 0.08); 
  background: rgba(255, 255, 255, 0.95); 
  color: #1e1e1e; 
  font-size: 1.05rem; 
  font-weight: 500;
  outline: none; 
  transition: all 0.25s ease; 
  font-family: var(--font); 
}

.input-group input::placeholder {
  color: #888;
  font-weight: 400;
}

.input-group input:focus { 
  background: #ffffff;
  border-color: var(--green-primary); 
  box-shadow: 0 0 0 4px rgba(84, 171, 30, 0.22);
}

.btn-submit { 
  width: 100%; 
  padding: 18px; 
  background: linear-gradient(135deg, var(--green-bright) 0%, var(--green-primary) 100%); 
  color: #ffffff; 
  font-size: 1.2rem; 
  font-weight: 700; 
  border-radius: 16px; 
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s; 
  margin-top: 8px; 
  cursor: pointer; 
  border: none; 
  letter-spacing: 0.5px; 
  box-shadow: 0 6px 25px rgba(84, 171, 30, 0.45); 
  font-family: var(--font);
}

.btn-submit:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 6px 25px rgba(84, 171, 30, 0.55); 
  filter: brightness(1.08);
}

.btn-submit:active {
  transform: translateY(0);
}

.modal-footer { 
  margin-top: 24px; 
  font-size: 0.85rem; 
  color: rgba(255,255,255,0.5); 
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-footer small {
  display: flex;
  align-items: center;
  gap: 4px;
}

.modal-footer svg {
  stroke: rgba(255,255,255,0.4);
}

/* =============================================
   SUCCESS MODAL SPECIFICS
   ============================================= */
.success-modal {
  position: relative;
  overflow: visible; /* Let the Robux float outside the border */
}

.success-floating-robux {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 65px;
  height: 65px;
  filter: drop-shadow(0 6px 15px rgba(84, 171, 30, 0.55));
  transform: rotate(15deg);
  animation: successFloat 3.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes successFloat {
  0%, 100% { transform: rotate(15deg) translateY(0); }
  50% { transform: rotate(19deg) translateY(-8px); }
}

.success-icon-container { 
  width: 80px; 
  height: 80px; 
  background: var(--green-primary); 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  margin: 0 auto 18px auto; 
  box-shadow: 0 6px 20px rgba(84, 171, 30, 0.45);
}

.success-icon-container svg {
  stroke: #ffffff;
}

.success-modal h3 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.success-modal p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.95);
  line-height: 1.5;
  max-width: 280px;
  margin: 0 auto;
}

.success-character { 
  max-height: 180px; 
  width: auto;
  margin: 20px auto 0 auto; 
  display: block; 
  filter: drop-shadow(0 10px 25px rgba(0,0,0,0.5));
}

/* =============================================
   FOOTER (same as root)
   ============================================= */
.footer {
  background-color: #010101;
  display: block;
  padding: 40px 20px 30px;
}

.imgFooter, .textFooter {
  display: flex;
  justify-content: center;
}

.imgFooter img {
  height: 6vh;
  margin-bottom: 15px;
}

.textFooter a {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: opacity 0.2s;
}

.textFooter a:hover {
  opacity: 0.7;
}

.footer h4 {
  font-size: 0.85rem;
  font-weight: 500;
  color: white;
  margin-bottom: 5px;
}

.footer p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  gap: 4px;
}

@media (max-width: 991px) {
  .imgFooter img {
    width: 60%;
    height: auto;
    margin: 3vh 0;
  }
}

/* =============================================
   PC NAVBAR STYLE (matching root)
   ============================================= */
@media (min-width: 768px) {
  .navbar {
    background-color: #190529;
    width: 95.83%;
    margin: 25px auto 0 auto;
    left: 50%;
    height: 12.59vh;
    transform: translateX(-50%);
    border-radius: 22px;
    font-size: 20px;
  }

  .logo-image {
    height: 80%;
    position: fixed;
    left: 9.11vw;
  }

  .nav-menu {
    position: fixed;
    right: 9.11vw;
  }
}

/* =============================================
   NUEVAS SECCIONES (CÓMO COMPRAR, FAQ, CONTACTO)
   ============================================= */
.container-roblox {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  position: relative;
  z-index: 10;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: 1px;
  background: linear-gradient(135deg, var(--white) 30%, var(--green-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Pasos */
.steps-section-roblox {
  background: radial-gradient(circle at 10% 20%, rgba(84, 171, 30, 0.05) 0%, transparent 40%);
  border-top: 1px solid rgba(84, 171, 30, 0.1);
  border-bottom: 1px solid rgba(84, 171, 30, 0.1);
}

.step-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.step-card {
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(84, 171, 30, 0.15);
}

.step-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--green-primary);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: 0 6px 15px rgba(84, 171, 30, 0.35);
}

.step-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* FAQ Accordion */
.faq-section-roblox {
  background: radial-gradient(circle at 90% 80%, rgba(84, 171, 30, 0.05) 0%, transparent 40%);
  border-bottom: 1px solid rgba(84, 171, 30, 0.1);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item-roblox {
  background: rgba(11, 15, 26, 0.6);
  border: 1px solid rgba(84, 171, 30, 0.2);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item-roblox:hover {
  border-color: rgba(84, 171, 30, 0.4);
}

.faq-item-roblox.active {
  border-color: var(--green-primary);
  box-shadow: 0 4px 20px rgba(84, 171, 30, 0.1);
}

.faq-question {
  padding: 24px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-toggle-icon {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--green-text);
  transition: transform 0.3s ease;
}

.faq-item-roblox.active .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  padding: 0 24px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item-roblox.active .faq-answer {
  padding: 0 24px 24px 24px;
}

/* Contact */
.contact-section-roblox {
  background: radial-gradient(circle at 50% 50%, rgba(84, 171, 30, 0.08) 0%, transparent 50%);
  border-bottom: 1px solid rgba(84, 171, 30, 0.1);
}

.contact-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 32px;
  border-radius: 24px;
  text-align: center;
}

.contact-card p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  line-height: 1.6;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-contact:hover {
  transform: translateY(-3px);
}

.btn-contact.whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-contact.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(220, 39, 67, 0.3);
}

@media (max-width: 768px) {
  .container-roblox {
    padding: 50px 20px;
  }
  
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 32px;
  }

  .faq-question {
    padding: 18px;
    font-size: 1rem;
  }
  
  .faq-answer {
    padding: 0 18px;
  }

  .faq-item-roblox.active .faq-answer {
    padding: 0 18px 18px 18px;
  }
  
  .contact-card {
    padding: 32px 20px;
  }
  
  .contact-card p {
    font-size: 1rem;
  }
  
  .contact-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .btn-contact {
    width: 100%;
    justify-content: center;
  }
}
