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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #fff;
}

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

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

/* Header */
header {
  background: #000;
  color: #fff;
  padding: 16px 0;
  border-bottom: 2px solid #ff4b4b;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.logo span {
  color: #ff4b4b;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-size: 15px;
  opacity: 0.8;
}

nav a:hover {
  opacity: 1;
}

/* Hero */
.hero {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, #f5f5f5 100%);
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero h1 span {
  color: #ff4b4b;
}

.hero p {
  font-size: 20px;
  color: #555;
  max-width: 600px;
  margin: 0 auto 40px;
}

.cta-button {
  display: inline-block;
  background: #ff4b4b;
  color: #fff;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.1s;
}

.cta-button:hover {
  transform: translateY(-2px);
}

.cta-button.secondary {
  background: #fff;
  color: #000;
  border: 2px solid #000;
  margin-left: 12px;
}

/* Features */
.features {
  padding: 80px 0;
}

.features h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 60px;
}

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

.feature {
  padding: 30px;
  background: #fafafa;
  border-radius: 16px;
}

.feature h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #ff4b4b;
}

.feature p {
  color: #555;
}

/* Pricing */
.pricing {
  padding: 80px 0;
  background: #fafafa;
}

.pricing h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 16px;
}

.pricing-subtitle {
  text-align: center;
  color: #555;
  margin-bottom: 50px;
  font-size: 17px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.plan {
  background: #fff;
  border: 2px solid #eee;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
}

.plan.featured {
  border-color: #ff4b4b;
  position: relative;
}

.plan.featured::before {
  content: "MOST POPULAR";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff4b4b;
  color: #fff;
  padding: 4px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}

.plan h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.plan .price {
  font-size: 42px;
  font-weight: 800;
  margin: 16px 0 4px;
}

.plan .price-suffix {
  color: #888;
  font-size: 14px;
  margin-bottom: 8px;
}

.plan .save {
  color: #ff4b4b;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.plan ul {
  list-style: none;
  margin: 24px 0;
  text-align: left;
}

.plan ul li {
  padding: 8px 0;
  color: #444;
}

.plan ul li::before {
  content: "✓ ";
  color: #ff4b4b;
  font-weight: 700;
  margin-right: 8px;
}

.plan-button {
  display: block;
  background: #1a1a1a;
  color: #fff;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s;
}

.plan.featured .plan-button {
  background: #ff4b4b;
}

.plan-button:hover {
  background: #333;
}

.plan.featured .plan-button:hover {
  background: #e63b3b;
}

.plan .alt-link {
  display: block;
  margin-top: 14px;
  color: #888;
  font-size: 13px;
  text-decoration: none;
}

.plan .alt-link:hover {
  color: #ff4b4b;
  text-decoration: underline;
}

/* Footer */
footer {
  background: #000;
  color: #aaa;
  padding: 40px 0;
  text-align: center;
}

footer a {
  color: #aaa;
  text-decoration: none;
  margin: 0 14px;
}

footer a:hover {
  color: #fff;
}

footer .copyright {
  margin-top: 20px;
  font-size: 13px;
  color: #666;
}

/* Static pages */
.page-content {
  padding: 60px 0;
}

.page-content h1 {
  font-size: 36px;
  margin-bottom: 24px;
}

.page-content h2 {
  font-size: 24px;
  margin: 30px 0 16px;
}

.page-content p {
  margin-bottom: 16px;
  color: #333;
}

.page-content ul {
  margin: 0 0 16px 24px;
  color: #333;
}

.page-content ul li {
  margin-bottom: 6px;
}

.page-content a {
  color: #ff4b4b;
}

.page-content .updated {
  color: #888;
  font-size: 14px;
  margin-bottom: 30px;
}

/* Checkout page */
.checkout {
  padding: 60px 0;
  min-height: calc(100vh - 200px);
}

.checkout-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 40px;
  max-width: 480px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.checkout-card h1 {
  font-size: 28px;
  margin-bottom: 8px;
}

.checkout-plan-info {
  background: #fafafa;
  padding: 20px;
  border-radius: 12px;
  margin: 24px 0;
}

.checkout-plan-info .plan-name {
  font-weight: 600;
  font-size: 18px;
}

.checkout-plan-info .plan-price {
  font-size: 28px;
  font-weight: 800;
  margin-top: 8px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 14px;
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 16px;
  font-family: inherit;
}

.form-group input:focus {
  outline: none;
  border-color: #ff4b4b;
}

.payment-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.pay-button {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.pay-card {
  background: #1a1a1a;
  color: #fff;
}

.pay-crypto {
  background: #fff;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
}

.pay-button:hover {
  opacity: 0.9;
}

.checkout-disclaimer {
  text-align: center;
  font-size: 13px;
  color: #888;
  margin-top: 24px;
}

/* Language switcher */
.lang-switcher {
  display: inline-flex;
  gap: 4px;
  margin-left: 16px;
  font-size: 13px;
}

.lang-switcher a {
  color: #fff;
  opacity: 0.5;
  text-decoration: none;
  padding: 2px 6px;
  border-radius: 4px;
}

.lang-switcher a.active {
  opacity: 1;
  background: rgba(255, 75, 75, 0.2);
  color: #ff4b4b;
}

.lang-switcher a:hover {
  opacity: 1;
}

@media (max-width: 600px) {
  .hero h1 { font-size: 36px; }
  .hero p { font-size: 17px; }
  nav { width: 100%; text-align: center; }
  nav a { margin: 0 10px; }
}

/* ===== SEO additions: video, how-it-works, faq ===== */

/* Video embed (responsive 16:9) */
.video-wrap {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin: 70px auto 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  aspect-ratio: 16 / 9;
  background: #000;
}

/* fallback for browsers without aspect-ratio support */
@supports not (aspect-ratio: 16 / 9) {
  .video-wrap { height: 0; padding-bottom: 56.25%; }
}

.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* How it works */
.how {
  padding: 80px 0;
}

.how h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 60px;
}

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

.step {
  text-align: center;
  padding: 20px;
}

.step-num {
  width: 52px;
  height: 52px;
  line-height: 52px;
  margin: 0 auto 18px;
  background: #ff4b4b;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  border-radius: 50%;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.step p {
  color: #555;
}

/* Disclaimer note */
.disclaimer-note {
  font-size: 12px;
  color: #888;
  text-align: center;
  margin: -30px auto 30px;
}

/* FAQ */
.faq {
  padding: 80px 0;
  background: #fafafa;
}

.faq h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
}

.faq-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 16px;
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.faq-item p {
  color: #555;
}

.faq-cta {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

@media (max-width: 600px) {
  .how h2, .faq h2 { font-size: 28px; }
  .video-wrap { margin-top: 36px; }
}

/* Content text blocks on SEO pages */
.content-block {
  max-width: 760px;
  margin: 0 auto 50px;
}
.content-block p {
  color: #444;
  font-size: 17px;
  margin-bottom: 18px;
}
.features h2 + .content-block { margin-top: 0; }

/* Internal links section */
.learn-more {
  padding: 60px 0;
  border-top: 1px solid #eee;
}
.learn-more h2 {
  font-size: 24px;
  text-align: center;
  margin-bottom: 30px;
}
.learn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  max-width: 760px;
  margin: 0 auto;
}
.learn-grid a {
  display: block;
  padding: 16px 20px;
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 12px;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 500;
  transition: border-color 0.2s;
}
.learn-grid a:hover {
  border-color: #ff4b4b;
  color: #ff4b4b;
}

/* Timestamp highlight banner */
.timestamp-banner {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: 70px 0;
}
.timestamp-banner .ts-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.timestamp-banner h2 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 20px;
  line-height: 1.25;
}
.timestamp-banner p {
  color: #cfcfcf;
  font-size: 18px;
  margin-bottom: 28px;
}
.timestamp-banner strong {
  color: #ff4b4b;
}
@media (max-width: 600px) {
  .timestamp-banner h2 { font-size: 25px; }
}

/* Footer badges */
.footer-badges {
  margin: 20px 0 10px;
  text-align: center;
}
.footer-badges a {
  display: inline-block;
  margin: 0 6px;
}
