/* Base Styles */
:root {
  --primary-color: #2c3e50;
  --secondary-color: #e74c3c;
  --accent-color: #3498db;
  --light-color: #ecf0f1;
  --dark-color: #2c3e50;
  --success-color: #27ae60;
  --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header Styles */
header {
  background-color: var(--primary-color);
  color: white;
  padding: 1.5rem 0;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.tagline {
  color: var(--light-color);
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

/* Hero Section */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 0;
}

.hero-content {
  flex: 1;
  min-width: 300px;
  padding-right: 2rem;
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.hero-image {
  flex: 1;
  min-width: 300px;
}

.hero-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cta-button {
  display: inline-block;
  background-color: var(--secondary-color);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #c0392b;
  transform: translateY(-2px);
}

/* Benefits Section */
.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 3rem 0;
}

.benefit-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-card i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.benefit-card h3 {
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

/* Video Section */
.video-section {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  text-align: center;
}

.video-section h2 {
  margin-bottom: 1.5rem;
  color: var(--dark-color);
}

video {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
}

.video-highlights {
  background: rgba(52, 152, 219, 0.1);
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.highlight {
  display: flex;
  gap: 10px;
  margin: 0.5rem 0;
  align-items: center;
}

.highlight i {
  color: var(--accent-color);
}

/* Instructions Section */
.instructions {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.instructions h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
}

.instructions ol {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  counter-reset: step-counter;
  list-style: none;
}

.instructions li {
  position: relative;
  padding-left: 3rem;
  counter-increment: step-counter;
}

.instructions li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--accent-color);
  color: white;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* Marketplace Section */
.marketplace {
  padding: 3rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.product-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transform: translateY(-3px);
}

.product-image {
  height: 200px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-details {
  padding: 1.5rem;
}

.product-details h3 {
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

.price {
  font-weight: bold;
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

.buy-button {
  width: 100%;
  padding: 0.8rem;
  background-color: var(--accent-color);
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.buy-button:hover {
  background-color: #2980b9;
}

.disclaimer {
  color: var(--secondary-color);
  font-weight: bold;
  text-align: center;
  margin: 1rem 0;
  padding: 1rem;
  background-color: #f8f9fa;
  border-radius: 5px;
}

/* Testimonials Section */
.testimonials {
  padding: 3rem 0;
  background-color: #f8f9fa;
}

.testimonial {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  margin: 1rem 0;
  position: relative;
}

.testimonial::before {
  content: '"';
  font-size: 4rem;
  color: var(--light-color);
  position: absolute;
  top: 0;
  left: 1rem;
  line-height: 1;
}

.testimonial p {
  position: relative;
  z-index: 1;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  color: var(--success-color);
  background: rgba(39, 174, 96, 0.1);
  padding: 3px 8px;
  border-radius: 20px;
  margin-top: 3px;
}

.verified-badge i {
  font-size: 0.9rem;
  margin-right: 5px;
}

.author {
  font-weight: bold;
  margin-top: 1rem;
  color: var(--dark-color);
}

/* Payment Modal */
.payment-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  overflow-y: auto;
}

.payment-modal .modal-content {
  background: #fff;
  border-radius: 12px;
  max-width: 400px;
  width: 90vw;
  padding: 2rem 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  position: relative;
  text-align: center;
}

.payment-modal .close-button {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 1.5rem;
  color: #888;
  cursor: pointer;
}

.payment-modal h3 {
  margin-bottom: 1.2rem;
  font-size: 1.25rem;
  color: var(--dark-color, #222);
}

.payment-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.payment-steps .step {
  background: #f8f8f8;
  border-radius: 8px;
  padding: 1rem;
  text-align: left;
  position: relative;
}

.payment-steps .step-number {
  position: absolute;
  left: -18px;
  top: 1rem;
  background: var(--accent-color, #e74c3c);
  color: #fff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.payment-detail {
  font-size: 1.05rem;
  margin: 0.3em 0;
  color: #333;
}

.complete-purchase-button {
  width: 100%;
  padding: 0.9rem;
  background: var(--success-color, #27ae60);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 0.7rem;
  cursor: pointer;
  transition: background 0.2s;
}

.complete-purchase-button:hover {
  background: #219150;
}

@media (max-width: 480px) {
  .payment-modal .modal-content {
    padding: 1.2rem 0.5rem;
    max-width: 98vw;
    font-size: 0.98rem;
  }
  .payment-steps .step {
    padding: 0.8rem 0.5rem 0.8rem 1.5rem;
  }
  .payment-steps .step-number {
    left: -12px;
    width: 22px;
    height: 22px;
    font-size: 0.95rem;
  }
}

/* Purchase Confirmation Modal */
.confirmation-modal {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.3s ease-in-out;
}

.confirmation-modal h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.confirmation-modal p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.confirmation-modal .success-icon {
    font-size: 3rem;
    color: var(--success-color);
    margin-bottom: 1rem;
}

.confirmation-modal .modal-button {
    background-color: var(--accent-color);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.confirmation-modal .modal-button:hover {
    background-color: #2980b9;
}

/* Footer Styles */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--light-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--accent-color);
}

.footer-section p.guarantee {
  font-size: 0.8rem;
  color: rgba(14, 90, 104, 0.7);
}

.copyright {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.trust-badge {
  text-align: center;
  transition: all 0.3s ease;
  padding: 1rem;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  min-width: 200px;
}

.trust-badge i {
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.trust-badge:hover i {
  transform: scale(1.1);
}

.trust-badge p {
  font-size: 1rem;
  color: white;
  font-weight: bold;
  margin: 0;
}

/* Live Counter */
.live-counter {
  display: flex;
  justify-content: space-around;
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  margin: 2rem 0;
  text-align: center;
}

.counter-item i {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.counter-item h3 {
  font-size: 2rem;
  color: var(--dark-color);
}

.counter-item p {
  color: #777;
}

/* Live Feed */
.live-feed {
  background: #2c3e50;
  color: white;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.live-feed h3 {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feed-container {
  max-height: 300px;
  overflow-y: auto;
}

.feed-item {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}

.status {
  text-align: right;
  font-weight: bold;
}

.in-progress { color: #f39c12; }
.verified-win { color: #2ecc71; }
.pending { color: #3498db; }

.win-amount {
  display: block;
  color: var(--success-color);
  font-weight: bold;
  margin-top: 5px;
}

/* Urgency Banner */
.urgency-banner {
  background: var(--secondary-color);
  color: white;
  padding: 12px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
  border-radius: 5px;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

.urgency-banner p {
  margin: 0;
}

.urgency-banner span {
  font-weight: bolder;
  font-size: 1.1em;
}

/* Popularity Meter */
.popularity-meter {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem auto;
  max-width: 600px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.progress-container {
  margin-top: 1rem;
}

.progress-bar {
  height: 20px;
  background: #f3f3f3;
  border-radius: 10px;
  overflow: hidden;
  margin: 0.5rem 0;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #e74c3c, #f39c12);
  border-radius: 10px;
  transition: width 1.5s ease-out;
}

.progress-label {
  font-weight: bold;
  color: var(--dark-color);
}

.progress-text {
  font-size: 0.9rem;
  color: #666;
  text-align: center;
}

/* Recent Win Popup */
/* Win Popup */
.win-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: white;
  padding: 12px 20px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  animation: slideIn 0.5s ease-out;
  z-index: 1000;
  max-width: 300px;
}

/* Purchase Popup */
.purchase-popup {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  padding: 12px 20px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  animation: slideIn 0.5s ease-out;
  z-index: 1000;
  max-width: 300px;
}
/* Modal Styles */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal-overlay:not(.hidden) {
  display: flex;
}

.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  width: 90%;
  max-width: 500px;
}

/* Time Selection Modal */
.time-selection-modal {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.time-slots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0;
}

.time-slot input[type="radio"] {
  display: none;
}

.time-slot label {
  display: block;
  padding: 12px;
  background: #f5f5f5;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.time-slot input[type="radio"]:checked + label {
  background: var(--accent-color);
  color: white;
}

/* Confirmation Modal */
.confirmation-modal {
  text-align: center;
}

.success-icon {
  font-size: 3rem;
  color: var(--success-color);
  margin-bottom: 1rem;
}

/* Phone Input Modal */
.phone-input-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.phone-input-container {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  text-align: center;
}

.phone-input-container h3 {
  color: var(--dark-color);
  margin-bottom: 1.5rem;
}

.phone-input-field {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 1.5rem;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.phone-input-field:focus {
  border-color: var(--accent-color);
  outline: none;
}

.phone-input-buttons {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.phone-input-btn {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.phone-input-btn.cancel {
  background-color: #f1f1f1;
  color: #333;
}

.phone-input-btn.submit {
  background-color: var(--accent-color);
  color: white;
}

.phone-input-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.phone-input-error {
  color: var(--secondary-color);
  font-size: 0.9rem;
  margin-top: -1rem;
  margin-bottom: 1rem;
  display: none;
}

/* Transaction Verification Modal */
.transaction-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3000; /* Make sure this is higher than any other modal */
}

.transaction-container {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  text-align: center;
}

.transaction-container h3 {
  color: var(--dark-color);
  margin-bottom: 1.5rem;
}

.transaction-input {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 1.5rem;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.transaction-input:focus {
  border-color: var(--accent-color);
  outline: none;
}

.transaction-buttons {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.transaction-btn {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.transaction-btn.cancel {
  background-color: #f1f1f1;
  color: #333;
}

.transaction-btn.verify {
  background-color: var(--success-color);
  color: white;
}

.transaction-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.transaction-error {
  color: var(--secondary-color);
  font-size: 0.9rem;
  margin-top: -1rem;
  margin-bottom: 1rem;
  display: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero {
      flex-direction: column;
      text-align: center;
  }
  
  .hero-content {
      padding-right: 0;
      margin-bottom: 2rem;
  }
  
  .benefits {
      grid-template-columns: 1fr;
  }

  .instructions ol {
      grid-template-columns: 1fr;
  }
  
  .feed-item {
      grid-template-columns: 1fr;
      gap: 5px;
  }
  
  .status {
      text-align: left;
  }
}

.hidden { display: none !important; }

.cta-button {
  display: inline-block;
  background-color: var(--secondary-color);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.buy-button {
  width: 100%;
  padding: 0.8rem;
  background-color: var(--accent-color);
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.complete-purchase-button {
  width: 100%;
  padding: 12px;
  background-color: var(--success-color);
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

/* Win Popup */
.win-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: white;
  padding: 12px 20px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  animation: slideIn 0.5s ease-out;
  z-index: 1000;
  max-width: 300px;
}

/* Purchase Popup */
.purchase-popup {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  padding: 12px 20px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  animation: slideIn 0.5s ease-out;
  z-index: 1000;
  max-width: 300px;
}

.payment-detail-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0.5em 0;
  font-size: 1.15em;
  background: #f3f6fa;
  padding: 0.6em 1em;
  border-radius: 8px;
  font-weight: bold;
}
.payment-label {
  color: #2d3e50;
  font-size: 1em;
  margin-bottom: 0.2em;
}
.payment-value {
  color: #e74c3c;
  font-size: 1.2em;
  letter-spacing: 1px;
  word-break: break-all;
}

@media (max-width: 480px) {
  .payment-detail-block {
    font-size: 1em;
    padding: 0.5em 0.7em;
  }
  .payment-label, .payment-value {
    font-size: 1em;
  }
}

/* Updated Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.trust-badge {
  text-align: center;
  transition: all 0.3s ease;
  padding: 1rem;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  min-width: 200px;
}

.trust-badge i {
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.trust-badge:hover i {
  transform: scale(1.1);
}

.trust-badge p {
  font-size: 1rem;
  color: white;
  font-weight: bold;
  margin: 0;
}

/* Add Testimonial Section */
.add-testimonial {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.testimonial-form {
  max-width: 600px;
  margin: 0 auto;
}

/* Testimonial form collapsed/expanded styles */
.testimonial-form.collapsed {
    max-height: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(.4,0,.2,1), opacity 0.3s, padding 0.3s;
    pointer-events: none;
}
.testimonial-form {
    max-height: 800px;
    opacity: 1;
    padding: 1em 0;
    transition: max-height 0.4s cubic-bezier(.4,0,.2,1), opacity 0.3s, padding 0.3s;
    pointer-events: auto;
}
.add-testimonial {
    text-align: center;
    margin-bottom: 2em;
}
.add-testimonial .cta-button {
    font-size: 1em;
    padding: 0.6em 1.5em;
}
.testimonial-form .form-group {
    margin-bottom: 0.7em;
}
.testimonial-form input,
.testimonial-form textarea,
.testimonial-form select {
    width: 90%;
    max-width: 350px;
    padding: 0.6em;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 1em;
    margin: 0 auto;
    display: block;
}
.testimonial-form textarea {
    min-height: 60px;
    resize: vertical;
}
@media (max-width: 480px) {
    .testimonial-form input,
    .testimonial-form textarea,
    .testimonial-form select {
        width: 98%;
        font-size: 1em;
    }
}

/* Rating stars in select */
option[value="5"] { color: gold; }
option[value="4"] { color: gold; }
option[value="3"] { color: gold; }
option[value="2"] { color: gold; }
option[value="1"] { color: gold; }

/* Licensing Info Styles */
.licensing-info {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
}

.licensing-info p {
  margin: 0.5rem 0;
}

.licensing-info i {
  color: var(--accent-color);
  margin-right: 8px;
}

.licensing-info strong {
  color: white;
  font-weight: bold;
}

.licensing-info small {
  font-size: 0.8rem;
  display: block;
  margin-top: 0.5rem;
}
/* Time Selection Modal Buttons */
.modal-buttons {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}

.modal-button {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.cancel-button {
  background-color: #f1f1f1;
  color: #333;
}

.cancel-button:hover {
  background-color: #e0e0e0;
}

.next-button {
  background-color: var(--accent-color);
  color: white;
}

.next-button:hover {
  background-color: #2980b9;
}

/* Add these to existing modal styles if not present */
.time-selection-modal {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.time-slots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0;
}

.time-slot input[type="radio"] {
  display: none;
}

.time-slot label {
  display: block;
  padding: 12px;
  background: #f5f5f5;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.time-slot input[type="radio"]:checked + label {
  background: var(--accent-color);
  color: white;
}

/* How It Works Section */
.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.step {
  display: flex;
  gap: 1.5rem;
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.step-content h3 {
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.step-content ul {
  margin: 0.5rem 0 0 1rem;
}

.how-it-works {
  background: rgba(52, 152, 219, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.how-it-works h3 {
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.ai-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}

.ai-features li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.disclaimer-note {
  font-size: 0.9rem;
  color: var(--secondary-color);
  font-style: italic;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .steps-container {
      grid-template-columns: 1fr;
  }
}

.payment-detail {
  background: #f8f9fa;
  padding: 0.8rem 1rem;
  border-radius: 5px;
  margin: 0.8rem 0;
  font-family: monospace;
  word-break: break-all;
  overflow-wrap: break-word;
  font-size: 1rem;
}

@media (max-width: 480px) {
  .payment-detail {
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
  }
  
  .modal-content {
    padding: 1.5rem;
    width: 95%;
  }
  
  .payment-steps {
    margin-top: 1rem;
  }
  
  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .step-number {
    margin-right: 0;
    margin-bottom: 0.8rem;
  }
}

.referral-program {
  background: linear-gradient(135deg, #3498db, #2c3e50);
  color: white;
  padding: 2rem;
  border-radius: 10px;
  margin: 2rem 0;
  text-align: center;
}

.referral-steps {
  display: flex;
  justify-content: space-around;
  margin: 2rem 0;
}

.referral-box {
  display: flex;
  margin: 1rem auto;
  max-width: 500px;
}

#referral-link {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 5px 0 0 5px;
}

#copy-link {
  background: #e74c3c;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}

.guarantee-banner {
  display: flex;
  align-items: center;
  background: rgba(39, 174, 96, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1rem 0;
  gap: 1rem;
  border-left: 5px solid #27ae60;
}

.guarantee-banner i {
  font-size: 2.5rem;
  color: #27ae60;
}

.purchase-progress {
  display: flex;
  justify-content: space-between;
  margin: 1rem 0 2rem;
  position: relative;
}

.purchase-progress:before {
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  height: 2px;
  background: #eee;
  z-index: 0;
}

.step {
  position: relative;
  text-align: center;
  padding-top: 25px;
  color: #999;
  font-size: 0.9rem;
  z-index: 1;
}

.step.active {
  color: #3498db;
  font-weight: bold;
}

.step.active:before {
  background: #3498db;
}
.floating-chat {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.chat-icon {
  width: 60px;
  height: 60px;
  background: #e74c3c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  position: relative;
}

.notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #27ae60;
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-box {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 340px;
    max-width: 95vw;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

.chat-box.active {
  display: block;
}

.chat-header {
  background: #2c3e50;
  color: white;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-chat {
  cursor: pointer;
  font-size: 1.2rem;
}

.chat-messages {
    height: 300px;
    padding: 15px;
    overflow-y: auto;
}

.message {
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 5px;
  max-width: 80%;
}

.message.bot {
  background: #f1f1f1;
  align-self: flex-start;
}

.chat-input {
  display: flex;
  padding: 10px;
  border-top: 1px solid #eee;
}

.chat-input input {
  flex: 1;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.chat-input button {
  background: #3498db;
  color: white;
  border: none;
  padding: 0 15px;
  border-radius: 5px;
  margin-left: 5px;
  cursor: pointer;
}

/* Styling for the Get Demo Prediction button */
#try-demo {
    background-color: #3498db;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#try-demo:hover {
    background-color: #2980b9;
}

/* Styling for the Withdraw Now button */
#withdraw-earnings {
    background-color: #27ae60;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#withdraw-earnings:hover {
    background-color: #1e8449;
}

/* Styling for the Upgrade button in the demo modal */
#upgrade-button {
    background-color: #e67e22;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

#upgrade-button:hover {
    background-color: #d35400;
}

/* Demo Modal Overlay */
#demo-modal {
    display: none; /* Ensure it's hidden initially */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent black background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
#demo-modal.hidden {
    display: none;
}

/* Demo Modal Content */
.demo-modal-content {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px 30px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
    animation: modalPopIn 0.25s cubic-bezier(.4,1.4,.6,1) both;
}

/* Close Button */
.demo-modal-content .close-demo {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
}

.demo-modal-content .close-demo:hover {
    color: #e74c3c;
}

/* Modal Heading */
.demo-modal-content h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
}

/* Demo Prediction Section */
.demo-prediction p {
    font-size: 16px;
    color: #34495e;
    margin: 10px 0;
    font-weight: 700;
}

.demo-prediction ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    display: flex;
    justify-content: center;
    gap: 1em;
}

.demo-prediction ul li {
    font-size: 18px;
    color: #27ae60;
    font-weight: bold;
    margin: 5px 0;
    background: #f6f6f6;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.06);
}

/* Note Text */
.demo-prediction small {
    display: block;
    font-size: 12px;
    color: #7f8c8d;
    margin-top: 10px;
}

/* Upgrade Button */
#upgrade-button {
    background-color: #e67e22;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

#upgrade-button:hover {
    background-color: #d35400;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Chat message styling */
.chat-messages {
    max-height: 300px;
    overflow-y: auto;
    padding: 15px;
}

.message {
    margin-bottom: 10px;
    padding: 8px 12px;
    border-radius: 5px;
    max-width: 80%;
    word-wrap: break-word;
}

.message.bot {
    background: #f1f1f1;
    align-self: flex-start;
}

.message.user {
    background: #3498db;
    color: white;
    align-self: flex-end;
    margin-left: auto;
}

/* Typing Indicator */
.typing-indicator {
  display: none;
  padding: 10px;
  background: #f1f1f1;
  border-radius: 5px;
  margin-bottom: 10px;
  width: fit-content;
}

.typing-indicator span {
  height: 8px;
  width: 8px;
  background: #666;
  border-radius: 50%;
  display: inline-block;
  margin: 0 2px;
  animation: typing 1s infinite ease-in-out;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Add timestamp styling */
.feed-item {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    gap: 5px;
}

.timestamp {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .feed-item {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    
    .timestamp {
        order: 3;
    }
}
/* Update ROI calculator styles */
.roi-calculator {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.9rem; /* Reduce font size */
    margin-top: 5px;
}

.roi-bar {
    width: 100%;
    height: 8px; /* Reduce height */
    background-color: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin: 5px 0;
}

.roi-fill {
    height: 100%;
    background-color: #4caf50;
    border-radius: 4px;
}

.roi-amount {
    font-size: 0.85rem; /* Smaller text for ROI amount */
    color: #333;
    margin-top: 2px;
}

/* Animation for higher multipliers */
.roi-calculator.high-multiplier .roi-amount {
    color: #e67e22;
    background: rgba(230, 126, 34, 0.1);
}

.roi-calculator.high-multiplier .roi-multiplier {
    background: #e67e22;
    box-shadow: 0 2px 5px rgba(230, 126, 34, 0.3);
}

.roi-calculator.high-multiplier .roi-fill {
    background: linear-gradient(90deg, #e67e22, #f39c12);
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.roi-bar span {
    font-size: 0.5rem;
    color: var(--success-color);
    font-weight: bold;
    display: block;
    text-align: right;
    margin-top: 5px;
}

/* Add animation to product cards when hovering */
.product-card:hover .roi-fill {
    transform: scaleX(1.05);
    transition: transform 0.3s ease;
}
/* Hover effects */
.product-card:hover .roi-amount {
    transform: scale(1.05);
}

.product-card:hover .roi-multiplier {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(39, 174, 96, 0.4);
}

.roi-calculator.high-multiplier:hover .roi-multiplier {
    box-shadow: 0 4px 8px rgba(230, 126, 34, 0.4);
}

/* Prediction Proof Section */
.prediction-proof {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.prediction-proof h3 {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
    margin: 1.5em 0;
    position: relative;
}

.carousel-slide {
    width: 160px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.carousel-img {
    display: none;
    width: 100%;
    max-width: 140px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.07);
    position: absolute;
    left: 0; top: 0;
    right: 0; bottom: 0;
    margin: auto;
    transition: opacity 0.3s;
    opacity: 0;
}

.carousel-img.active {
    display: block;
    opacity: 1;
    position: relative;
}

.carousel-arrow {
    background: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 1.5em;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-arrow:hover {
    background: #c0392b;
}

@media (max-width: 480px) {
    .carousel-slide {
        width: 100px;
        height: 160px;
    }
    .carousel-img {
        max-width: 90px;
    }
    .carousel-arrow {
        width: 28px;
        height: 28px;
        font-size: 1.1em;
    }
}

/* Telegram CTA Section */
.telegram-cta {
    background: linear-gradient(135deg, #0088cc, #005f8b);
    color: white;
    padding: 2.5rem 0;
    margin: 2rem 0;
}

.telegram-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.telegram-box i {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
}

.telegram-box h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.telegram-button {
    display: inline-block;
    background: white;
    color: #0088cc;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.telegram-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Floating Telegram Button */
.floating-telegram {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    animation: pulse 2s infinite;
}

.floating-telegram a {
    display: flex;
    align-items: center;
    background: #0088cc;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.floating-telegram a:hover {
    background: #006699;
    transform: scale(1.05);
}

.floating-telegram i {
    font-size: 1.5rem;
    margin-right: 10px;
}

/* Enhanced Footer Link */
.telegram-footer-link {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 136, 204, 0.1);
    color: #0088cc;
    padding: 10px 15px;
    border-radius: 5px;
    margin: 0.5rem 0;
    font-weight: bold;
    transition: all 0.3s ease;
}

.telegram-footer-link:hover {
    background: rgba(0, 136, 204, 0.2);
    transform: translateX(5px);
}

.telegram-footer-link i {
    font-size: 1.2rem;
    margin-right: 8px;
}

.telegram-benefits {
    font-size: 0.9rem;
    color: var(--light-color);
    margin-top: 0.5rem;
}

/* Animation */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(231,76,60,0.7); }
    70% { box-shadow: 0 0 0 15px rgba(231,76,60,0); }
    100% { box-shadow: 0 0 0 0 rgba(231,76,60,0); }
}

#show-packages-btn.cta-button {
    animation: pulse 2s infinite;
    position: relative;
}
#show-packages-btn.cta-button::after {
    content: "🚀";
    position: absolute;
    right: -2em;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #e74c3c;
    animation: bounce 1s infinite alternate;
}
@keyframes bounce {
    to { transform: translateY(-40%) scale(1.2); }
}

@keyframes spin {
    0% { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
}

.betting-site-modal.modal-overlay,
.generating-modal.modal-overlay,
.prediction-modal.modal-overlay {
    background: rgba(255,255,255,0.92) !important;
    position: fixed !important;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.betting-site-content,
.generating-content,
.prediction-content {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(44,62,80,0.12);
    padding: 2em 1.5em 1.5em 1.5em;
    max-width: 95vw;
    width: 350px;
    text-align: center;
    position: relative;
    animation: modalPopIn 0.25s;
}

@keyframes modalPopIn {
    from { transform: scale(0.95); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

/* Site selection buttons */
.site-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: center;
    margin: 1.5em 0 0.5em 0;
}
.site-btn {
    background: #f5f6fa;
    border: 2px solid #e74c3c;
    color: #222;
    border-radius: 10px;
    padding: 0.7em 1.2em;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, border 0.2s, transform 0.1s;
    display: flex;
    align-items: center;
    gap: 0.5em;
}
.site-btn:hover {
    background: #e74c3c;
    color: #fff;
    border-color: #c0392b;
    transform: scale(1.04);
}

/* Loader spinner for generating modal */
.loader {
    margin: 20px auto;
    width: 40px;
    height: 40px;
    border: 4px solid #e74c3c;
    border-top: 4px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
}

/* Prediction modal styling */
.prediction-content ul {
    list-style: none;
    padding: 0;
    margin: 1em 0;
}

.prediction-content ul li {
    background: #f5f6fa;
    margin: 0.3em 0;
    padding: 0.5em 0;
    border-radius: 6px;
    font-size: 1.15em;
    font-weight: 500;
    color: #e74c3c;
    letter-spacing: 1px;
}

.prediction-content .close-prediction {
    position: absolute;
    top: 12px;
    right: 18px;
    color: #e74c3c;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}
.prediction-content .close-prediction:hover {
    color: #c0392b;
}

/* Modal buttons */
.modal-button, .next-button {
    background: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.7em 2em;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1em;
    transition: background 0.2s, transform 0.1s;
}
.modal-button:hover, .next-button:hover {
    background: #c0392b;
    transform: scale(1.04);
}

/* Responsive for mobile */
@media (max-width: 480px) {
    .betting-site-content,
    .generating-content,
    .prediction-content {
        width: 95vw;
        padding: 1em 0.5em 1em 0.5em;
    }
    .site-btn {
        font-size: 1em;
        padding: 0.6em 0.7em;
    }
}

.blurred-multiplier {
    filter: blur(8px);
    pointer-events: none;
    background: #fff;
    border-radius: 4px;
    padding: 0 0.4em;
    color: transparent;
    text-shadow: 0 0 8px #e74c3c;
}

.purchase-confirm-modal.modal-overlay {
    background: rgba(255,255,255,0.92) !important;
    position: fixed !important;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.purchase-confirm-content {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(44,62,80,0.12);
    padding: 2em 1.5em 1.5em 1.5em;
    max-width: 95vw;
    width: 350px;
    text-align: center;
    position: relative;
    animation: modalPopIn 0.25s;
}

.purchase-confirm-content h3 {
    color: #e74c3c;
    margin-bottom: 1em;
    font-size: 1.5em;
}

.purchase-details p {
    color: #333;
    font-size: 1.13em;
    margin-bottom: 1.5em;
    line-height: 1.6;
}

.pay-amount {
    display: block;
    margin: 0.7em 0 0.2em 0;
    font-size: 1.15em;
    font-weight: bold;
    letter-spacing: 1px;
}

.countdown-container {
    margin: 1.2em 0 0.7em 0;
    font-size: 1.1em;
    color: #222;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3em;
}

.countdown-label {
    font-size: 1em;
    color: #888;
    margin-bottom: 0.2em;
}

.countdown-timer {
    font-size: 2.2em;
    font-weight: bold;
    color: #e74c3c;
    letter-spacing: 2px;
    animation: pulse-countdown 1s infinite;
}

@keyframes pulse-countdown {
    0% { transform: scale(1); color: #e74c3c; }
    50% { transform: scale(1.18); color: #c0392b; }
    100% { transform: scale(1); color: #e74c3c; }
}

#purchase-next-btn {
    margin-top: 1.2em;
    opacity: 0.6;
    cursor: not-allowed;
    transition: opacity 0.2s, background 0.2s;
}
#purchase-next-btn.active,
#purchase-next-btn:not([disabled]) {
    opacity: 1;
    cursor: pointer;
    background: #e74c3c;
}
#purchase-next-btn.active:hover {
    background: #c0392b;
}

@media (max-width: 480px) {
    .purchase-confirm-content {
        width: 97vw;
        padding: 1.2em 0.5em 1.2em 0.5em;
    }
}

.purchase-confirm-content p {
    color: #333;
    font-size: 1.1em;
    margin-bottom: 2em;
}

.purchase-confirm-content .modal-button,
.purchase-confirm-content .next-button {
    background: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.7em 2em;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1em;
    transition: background 0.2s, transform 0.1s;
}

.purchase-confirm-content .modal-button:hover,
.purchase-confirm-content .next-button:hover {
    background: #c0392b;
    transform: scale(1.04);
}

/* --- Modal Overlay --- */
.congrats-modal,
.prediction-modal,
.purchase-confirm-modal,
.generating-modal {
    position: fixed !important;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 99999;
    background: rgba(34, 49, 63, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

/* --- Modal Content --- */
.congrats-content,
.prediction-content,
.purchase-confirm-content,
.generating-content {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(44,62,80,0.18);
    padding: 2.5em 2em 2em 2em;
    max-width: 95vw;
    width: 100%;
    max-width: 410px;
    text-align: center;
    position: relative;
    animation: modalPopIn 0.25s cubic-bezier(.4,1.4,.6,1) both;
}

@keyframes modalPopIn {
    0% { transform: scale(0.92) translateY(30px); opacity: 0; }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}

/* --- Close Button --- */
.close-prediction,
.close-demo {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 1.7em;
    color: #e74c3c;
    cursor: pointer;
    font-weight: bold;
    transition: color 0.15s;
}
.close-prediction:hover,
.close-demo:hover {
    color: #c0392b;
}

/* --- Congratulations Modal --- */
.congrats-content h2 {
    color: #27ae60;
    font-size: 2em;
    margin-bottom: 0.5em;
}
#congrats-countdown {
    color: #e67e22;
    font-size: 1.5em;
    font-weight: bold;
}

/* --- Prediction Reveal Modal --- */
.prediction-content h3 {
    color: #e74c3c;
    margin-bottom: 0.5em;
}
.prediction-content ul.multipliers-list {
    list-style: none;
    padding: 0;
    margin: 1.2em 0 0.5em 0;
    display: flex;
    justify-content: center;
    gap: 1.5em;
    flex-wrap: wrap;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.prediction-content .blurred-multipliers {
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
}
.prediction-content ul.multipliers-list li {
    background: #f6f6f6;
    border-radius: 8px;
    padding: 0.7em 1.1em;
    font-size: 1.15em;
    font-weight: 600;
    color: #222;
    box-shadow: 0 2px 8px rgba(44,62,80,0.06);
}
.blurred-multiplier {
    filter: blur(4px);
    color: #bbb;
    user-select: none;
}

/* --- Modal Buttons --- */
.modal-button,
.cta-button,
.pay-to-reveal-btn {
    background: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.9em 2em;
    font-size: 1.1em;
    font-weight: 700;
    margin-top: 1.2em;
    cursor: pointer;
    transition: background 0.18s, transform 0.12s;
    box-shadow: 0 2px 8px rgba(44,62,80,0.08);
}
.modal-button:hover,
.cta-button:hover,
.pay-to-reveal-btn:hover {
    background: #c0392b;
    transform: scale(1.04);
}

/* --- Responsive --- */
@media (max-width: 600px) {
    .congrats-content,
    .prediction-content,
    .purchase-confirm-content,
    .generating-content {
        padding: 1.2em 0.5em 1.5em 0.5em;
        max-width: 98vw;
    }
    .prediction-content ul.multipliers-list {
        flex-direction: column;
        gap: 0.5em;
    }
}
/* Modern Shepherd.js custom theme */
.shepherd-theme-arrows.custom-shepherd-translucent .shepherd-content {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(44,62,80,0.18);
    padding: 2em 1.5em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #222;
    border: 1px solid #e74c3c;
}
.shepherd-theme-arrows.custom-shepherd-translucent .shepherd-header {
    background: linear-gradient(90deg, #e74c3c 60%, #f39c12 100%);
    color: #fff;
    border-radius: 14px 14px 0 0;
    padding: 1em 1.5em;
    font-size: 1.2em;
    font-weight: bold;
    letter-spacing: 0.5px;
}
.shepherd-theme-arrows.custom-shepherd-translucent .shepherd-title {
    color: #fff;
    font-size: 1.3em;
    font-weight: 700;
}
.shepherd-theme-arrows.custom-shepherd-translucent .shepherd-text {
    color: #222;
    font-size: 1.08em;
    margin: 1em 0;
}
.shepherd-theme-arrows.custom-shepherd-translucent .shepherd-button {
    background: #e74c3c;
    color: #fff;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 1em;
    padding: 0.7em 1.7em;
    margin: 0 0.5em;
    transition: background 0.2s, transform 0.1s;
    box-shadow: 0 2px 8px rgba(44,62,80,0.08);
}
.shepherd-theme-arrows.custom-shepherd-translucent .shepherd-button:hover {
    background: #c0392b;
    transform: scale(1.04);
}
.shepherd-theme-arrows.custom-shepherd-translucent .shepherd-cancel-icon {
    color: #e74c3c;
    font-size: 1.5em;
    top: 18px;
    right: 18px;
}
.shepherd-theme-arrows.custom-shepherd-translucent .shepherd-footer {
    border-top: 1px solid #f3f3f3;
    margin-top: 1.5em;
    padding-top: 1em;
    background: none;
    border-radius: 0 0 14px 14px;
}
.shepherd-theme-arrows.custom-shepherd-translucent .shepherd-arrow {
    filter: drop-shadow(0 2px 8px rgba(44,62,80,0.10));
}
@media (max-width: 600px) {
    .shepherd-theme-arrows.custom-shepherd-translucent .shepherd-content {
        padding: 1em 0.5em;
    }
    .shepherd-theme-arrows.custom-shepherd-translucent .shepherd-header {
        padding: 0.7em 0.7em;
        font-size: 1em;
    }
}

/* Tutorial Prompt Modal */
.tutorial-prompt-modal {
    background: rgba(34,49,63,0.45);
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tutorial-prompt-content {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(44,62,80,0.18);
    padding: 2.5em 2em 2em 2em;
    max-width: 95vw;
    width: 100%;
    max-width: 410px;
    text-align: center;
    position: relative;
    animation: modalPopIn 0.25s cubic-bezier(.4,1.4,.6,1) both;
}
.tutorial-prompt-content h2 {
    color: #e74c3c;
    font-size: 2em;
    margin-bottom: 0.5em;
}
.tutorial-prompt-content p {
    color: #222;
    font-size: 1.1em;
    margin-bottom: 1.5em;
}
.tutorial-prompt-buttons {
    display: flex;
    gap: 1em;
    justify-content: center;
}
.tutorial-prompt-buttons .modal-button {
    padding: 0.8em 2.2em;
    font-size: 1.1em;
}
.tutorial-prompt-buttons .cancel-button {
    background: #f1f1f1;
    color: #333;
}
.tutorial-prompt-buttons .cancel-button:hover {
    background: #e0e0e0;
}
/* Stylish tutorial button */
.start-tutorial-button {
    background: linear-gradient(90deg, #c0857e 60%, #f39c12 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.8em 2em;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(44,62,80,0.10);
    transition: 0.18s, transform 0.12s;
    margin: 1em 0;
    letter-spacing: 0.5px;
    display: inline-block;
}
.start-tutorial-button:hover {
    background: linear-gradient(90deg, #b7cca5 60%, #e67e22 100%);
    transform: scale(1.04);
}