/* High-Energy Production-Ready Layout: Bright White, Flash Animations, and Multi-Payment Support */
:root {
  --mrr-bg: #ffffff;
  --mrr-ink: #000000;
  --mrr-muted: #555555;
  --mrr-accent: #ff0000; /* Flashy Red */
  --mrr-accent-2: #007bff; /* Trust Blue */
  --mrr-border: rgba(0, 0, 0, 0.08);
  --mrr-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
  --mrr-radius: 16px;
  --mrr-container: min(1200px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--mrr-bg);
  color: var(--mrr-ink);
  font-family: 'Manrope', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Scrolling Background Effect */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(45deg, #ffffff 25%, #fcfcfc 25%, #fcfcfc 50%, #ffffff 50%, #ffffff 75%, #fcfcfc 75%, #fcfcfc 100%);
  background-size: 100px 100px;
  z-index: -1;
  animation: bgScroll 20s linear infinite;
  opacity: 0.5;
}

@keyframes bgScroll {
  from { background-position: 0 0; }
  to { background-position: 100px 100px; }
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.mrr-container { width: var(--mrr-container); margin: 0 auto; }

/* Flash Animation */
.flash-animate {
  animation: flash 1.5s ease-in-out infinite;
}
@keyframes flash {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; transform: scale(1.02); }
}

.mrr-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--mrr-border);
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.mrr-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}
.mrr-brand img { height: 55px; width: auto; }
.mrr-top-nav { display: flex; gap: 30px; font-weight: 700; font-size: 0.95rem; }
.mrr-top-nav a:hover { color: var(--mrr-accent); }

.mrr-hero { padding: 60px 0 100px; text-align: center; position: relative; }
.mrr-hero-bundle-image { margin-bottom: 50px; position: relative; }
.mrr-hero-bundle-image img { 
  margin: 0 auto; 
  border-radius: var(--mrr-radius); 
  box-shadow: 0 30px 70px rgba(0,0,0,0.15); 
  max-width: 950px;
  transition: transform 0.5s ease;
}
.mrr-hero-bundle-image:hover img { transform: scale(1.01); }

.mrr-hero h1 { font-size: clamp(2.8rem, 7vw, 5rem); margin: 0 0 25px; line-height: 1.05; font-weight: 800; letter-spacing: -0.03em; }
.mrr-hero .mrr-lead { font-size: 1.4rem; max-width: 850px; margin: 0 auto 45px; color: var(--mrr-muted); font-weight: 500; }

.mrr-section { padding: 100px 0; border-bottom: 1px solid var(--mrr-border); }
.mrr-section-title { text-align: center; margin-bottom: 60px; }
.mrr-section-title h2 { font-size: clamp(2.2rem, 5vw, 3.5rem); margin-bottom: 20px; font-weight: 800; }

.mrr-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 45px;
  font-size: 1.2rem;
  font-weight: 900;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.mrr-button--primary { 
  background: linear-gradient(to right, #ff0000, #cc0000); 
  color: #fff; 
  box-shadow: 0 10px 25px rgba(255, 0, 0, 0.3);
}
.mrr-button--primary:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 15px 35px rgba(255, 0, 0, 0.4); }

/* Payment Modal Styles */
.mrr-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0; top: 0; width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.8);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
}
.mrr-modal-content {
  background-color: #fff;
  padding: 40px;
  border-radius: 24px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  position: relative;
  animation: modalSlideUp 0.4s ease;
}
@keyframes modalSlideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.mrr-modal-close {
  position: absolute;
  right: 20px; top: 20px;
  font-size: 28px; font-weight: bold; cursor: pointer;
}
.mrr-payment-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 30px;
}
.mrr-payment-btn {
  padding: 15px;
  border: 2px solid #eee;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.mrr-payment-btn:hover { border-color: var(--mrr-accent-2); background: #f0f7ff; }
.mrr-payment-btn img { height: 30px; width: auto; }

.mrr-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 35px;
}
.mrr-product-card {
  background: #fff;
  border: 1px solid var(--mrr-border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.mrr-product-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); border-color: var(--mrr-accent-2); }
.mrr-product-image { aspect-ratio: 1; overflow: hidden; background: #fcfcfc; }
.mrr-product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.mrr-product-card:hover .mrr-product-image img { transform: scale(1.1); }

.mrr-pricing-card {
  background: #fff;
  max-width: 550px;
  margin: 0 auto;
  padding: 60px;
  border-radius: 30px;
  border: 3px solid var(--mrr-accent);
  box-shadow: 0 40px 80px rgba(0,0,0,0.12);
  position: relative;
  overflow: hidden;
}
.mrr-pricing-card::before {
  content: "BEST VALUE";
  position: absolute;
  top: 20px; right: -35px;
  background: var(--mrr-accent);
  color: #fff;
  padding: 10px 40px;
  transform: rotate(45deg);
  font-weight: 900;
  font-size: 0.8rem;
}

.mrr-footer { padding: 80px 0; background: #000; color: #fff; }
.mrr-footer-links a { color: #888; transition: color 0.2s; }
.mrr-footer-links a:hover { color: #fff; }

@media (max-width: 768px) {
  .mrr-hero h1 { font-size: 2.8rem; }
  .mrr-payment-options { grid-template-columns: 1fr; }
}
