:root { 
  --bg: #0b0c10; 
  --fg: #eaeaea; 
  --muted: #9aa0a6; 
  --accent: #00d187;
  --hero-bg: #f6d46b;
  --description-bg: #f5f7ee;
  --button-bg: #72559f;
}

html, body { 
  margin: 0; 
  padding: 0; 
  background: var(--bg); 
  color: var(--fg); 
  font-family: -apple-system, system-ui, Segoe UI, Roboto, sans-serif;
  scroll-behavior: smooth;
}

.container { 
  width: 100%; 
  max-width: 980px; 
  margin: 0 auto; 
  padding: 16px; 
}

.main-content {
  margin: 0;
  padding: 0;
}

.site-header, .site-footer { 
  border-bottom: 1px solid #222; 
  border-top: 1px solid #222; 
  position: relative;
  z-index: 100;
}

.site-header .logo { 
  font-weight: 700; 
  color: var(--fg); 
  text-decoration: none; 
  margin-right: 16px; 
}

nav a, .linklike { 
  color: var(--fg); 
  text-decoration: none; 
  margin-right: 12px; 
  background: none; 
  border: none; 
  cursor: pointer; 
  font: inherit; 
}

/* Hero Block */
.hero-block {
  background: var(--hero-bg);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
}

.hero-content {
  display: flex;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  padding: 0 40px;
  gap: 60px;
}

.hero-left, .hero-right {
  flex: 1;
}

.hero-image {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin: 0 0 20px 0;
  color: #333;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin: 0 0 40px 0;
  color: #555;
  line-height: 1.4;
}

.btn-primary {
  display: inline-block;
  background: var(--button-bg);
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(114, 85, 159, 0.3);
}

/* Description Block */
.description-block {
  background: var(--description-bg);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
}

.description-content {
  display: flex;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  padding: 0 40px;
  gap: 60px;
}

.description-left {
  flex: 1;
}

.description-right {
  flex: 1;
  text-align: center;
}

.description-title {
  font-size: 3rem;
  font-weight: 800;
  margin: 0 0 30px 0;
  color: #333;
}

.description-text {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

.description-gif {
  width: 100%;
  max-width: 400px;
  height: auto;
}

/* Pricing Block */
.pricing-block {
  background: var(--hero-bg);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
}

.pricing-content {
  max-width: 1200px;
  width: 100%;
  padding: 0 40px;
  text-align: center;
}

.pricing-title {
  font-size: 3rem;
  font-weight: 800;
  margin: 0 0 60px 0;
  color: #333;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  min-width: 280px;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 320px;
}

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

.discount-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 10;
}

.discount-image {
  width: 80px;
  height: auto;
}

.pricing-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}

.plan-image {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
}

.plan-price {
  font-size: 2rem;
  font-weight: 700;
  margin: 20px 0 0 0;
  color: #333;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content, .description-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding: 0 20px;
  }
  
  .description-content {
    flex-direction: column-reverse;
  }
  
  .hero-title, .description-title, .pricing-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .description-text {
    font-size: 1.1rem;
  }
  
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }
}

/* Legacy styles for other pages */
.btn { 
  display: inline-block; 
  background: var(--accent); 
  color: #00120b; 
  padding: 10px 16px; 
  border-radius: 8px; 
  text-decoration: none; 
  font-weight: 600; 
}

.pricing-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
  gap: 16px; 
}

.card { 
  border: 1px solid #222; 
  border-radius: 12px; 
  padding: 16px; 
  background: #111; 
}

.price { 
  font-size: 20px; 
}

.actions .btn { 
  margin-right: 12px; 
}

.plan-select label { 
  display: block; 
  margin-bottom: 8px; 
}

/* Payment Page Styles */
.payment-section {
  background: var(--bg);
  min-height: 100vh;
  padding: 80px 0;
  color: var(--fg);
}

.payment-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin: 0 0 40px 0;
  color: var(--fg);
}

.current-subscription {
  background: #1a1d23;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 20px;
  margin: 0 0 40px 0;
  text-align: center;
}

.current-subscription h3 {
  color: var(--accent);
  margin: 0 0 10px 0;
  font-size: 1.2rem;
}

.current-subscription p {
  margin: 0;
  color: var(--fg);
}

.pricing-plans {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 0 0 40px 0;
  flex-wrap: wrap;
}

.plan-card {
  background: #1a1d23;
  border: 2px solid #333;
  border-radius: 16px;
  padding: 30px 25px;
  min-width: 280px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
}

.plan-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.plan-card.selected {
  border-color: var(--accent);
  background: #1e2328;
  box-shadow: 0 0 20px rgba(0, 209, 135, 0.2);
}

.plan-card .discount-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 10;
}

.plan-card .discount-tag {
  width: 60px;
  height: auto;
}

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

.plan-icon {
  width: 80px;
  height: auto;
  margin-bottom: 15px;
}

.plan-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  color: var(--fg);
}

.plan-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  margin: 10px 0 5px 0;
}

.plan-period {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.plan-savings {
  background: var(--accent);
  color: #000;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  display: inline-block;
}

.plan-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-features li {
  color: var(--fg);
  padding: 8px 0;
  border-bottom: 1px solid #333;
  font-size: 0.9rem;
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features li:before {
  content: "✓";
  color: var(--accent);
  font-weight: bold;
  margin-right: 10px;
}

.payment-container {
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
}

#paypal-button-container {
  margin-top: 20px;
}

/* Responsive for payment page */
@media (max-width: 768px) {
  .pricing-plans {
    flex-direction: column;
    align-items: center;
  }
  
  .plan-card {
    max-width: 300px;
    width: 100%;
  }
  
  .payment-title {
    font-size: 2rem;
  }
}

/* Continue button */
.btn-continue {
  background: var(--accent);
  color: #000;
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 200px;
}

.btn-continue:hover {
  background: #00b876;
  transform: translateY(-2px);
}

/* Payment Methods Page */
.payment-methods-section {
  background: #f5f7ee;
  min-height: 100vh;
  padding: 80px 0;
  color: #333;
}

.payment-methods-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin: 0 0 40px 0;
  color: #333;
}

.selected-plan-info {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  margin: 0 0 40px 0;
  text-align: center;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.selected-plan-info p {
  margin: 5px 0;
  color: #333;
}

.selected-plan-info .plan-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.payment-methods {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.payment-method-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  padding: 40px 30px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.payment-method-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.payment-method-header {
  margin-bottom: 20px;
}

.payment-logo {
  width: 120px;
  height: auto;
  margin-bottom: 15px;
}

.payment-method-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  color: #333;
}

.payment-description {
  color: #666;
  margin: 0 0 30px 0;
  line-height: 1.4;
}

#paypal-button-container {
  margin-top: 20px;
}

/* Responsive for payment methods */
@media (max-width: 768px) {
  .payment-methods-title {
    font-size: 2rem;
  }
  
  .payment-method-card {
    margin: 0 20px;
  }
}

/* App Page Styles */
.app-hero-block {
  background: var(--hero-bg);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
}

.app-hero-content {
  display: flex;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  padding: 0 40px;
  gap: 60px;
}

.app-hero-left, .app-hero-right {
  flex: 1;
}

.app-hero-image {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.app-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin: 0 0 20px 0;
  color: #333;
}

.app-hero-subtitle {
  font-size: 1.5rem;
  margin: 0 0 40px 0;
  color: #555;
  line-height: 1.4;
}

.app-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.app-actions .btn-primary {
  min-width: 180px;
  text-align: center;
}

/* Responsive for app page */
@media (max-width: 768px) {
  .app-hero-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding: 0 20px;
  }
  
  .app-hero-title {
    font-size: 2.5rem;
  }
  
  .app-hero-subtitle {
    font-size: 1.2rem;
  }
  
  .app-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .app-actions .btn-primary {
    width: 100%;
    max-width: 300px;
  }
}