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

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #d32f2f, #b71c1c);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loading-content {
  text-align: center;
  color: white;
}

.loading-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 30px;
  animation: pulse 2s infinite;
}

.loading-text {
  font-size: 18px;
  margin-bottom: 30px;
  font-weight: 300;
}

.loading-bar {
  width: 300px;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 15px;
}

.loading-progress {
  height: 100%;
  background: white;
  width: 0%;
  transition: width 0.3s ease;
}

.loading-percentage {
  font-size: 16px;
  font-weight: 600;
}

/* Main Content */
.main-content {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.main-content.visible {
  opacity: 1;
}

.hidden {
  display: none;
}

/* Progress Bar */
.progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  padding: 10px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #f0f0f0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 5px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #d32f2f, #ff5722);
  width: 0%;
  transition: width 0.5s ease;
}

.progress-text {
  font-size: 12px;
  color: #666;
  text-align: center;
}

/* Sections */
section {
  min-height: 100vh;
  padding: 100px 0 50px;
  display: flex;
  align-items: center;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  color: #d32f2f;
  font-weight: 800;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #d32f2f, #b71c1c);
  color: white;
  text-align: center;
}

.hero-logo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 30px;
  border: 5px solid white;
}

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

.highlight {
  color: #ffd700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 40px;
  font-weight: 300;
}

/* Urgency Timer */
.urgency-timer {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
  margin: 40px 0;
  backdrop-filter: blur(10px);
}

.timer-text {
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.timer-display {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.timer-unit {
  text-align: center;
  background: rgba(255, 255, 255, 0.2);
  padding: 15px;
  border-radius: 10px;
  min-width: 80px;
}

.timer-unit span {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #ffd700;
}

.timer-unit label {
  font-size: 0.8rem;
  margin-top: 5px;
}

/* CTA Buttons */
.cta-button {
  background: linear-gradient(45deg, #ff5722, #ff9800);
  color: white;
  border: none;
  padding: 20px 40px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(255, 87, 34, 0.4);
  margin: 30px 0;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 87, 34, 0.6);
}

.cta-button small {
  display: block;
  font-size: 0.8rem;
  margin-top: 5px;
  font-weight: 400;
  text-transform: none;
}

.mega-button {
  font-size: 1.4rem;
  padding: 25px 50px;
}

.pulse {
  animation: pulse 2s infinite;
}

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

/* Social Proof */
.social-proof {
  margin-top: 40px;
}

.rating {
  font-size: 1.1rem;
}

.stars {
  color: #ffd700;
  margin-right: 10px;
}

/* Problem Section */
.problem-section {
  background: #f8f9fa;
}

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

.problem-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.problem-item:hover {
  transform: translateY(-5px);
}

.problem-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.problem-item h3 {
  color: #d32f2f;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.pain-amplifier {
  background: #d32f2f;
  color: white;
  padding: 40px;
  border-radius: 15px;
  margin: 50px 0;
}

.pain-amplifier h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.pain-amplifier ul {
  list-style: none;
}

.pain-amplifier li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.pain-amplifier li:before {
  content: "🔥 ";
  margin-right: 10px;
}

/* Solution Section */
.solution-section {
  background: white;
}

.method-intro {
  text-align: center;
  margin-bottom: 50px;
}

.method-intro h3 {
  font-size: 2rem;
  color: #d32f2f;
  margin-bottom: 20px;
}

.phases-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.phase-item {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  position: relative;
  border: 3px solid transparent;
  transition: all 0.3s ease;
}

.phase-item:hover {
  border-color: #d32f2f;
  transform: translateY(-5px);
}

.phase-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #d32f2f;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
}

.phase-item h4 {
  color: #d32f2f;
  margin: 20px 0 15px;
  font-size: 1.3rem;
}

.phase-item ul {
  list-style: none;
  margin-top: 20px;
}

.phase-item li {
  padding: 5px 0;
  color: #666;
}

.phase-item li:before {
  content: "✓ ";
  color: #4caf50;
  font-weight: bold;
  margin-right: 5px;
}

/* Timeline Styles */
.timeline-container {
  position: relative;
  margin: 50px 0;
}

.timeline-container::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #d32f2f, #ff5722);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  margin-bottom: 50px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-day {
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, #d32f2f, #ff5722);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
  margin: 0 30px;
  box-shadow: 0 10px 30px rgba(211, 47, 47, 0.3);
  animation: pulse 2s infinite;
}

.timeline-content {
  flex: 1;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #d32f2f;
  position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
  border-left: none;
  border-right: 5px solid #d32f2f;
}

.timeline-content h4 {
  color: #d32f2f;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.timeline-content p {
  margin-bottom: 20px;
  font-weight: 600;
  color: #333;
}

.timeline-content ul {
  list-style: none;
  margin-bottom: 20px;
}

.timeline-content li {
  padding: 8px 0;
  color: #666;
  position: relative;
  padding-left: 25px;
}

.timeline-content li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4caf50;
  font-weight: bold;
}

.day-result {
  background: linear-gradient(45deg, #4caf50, #8bc34a);
  color: white;
  padding: 15px;
  border-radius: 10px;
  font-weight: 600;
  text-align: center;
  margin-top: 20px;
}

.method-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.stat-item {
  text-align: center;
  background: #f8f9fa;
  padding: 40px;
  border-radius: 15px;
  border-top: 5px solid #d32f2f;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #d32f2f;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  color: #666;
  font-weight: 600;
}

.guarantee-box {
  background: linear-gradient(45deg, #4caf50, #8bc34a);
  color: white;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  margin: 50px 0;
}

.guarantee-box h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* Testimonials Section */
.testimonials-section {
  background: #f8f9fa;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.testimonial-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.avatar {
  font-size: 2rem;
  margin-right: 15px;
}

.info h4 {
  color: #d32f2f;
  margin-bottom: 5px;
}

.info span {
  color: #666;
  font-size: 0.9rem;
}

.stars {
  margin-left: auto;
  color: #ffd700;
}

.verified {
  margin-top: 15px;
  color: #4caf50;
  font-size: 0.9rem;
  font-weight: 600;
}

.live-counter {
  background: #d32f2f;
  color: white;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  margin: 50px 0;
}

.counter-display {
  margin-top: 20px;
}

.counter-display span {
  font-size: 3rem;
  font-weight: 800;
  color: #ffd700;
  display: block;
}

.counter-display small {
  font-size: 1rem;
  margin-top: 10px;
  display: block;
}

/* Offer Section */
.offer-section {
  background: white;
}

.offer-container {
  max-width: 800px;
  margin: 0 auto;
}

.price-comparison {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

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

.old-price .label {
  display: block;
  color: #666;
  margin-bottom: 10px;
}

.old-price .value {
  font-size: 2rem;
  color: #999;
  text-decoration: line-through;
}

.discount-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #ff5722;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 800;
  transform: rotate(15deg);
}

.new-price .label {
  display: block;
  color: #d32f2f;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.new-price .value {
  font-size: 3.5rem;
  color: #d32f2f;
  font-weight: 800;
}

.payment-options {
  margin: 50px 0;
}

.payment-options h3 {
  text-align: center;
  color: #d32f2f;
  margin-bottom: 30px;
}

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

.payment-option {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.payment-option:hover {
  border-color: #d32f2f;
  transform: translateY(-3px);
}

.payment-option h4 {
  color: #d32f2f;
  margin-bottom: 15px;
}

.payment-option .price {
  font-size: 1.8rem;
  font-weight: 800;
  color: #333;
  margin-bottom: 10px;
}

.payment-option .discount {
  color: #4caf50;
  font-weight: 600;
}

.bonuses {
  margin: 50px 0;
}

.bonuses h3 {
  text-align: center;
  color: #d32f2f;
  margin-bottom: 30px;
}

.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bonus-item {
  display: flex;
  align-items: center;
  background: #f8f9fa;
  padding: 25px;
  border-radius: 15px;
  border-left: 5px solid #4caf50;
}

.bonus-icon {
  font-size: 2rem;
  margin-right: 20px;
}

.bonus-item div {
  flex: 1;
}

.bonus-item h4 {
  color: #d32f2f;
  margin-bottom: 5px;
}

.bonus-value {
  color: #4caf50;
  font-weight: 800;
  font-size: 1.1rem;
}

.scarcity-box {
  background: #ff5722;
  color: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  margin: 50px 0;
}

.scarcity-box h3 {
  margin-bottom: 15px;
}

.spots-bar {
  width: 100%;
  height: 20px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 20px;
}

.spots-filled {
  height: 100%;
  background: #ffd700;
  width: 77%;
  animation: pulse 2s infinite;
}

.security-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.security-badges span {
  color: #4caf50;
  font-weight: 600;
}

/* Final CTA Section */
.final-cta-section {
  background: linear-gradient(135deg, #d32f2f, #b71c1c);
  color: white;
}

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

.final-message h2 {
  color: white;
  margin-bottom: 50px;
}

.comparison-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.comparison-side {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.comparison-side h3 {
  margin-bottom: 25px;
  font-size: 1.3rem;
}

.comparison-side ul {
  list-style: none;
}

.comparison-side li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.left li:before {
  content: "❌ ";
  margin-right: 10px;
}

.right li:before {
  content: "✅ ";
  margin-right: 10px;
}

.urgency-final {
  margin: 50px 0;
}

.urgency-final h3 {
  margin-bottom: 20px;
}

.timer-final {
  font-size: 2rem;
  font-weight: 800;
  color: #ffd700;
}

.final-button {
  font-size: 1.5rem;
  padding: 30px 60px;
  margin: 50px 0;
}

.final-guarantee {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
  margin-top: 40px;
}

/* Achievement Popup */
.achievement-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.achievement-popup.show {
  display: flex;
}

.achievement-content {
  background: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 400px;
  animation: achievementPop 0.5s ease;
}

@keyframes achievementPop {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.achievement-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.achievement-content h3 {
  color: #d32f2f;
  margin-bottom: 15px;
}

.achievement-content button {
  background: #d32f2f;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  margin-top: 20px;
}

/* Floating Testimonial */
.floating-testimonial {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 1000;
  animation: slideInLeft 0.5s ease;
}

@keyframes slideInLeft {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

.floating-testimonial.show {
  display: block;
}

.floating-content {
  display: flex;
  align-items: center;
}

.floating-content .avatar {
  margin-right: 10px;
  font-size: 1.5rem;
}

.floating-content .text strong {
  color: #d32f2f;
  display: block;
}

.floating-content .text small {
  color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

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

  .timer-display {
    flex-direction: column;
    gap: 10px;
  }

  .timer-unit {
    min-width: auto;
  }

  .cta-button {
    font-size: 1rem;
    padding: 15px 30px;
  }

  .mega-button {
    font-size: 1.2rem;
    padding: 20px 40px;
  }

  .problems-grid,
  .phases-container,
  .testimonials-grid,
  .payment-grid {
    grid-template-columns: 1fr;
  }

  .comparison-table {
    grid-template-columns: 1fr;
  }

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

  .floating-testimonial {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .discount-badge {
    position: static;
    transform: none;
    margin: 20px 0;
    display: inline-block;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

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

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .loading-logo,
  .hero-logo {
    width: 100px;
    height: 100px;
  }

  .new-price .value {
    font-size: 2.5rem;
  }

  .final-button {
    font-size: 1.2rem;
    padding: 20px 30px;
  }
}

/* Timeline Styles */
@media (max-width: 768px) {
  .timeline-container::before {
    left: 50px;
  }

  .timeline-item {
    flex-direction: row !important;
  }

  .timeline-item:nth-child(even) .timeline-content {
    border-left: 5px solid #d32f2f;
    border-right: none;
  }

  .timeline-day {
    width: 80px;
    height: 80px;
    font-size: 1rem;
    margin: 0 20px 0 10px;
  }

  .timeline-content {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .timeline-container::before {
    left: 40px;
  }

  .timeline-day {
    width: 60px;
    height: 60px;
    font-size: 0.9rem;
    margin: 0 15px 0 10px;
  }

  .method-stats {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

/* Page Navigation */
.page-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 2px solid #f0f0f0;
}

.nav-button {
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.nav-button.primary {
  background: linear-gradient(45deg, #d32f2f, #ff5722);
  color: white;
  box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
}

.nav-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(211, 47, 47, 0.4);
}

.nav-button.secondary {
  background: #f8f9fa;
  color: #666;
  border: 2px solid #e0e0e0;
}

.nav-button.secondary:hover {
  background: #e9ecef;
  border-color: #d32f2f;
  color: #d32f2f;
}

/* Economy Highlight */
.economy-highlight {
  background: linear-gradient(45deg, #4caf50, #8bc34a);
  color: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  margin: 30px 0;
}

.economy-highlight h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
}

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

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

.economy-value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #ffd700;
  margin-bottom: 5px;
}

.economy-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Featured Payment Option */
.payment-option.featured {
  border: 3px solid #4caf50;
  position: relative;
  transform: scale(1.05);
}

.payment-option.featured::before {
  content: "MAIS POPULAR";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #4caf50;
  color: white;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
}

/* Final Offer Recap */
.final-offer-recap {
  margin: 40px 0;
}

.final-offer-recap h3 {
  text-align: center;
  color: white;
  margin-bottom: 25px;
}

.offer-recap-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.recap-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.recap-item:last-child {
  border-bottom: none;
}

.recap-icon {
  font-size: 1.5rem;
  margin-right: 15px;
}

.recap-value {
  font-weight: 600;
  color: #ffd700;
}

.recap-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 15px;
  border-top: 2px solid rgba(255, 255, 255, 0.3);
  margin-top: 15px;
  font-weight: 700;
  font-size: 1.1rem;
}

.total-value {
  color: #ffd700;
  text-decoration: line-through;
}

.recap-discount {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  font-weight: 800;
  font-size: 1.3rem;
}

.discount-value {
  color: #4caf50;
  font-size: 1.5rem;
}

/* Final Security */
.final-security {
  margin-top: 30px;
  text-align: center;
}

.final-security h4 {
  color: white;
  margin-bottom: 15px;
}

.security-items {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.security-items span {
  color: #4caf50;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Responsive adjustments for navigation */
@media (max-width: 768px) {
  .page-navigation {
    flex-direction: column;
    gap: 15px;
  }

  .nav-button {
    width: 100%;
    text-align: center;
  }

  .economy-stats {
    grid-template-columns: 1fr;
  }

  .security-items {
    flex-direction: column;
    gap: 10px;
  }
}

/* Gamification Styles */
.addiction-counter {
  background: linear-gradient(45deg, #ff1744, #d50000);
  color: white;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  margin: 30px 0;
  animation: danger-pulse 2s infinite;
}

.cigarette-counter {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 15px 0;
  color: #ffd700;
}

.money-wasted {
  font-size: 1.2rem;
  color: #ffcdd2;
}

.motivation-meter {
  background: linear-gradient(45deg, #4caf50, #8bc34a);
  color: white;
  padding: 25px;
  border-radius: 15px;
  margin: 30px 0;
}

.meter-bar {
  width: 100%;
  height: 20px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  overflow: hidden;
  margin: 15px 0;
}

.meter-fill {
  height: 100%;
  background: #ffd700;
  width: 65%;
  animation: pulse 2s infinite;
}

.points-system {
  background: linear-gradient(45deg, #673ab7, #9c27b0);
  color: white;
  padding: 25px;
  border-radius: 15px;
  margin: 30px 0;
}

.points-display {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.points-icon {
  font-size: 2rem;
  margin-right: 10px;
}

.level-bar {
  width: 100%;
  height: 15px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  overflow: hidden;
  margin: 10px 0;
}

.level-fill {
  height: 100%;
  background: linear-gradient(90deg, #ffd700, #ffeb3b);
  animation: level-up 3s infinite;
}

@keyframes level-up {
  0%,
  100% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(1.1);
  }
}

.reality-check {
  background: linear-gradient(45deg, #ff5722, #ff9800);
  color: white;
  padding: 30px;
  border-radius: 15px;
  margin: 30px 0;
  animation: reality-shake 4s infinite;
}

@keyframes reality-shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-2px);
  }
  75% {
    transform: translateX(2px);
  }
}

.reality-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.reality-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 10px;
}

.reality-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #ffd700;
}

.mission-system {
  background: linear-gradient(45deg, #2196f3, #03a9f4);
  color: white;
  padding: 30px;
  border-radius: 15px;
  margin: 30px 0;
}

.missions-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.mission-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.mission-item.completed {
  background: rgba(76, 175, 80, 0.3);
}

.mission-item.active {
  background: rgba(255, 193, 7, 0.3);
  animation: mission-glow 2s infinite;
}

.mission-item.locked {
  opacity: 0.5;
}

@keyframes mission-glow {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.8);
  }
}

.mission-reward {
  color: #ffd700;
  font-weight: 800;
}

.ranking-system {
  background: linear-gradient(45deg, #ff9800, #ffc107);
  color: white;
  padding: 30px;
  border-radius: 15px;
  margin: 30px 0;
}

.ranking-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.rank-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.2);
  padding: 15px;
  border-radius: 10px;
}

.rank-item.you {
  background: rgba(211, 47, 47, 0.8);
  animation: your-rank 2s infinite;
}

@keyframes your-rank {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

.social-pressure {
  background: linear-gradient(45deg, #e91e63, #f06292);
  color: white;
  padding: 25px;
  border-radius: 15px;
  margin: 30px 0;
}

.activity-feed {
  max-height: 200px;
  overflow-y: auto;
  margin-top: 15px;
}

.activity-item {
  display: flex;
  gap: 15px;
  padding: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  animation: activity-slide 0.5s ease;
}

@keyframes activity-slide {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.fomo-intensifier {
  background: linear-gradient(45deg, #d32f2f, #f44336);
  color: white;
  padding: 30px;
  border-radius: 15px;
  margin: 30px 0;
  animation: fomo-pulse 1.5s infinite;
}

@keyframes fomo-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(211, 47, 47, 0.5);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(211, 47, 47, 0.8);
  }
}

.fomo-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.fomo-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 10px;
}

.fomo-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffd700;
  animation: number-change 2s infinite;
}

@keyframes number-change {
  0%,
  100% {
    color: #ffd700;
  }
  50% {
    color: #ff5722;
  }
}

.achievement-preview {
  background: linear-gradient(45deg, #9c27b0, #e91e63);
  color: white;
  padding: 30px;
  border-radius: 15px;
  margin: 30px 0;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.achievement-card {
  background: rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.achievement-card:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.3);
}

.achievement-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.final-boss {
  background: linear-gradient(45deg, #424242, #616161);
  color: white;
  padding: 30px;
  border-radius: 15px;
  margin: 30px 0;
}

.boss-battle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.player-side,
.boss-side {
  text-align: center;
  flex: 1;
}

.player-avatar,
.boss-avatar {
  font-size: 4rem;
  margin-bottom: 10px;
}

.vs {
  font-size: 2rem;
  font-weight: 800;
  color: #ff5722;
  margin: 0 20px;
  animation: vs-glow 1s infinite;
}

@keyframes vs-glow {
  0%,
  100% {
    text-shadow: 0 0 10px #ff5722;
  }
  50% {
    text-shadow: 0 0 20px #ff5722, 0 0 30px #ff5722;
  }
}

.power-level {
  background: linear-gradient(45deg, #ffc107, #ff9800);
  color: white;
  padding: 30px;
  border-radius: 15px;
  margin: 30px 0;
  text-align: center;
}

.power-number {
  font-size: 3rem;
  font-weight: 800;
  color: #d32f2f;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: power-surge 2s infinite;
}

@keyframes power-surge {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.power-bar {
  width: 100%;
  height: 25px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 20px;
}

.power-fill {
  height: 100%;
  background: linear-gradient(90deg, #4caf50, #8bc34a, #ffd700);
  width: 100%;
  animation: power-flow 3s infinite;
}

@keyframes power-flow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Enhanced Button Animations */
.mega-pulse {
  animation: mega-pulse 1.5s infinite;
}

@keyframes mega-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.4);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 15px 40px rgba(255, 87, 34, 0.8);
  }
}

.danger-pulse {
  animation: danger-pulse 1s infinite;
  background: linear-gradient(45deg, #f44336, #d32f2f);
}

@keyframes danger-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(244, 67, 54, 0.5);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(244, 67, 54, 0.8);
  }
}

.success-pulse {
  animation: success-pulse 1.2s infinite;
  background: linear-gradient(45deg, #4caf50, #8bc34a);
}

.legendary-pulse {
  animation: legendary-pulse 1s infinite;
  background: linear-gradient(45deg, #9c27b0, #e91e63, #ff9800);
  background-size: 300% 300%;
}

@keyframes legendary-pulse {
  0%,
  100% {
    background-position: 0% 50%;
    transform: scale(1);
  }
  50% {
    background-position: 100% 50%;
    transform: scale(1.06);
  }
}

.ultimate-pulse {
  animation: ultimate-pulse 0.8s infinite;
  background: linear-gradient(45deg, #ff1744, #ff5722, #ffc107, #4caf50, #2196f3, #9c27b0);
  background-size: 400% 400%;
}

@keyframes ultimate-pulse {
  0%,
  100% {
    background-position: 0% 50%;
    transform: scale(1) rotate(0deg);
  }
  25% {
    background-position: 100% 50%;
    transform: scale(1.03) rotate(1deg);
  }
  50% {
    background-position: 100% 100%;
    transform: scale(1.06) rotate(0deg);
  }
  75% {
    background-position: 0% 100%;
    transform: scale(1.03) rotate(-1deg);
  }
}

.god-mode-pulse {
  animation: god-mode-pulse 0.6s infinite;
  background: linear-gradient(45deg, #000, #ff1744, #ffd700, #4caf50, #2196f3, #9c27b0, #fff);
  background-size: 500% 500%;
  border: 3px solid #ffd700;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
}

@keyframes god-mode-pulse {
  0%,
  100% {
    background-position: 0% 50%;
    transform: scale(1);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
  }
  50% {
    background-position: 100% 50%;
    transform: scale(1.08);
    box-shadow: 0 0 50px rgba(255, 215, 0, 1);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .boss-battle {
    flex-direction: column;
    gap: 20px;
  }

  .vs {
    transform: rotate(90deg);
  }

  .reality-stats,
  .fomo-stats {
    grid-template-columns: 1fr;
  }
}
