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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 50%, #16213e 100%);
  color: #fff;
  min-height: 100vh;
  padding: 20px;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 0, 110, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 0, 110, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.pb-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ========== NAVBAR ========== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(20, 20, 40, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 0, 110, 0.3);
  border-radius: 10px;
  padding: 15px 30px;
  margin-bottom: 20px;
  position: sticky;
  top: 0;
}

.nav-logo {
  font-size: 1.3em;
  font-weight: bold;
  color: #ff006e;
  text-shadow: 0 0 10px rgba(255, 0, 110, 0.5);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: #ccc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: #00d4ff;
}

.nav-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffd700;
  font-weight: bold;
  font-size: 0.9em;
  animation: pulseText 1.5s infinite;
}

@keyframes pulseText {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.status-dot {
  width: 10px;
  height: 10px;
  background: #ffd700;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ========== HERO BANNER ========== */
.hero-banner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  background: linear-gradient(135deg, rgba(45, 45, 68, 0.9) 0%, rgba(31, 31, 46, 0.9) 100%);
  border: 2px solid #ff006e;
  border-radius: 20px;
  padding: 50px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(255, 0, 110, 0.3);
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 0, 110, 0.2) 0%, transparent 70%);
  animation: rotateGlow 10s linear infinite;
}

@keyframes rotateGlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff006e, #ff1493);
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 0.9em;
  margin-bottom: 20px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.hero-title {
  font-size: 3em;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-highlight {
  color: #ff006e;
  text-shadow: 0 0 20px rgba(255, 0, 110, 0.5);
}

.hero-subtitle {
  font-size: 1.1em;
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 30px;
}

.hero-price {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.price-old {
  text-decoration: line-through;
  color: #888;
  font-size: 1.2em;
}

.price-new {
  font-size: 2.5em;
  font-weight: bold;
  color: #00d4ff;
  text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.price-discount {
  background: #ff006e;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9em;
}

.hero-cta {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.cta-primary {
  background: linear-gradient(135deg, #ff006e, #ff1493);
  color: white;
  padding: 15px 35px;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  box-shadow: 0 5px 20px rgba(255, 0, 110, 0.5);
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 0, 110, 0.7);
}

.cta-primary.large {
  padding: 20px 50px;
  font-size: 1.3em;
}

.cta-secondary {
  background: transparent;
  color: #00d4ff;
  padding: 15px 35px;
  border: 2px solid #00d4ff;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  background: rgba(0, 212, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

/* Countdown */
.hero-countdown {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.hero-countdown p {
  color: #ffd700;
  margin-bottom: 10px;
  font-weight: bold;
}

.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.time-block {
  background: #1a1a2e;
  padding: 10px 15px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #ffd700;
}

.time-block span {
  display: block;
  font-size: 2em;
  font-weight: bold;
  color: #ffd700;
}

.time-block small {
  font-size: 0.7em;
  color: #888;
}

.time-separator {
  font-size: 2em;
  font-weight: bold;
  color: #ffd700;
}

/* Hero Image Area */
.hero-image-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-characters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.hero-char {
  font-size: 4em;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(255, 0, 110, 0.5));
}

.hero-char:nth-child(2) { animation-delay: 0.5s; }
.hero-char:nth-child(3) { animation-delay: 1s; }
.hero-char:nth-child(4) { animation-delay: 1.5s; }

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

.hero-image-text {
  color: #ffd700;
  font-weight: bold;
  font-size: 1.2em;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* ========== SECTIONS ========== */
.section-title {
  text-align: center;
  font-size: 2.2em;
  color: #fff;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.section-desc {
  text-align: center;
  color: #888;
  margin-bottom: 40px;
  font-size: 1.1em;
}

/* ========== BENEFITS ========== */
.benefits {
  margin-bottom: 60px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.benefit-card {
  background: linear-gradient(135deg, #2d2d44 0%, #1f1f2e 100%);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: #00d4ff;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.benefit-icon {
  font-size: 3em;
  margin-bottom: 15px;
}

.benefit-card h3 {
  color: #00d4ff;
  margin-bottom: 10px;
  font-size: 1.2em;
}

.benefit-card p {
  color: #aaa;
  font-size: 0.95em;
  line-height: 1.5;
}

/* ========== CHARACTER CARDS ========== */
.characters-preview {
  margin-bottom: 60px;
}

.characters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.character-card {
  background: linear-gradient(135deg, #2d2d44 0%, #1f1f2e 100%);
  border: 2px solid #ff006e;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 0, 110, 0.2);
  position: relative;
  overflow: hidden;
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 0, 110, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}

.character-card:hover .card-glow {
  opacity: 1;
}

.character-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 40px rgba(255, 0, 110, 0.5);
  border-color: #00d4ff;
}

.character-card.active {
  border-color: #00d4ff;
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.5);
  background: linear-gradient(135deg, #3d3d55 0%, #2f2f3e 100%);
}

.character-rank {
  position: absolute;
  top: 10px;
  right: 15px;
  background: linear-gradient(135deg, #ff006e, #ff1493);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8em;
  font-weight: bold;
  color: white;
  box-shadow: 0 0 10px rgba(255, 0, 110, 0.5);
}

.character-image {
  font-size: 4em;
  margin-bottom: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(255, 0, 110, 0.3) 0%, transparent 70%);
  padding: 20px;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  border: 3px solid rgba(255, 0, 110, 0.5);
}

.character-card h3 {
  font-size: 1.8em;
  margin-bottom: 5px;
  color: #00d4ff;
}

.character-card .role {
  color: #ff006e;
  font-weight: bold;
  margin-bottom: 10px;
}

.card-stars {
  color: #ffd700;
  margin-bottom: 15px;
  font-size: 0.9em;
}

.included-badge {
  display: inline-block;
  background: rgba(0, 255, 136, 0.2);
  color: #00ff88;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85em;
  font-weight: bold;
  border: 1px solid rgba(0, 255, 136, 0.3);
}

/* ========== CHARACTER DETAIL ========== */
.character-detail {
  background: linear-gradient(135deg, #2d2d44 0%, #1f1f2e 100%);
  border: 3px solid #00d4ff;
  border-radius: 15px;
  padding: 40px;
  min-height: 200px;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
  animation: slideIn 0.5s ease;
  margin-bottom: 60px;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Loading */
.loading {
  text-align: center;
  padding: 60px 20px;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 0, 110, 0.3);
  border-top-color: #ff006e;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading p {
  color: #888;
  font-size: 1.1em;
}

/* Profile */
.profile-container {
  width: 100%;
}

.profile-title {
  font-size: 2.2em;
  color: #00d4ff;
  text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
  margin-bottom: 30px;
  border-bottom: 2px solid #ff006e;
  padding-bottom: 15px;
}

.profile-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.profile-stats {
  background: rgba(0, 0, 0, 0.3);
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid #ff006e;
}

.stat {
  margin-bottom: 20px;
}

.stat label {
  display: block;
  color: #00d4ff;
  font-weight: bold;
  margin-bottom: 8px;
  font-size: 0.95em;
}

.stat-bar {
  background: rgba(0, 0, 0, 0.5);
  height: 20px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ff006e;
}

.stat-fill {
  background: linear-gradient(90deg, #ff006e 0%, #ff1493 100%);
  height: 100%;
  border-radius: 10px;
  transition: width 0.6s ease;
  box-shadow: 0 0 10px rgba(255, 0, 110, 0.5);
  animation: fillBar 1s ease-out;
}

@keyframes fillBar {
  from { width: 0 !important; }
}

.profile-desc {
  font-size: 1.1em;
  line-height: 1.8;
  color: #e0e0e0;
  padding: 20px;
  background: rgba(0, 212, 255, 0.05);
  border-radius: 8px;
  border-left: 4px solid #00d4ff;
}

/* ========== PRICING ========== */
.pricing-section {
  margin-bottom: 60px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.pricing-card {
  background: linear-gradient(135deg, #2d2d44 0%, #1f1f2e 100%);
  border: 2px solid rgba(255, 0, 110, 0.3);
  border-radius: 15px;
  padding: 35px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pricing-card.popular {
  border-color: #ffd700;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-10px);
}

.popular-tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ffd700, #ffaa00);
  color: #1a1a2e;
  padding: 8px 25px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9em;
}

.pricing-badge {
  color: #00d4ff;
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.pricing-price {
  margin-bottom: 20px;
}

.pricing-currency {
  font-size: 1.2em;
  color: #888;
  vertical-align: top;
}

.pricing-amount {
  font-size: 3em;
  font-weight: bold;
  color: #fff;
}

.pricing-save {
  color: #00ff88;
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 0.95em;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 30px;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #ccc;
}

.pricing-btn {
  font-family: inherit;
  width: 100%;
  background: transparent;
  color: #00d4ff;
  padding: 15px;
  border: 2px solid #00d4ff;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing-btn:hover {
  background: rgba(0, 212, 255, 0.1);
}

.pricing-btn.primary {
  background: linear-gradient(135deg, #ffd700, #ffaa00);
  color: #1a1a2e;
  border: none;
}

.pricing-btn.primary:hover {
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  margin-bottom: 60px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.testimonial-card {
  background: linear-gradient(135deg, #2d2d44 0%, #1f1f2e 100%);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
}

.testimonial-avatar {
  font-size: 3em;
  margin-bottom: 15px;
}

.testimonial-text {
  color: #e0e0e0;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 15px;
}

.testimonial-name {
  color: #00d4ff;
  font-weight: bold;
  margin-bottom: 5px;
}

.testimonial-rank {
  color: #ffd700;
  font-size: 0.9em;
}

/* ========== CTA BOTTOM ========== */
.cta-bottom {
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 0, 110, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
  border: 2px solid #ff006e;
  border-radius: 20px;
  padding: 60px 30px;
  margin-bottom: 60px;
}

.cta-bottom h2 {
  font-size: 2.5em;
  margin-bottom: 15px;
}

.cta-bottom p {
  color: #ccc;
  margin-bottom: 30px;
  font-size: 1.1em;
}

.cta-guarantee {
  color: #888;
  font-size: 0.9em;
  margin-top: 20px;
}

/* ========== FLOATING CONTACT ========== */
.floating-contact {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.floating-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 0.95em;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.floating-btn:hover {
  transform: translateX(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.floating-btn.whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.floating-btn.facebook {
  background: linear-gradient(135deg, #1877F2, #0C5DC7);
}

.floating-icon {
  font-size: 1.3em;
}

/* ========== POPUP MODAL ========== */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.popup-modal {
  background: linear-gradient(135deg, #2d2d44 0%, #1f1f2e 100%);
  border: 2px solid #00d4ff;
  border-radius: 20px;
  padding: 0;
  max-width: 550px;
  width: 90%;
  box-shadow: 0 0 50px rgba(0, 212, 255, 0.3);
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  border-bottom: 2px solid rgba(255, 0, 110, 0.3);
}

.popup-header h2 {
  color: #00d4ff;
  font-size: 1.4em;
}

.popup-close {
  background: rgba(255, 0, 110, 0.2);
  border: none;
  color: #ff006e;
  font-size: 1.3em;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.popup-close:hover {
  background: rgba(255, 0, 110, 0.4);
}

.popup-body {
  padding: 30px;
}

.popup-desc {
  color: #ccc;
  text-align: center;
  margin-bottom: 25px;
  font-size: 1em;
  line-height: 1.6;
}

.popup-contacts {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.popup-contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 15px;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
}

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

.popup-contact-card.whatsapp {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(18, 140, 126, 0.2));
  border: 1px solid rgba(37, 211, 102, 0.5);
}

.popup-contact-card.whatsapp:hover {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.3), rgba(18, 140, 126, 0.3));
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.popup-contact-card.facebook {
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.2), rgba(12, 93, 199, 0.2));
  border: 1px solid rgba(24, 119, 242, 0.5);
}

.popup-contact-card.facebook:hover {
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.3), rgba(12, 93, 199, 0.3));
  box-shadow: 0 5px 20px rgba(24, 119, 242, 0.3);
}

.popup-contact-icon {
  font-size: 2.5em;
}

.popup-contact-info h3 {
  color: #fff;
  font-size: 1.2em;
  margin-bottom: 5px;
}

.popup-contact-info p {
  color: #aaa;
  font-size: 0.95em;
  margin-bottom: 8px;
}

.popup-contact-action {
  color: #00d4ff;
  font-weight: bold;
  font-size: 0.9em;
}

.popup-note {
  text-align: center;
  color: #ffd700;
  font-size: 0.9em;
  font-weight: bold;
}

/* ========== POPUP AREA ========== */
#popup-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  pointer-events: none;
}

#popup-area > div {
  pointer-events: auto;
}

/* ========== FOOTER ========== */
.footer {
  text-align: center;
  padding: 30px 0;
  border-top: 2px solid rgba(255, 0, 110, 0.3);
  margin-top: 20px;
  color: #888;
}

.footer p {
  margin-bottom: 5px;
}

.footer-contacts {
  margin-bottom: 20px;
}

.footer-contacts p {
  color: #00d4ff;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-contact-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-contact-link {
  color: #00d4ff;
  text-decoration: none;
  padding: 8px 15px;
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 20px;
  transition: all 0.3s ease;
  font-size: 0.9em;
}

.footer-contact-link:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: #00d4ff;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.footer-sub {
  font-size: 0.85em;
  color: #666;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .hero-banner {
    grid-template-columns: 1fr;
    padding: 30px;
  }

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

  .price-new {
    font-size: 1.8em;
  }

  .hero-cta {
    flex-direction: column;
  }

  .navbar {
    flex-direction: column;
    gap: 15px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .characters-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.popular {
    transform: scale(1);
  }

  .pricing-card.popular:hover {
    transform: translateY(-10px);
  }

  .profile-content {
    grid-template-columns: 1fr;
  }

  .cta-bottom h2 {
    font-size: 1.8em;
  }

  .countdown-timer {
    flex-wrap: wrap;
  }

  .floating-contact {
    bottom: 20px;
    right: 20px;
  }

  .floating-btn {
    padding: 10px 15px;
    font-size: 0.85em;
  }

  .popup-modal {
    width: 95%;
  }
}