/* Article Container */
.article-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
  line-height: 1.85;
}

/* Headings */
.article-container h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: #111827;
}

.dark .article-container h1 {
  color: #f9fafb;
}

.article-container h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 56px;
  margin-bottom: 16px;
  color: #111827;
}

.dark .article-container h2 {
  color: #f9fafb;
}

.article-container h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 8px;
  color: #374151;
}

.dark .article-container h3 {
  color: #d1d5db;
}

/* Paragraphs */
.article-container p {
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 18px;
}

.dark .article-container p {
  color: #9ca3af;
}

/* Lists */
.article-container ul,
.article-container ol {
  margin: 16px 0 24px 20px;
}

.article-container li {
  margin-bottom: 10px;
  color: #374151;
}

.dark .article-container li {
  color: #d1d5db;
}

/* Links */
.article-container a {
  color: #e60023;
  font-weight: 500;
  text-decoration: none;
}

.article-container a:hover {
  text-decoration: underline;
}

/* PAA Section */
.paa-section {
  margin-top: 80px;
  padding: 40px;
  border-radius: 20px;
  background: #fafafa;
}

.dark .paa-section {
  background: #141414;
}

.paa-section h2 {
  margin-top: 0;
}

.paa-section h3 {
  margin-top: 24px;
}

/* FAQ Section */
.faq-section {
  max-width: 800px;
  margin: 80px auto 0;
  padding: 0 20px;
}

.faq-item {
  border-radius: 16px;
  background: #ffffff;
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.dark .faq-item {
  background: #141414;
  border-color: #262626;
}

.faq-question {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  color: #111827;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dark .faq-question {
  color: #f9fafb;
}

.faq-answer {
  padding: 0 22px 18px;
  color: #4b5563;
  display: none;
}

.dark .faq-answer {
  color: #9ca3af;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Disclaimer Section */
.disclaimer-section {
  margin-top: 80px;
  padding: 32px;
  border-radius: 18px;
  background: #fff7f7;
  border: 1px solid rgba(230, 0, 35, 0.15);
}

.dark .disclaimer-section {
  background: rgba(230, 0, 35, 0.08);
  border-color: rgba(230, 0, 35, 0.25);
}


@media (max-width: 768px) {
  .article-container {
    padding: 40px 16px;
  }

  .article-container h1 {
    font-size: 2rem;
  }

  .article-container h2 {
    font-size: 1.5rem;
  }

  .paa-section {
    padding: 24px;
  }
}












 * { font-family: 'Inter', system-ui, sans-serif; }
        
        /* Animations */
        @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
        @keyframes pulse-glow { 0%, 100% { box-shadow: 0 0 15px rgba(230, 0, 35, 0.3); } 50% { box-shadow: 0 0 30px rgba(230, 0, 35, 0.6); } }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
        @keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
        @keyframes ripple { to { transform: scale(4); opacity: 0; } }
        
        .animate-float { animation: float 3s ease-in-out infinite; }
        .animate-pulse-glow { animation: pulse-glow 2s ease-in-out infinite; }
        .animate-fade-in { animation: fadeIn 0.5s ease-out forwards; }
        .animate-spin { animation: spin 1s linear infinite; }
        
        /* Button Effects */
        .btn-primary {
            background: linear-gradient(135deg, #e60023 0%, #ad081b 100%);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        .btn-primary:hover:not(:disabled) { 
            transform: translateY(-3px); 
            box-shadow: 0 15px 35px rgba(230, 0, 35, 0.4); 
        }
        .btn-primary:active:not(:disabled) { transform: translateY(-1px); }
        .btn-primary:disabled { opacity: 0.7; cursor: not-allowed; }
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
            transition: left 0.6s ease;
        }
        .btn-primary:hover:not(:disabled)::before { left: 100%; }
        
        .btn-secondary {
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .btn-secondary:hover { 
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        .dark .btn-secondary:hover {
            box-shadow: 0 8px 25px rgba(0,0,0,0.4);
        }
        
        /* Card Effects */
        .card-hover { 
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid transparent;
        }
        .card-hover:hover { 
            transform: translateY(-8px); 
            box-shadow: 0 25px 50px rgba(0,0,0,0.12);
            border-color: rgba(230, 0, 35, 0.2);
        }
        .dark .card-hover:hover { 
            box-shadow: 0 25px 50px rgba(0,0,0,0.5);
            border-color: rgba(230, 0, 35, 0.3);
        }
        
        /* Glass Effect */
        .glass { 
            backdrop-filter: blur(20px); 
            background: rgba(255,255,255,0.85);
            border-bottom: 1px solid rgba(255,255,255,0.3);
        }
        .dark .glass { 
            background: rgba(10,10,10,0.85);
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        
        /* Feature Cards */
        .feature-card {
            transition: all 0.4s ease;
            background: white;
        }
        .dark .feature-card { background: #141414; }
        .feature-card:hover { 
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 20px 40px rgba(230, 0, 35, 0.15);
        }
        .feature-card:hover .feature-icon { 
            transform: scale(1.15) rotate(5deg);
            background: linear-gradient(135deg, #e60023, #ff6b6b);
        }
        .feature-icon { 
            transition: all 0.4s ease;
            background: #fef2f2;
        }
        .dark .feature-icon { background: rgba(230, 0, 35, 0.15); }
        
        /* Gradient Text */
        .gradient-text { 
            background: linear-gradient(135deg, #e60023 0%, #ff6b6b 50%, #e60023 100%);
            background-size: 200% auto;
            -webkit-background-clip: text; 
            -webkit-text-fill-color: transparent; 
            background-clip: text;
            animation: shimmer 3s linear infinite;
        }
        
        /* Scrollbar */
        ::-webkit-scrollbar { width: 8px; height: 8px; }
        ::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 4px; }
        ::-webkit-scrollbar-thumb { background: #e60023; border-radius: 4px; }
        ::-webkit-scrollbar-thumb:hover { background: #ad081b; }
        .dark ::-webkit-scrollbar-track { background: #1a1a1a; }
        
        /* Input Focus */
        .input-glow:focus { 
            box-shadow: 0 0 0 4px rgba(230, 0, 35, 0.12);
            border-color: #e60023;
        }
        
        /* Toast */
        .toast {
            position: fixed;
            bottom: 24px;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            padding: 14px 28px;
            border-radius: 14px;
            z-index: 9999;
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        }
        .toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
        .toast.success { background: linear-gradient(135deg, #10b981, #059669); color: white; }
        .toast.error { background: linear-gradient(135deg, #ef4444, #dc2626); color: white; }
        .toast.info { background: linear-gradient(135deg, #3b82f6, #2563eb); color: white; }
        
        /* Video Badge */
        .video-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: rgba(0,0,0,0.75);
            backdrop-filter: blur(8px);
            color: white;
            padding: 6px 12px;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        /* Skeleton Loading */
        .skeleton {
            background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
            background-size: 200% 100%;
            animation: shimmer 1.5s infinite;
            border-radius: 8px;
        }
        .dark .skeleton {
            background: linear-gradient(90deg, #262626 25%, #333 50%, #262626 75%);
            background-size: 200% 100%;
        }
        
        /* Smooth transitions */
        body, .transition-colors { transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease; }
        
        /* Ripple Effect */
        .ripple {
            position: absolute;
            border-radius: 50%;
            background: rgba(255,255,255,0.4);
            animation: ripple 0.6s linear;
            pointer-events: none;
        }
        
        /* How it works steps */
        .step-number {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.25rem;
            background: linear-gradient(135deg, #e60023, #ff6b6b);
            color: white;
            flex-shrink: 0;
        }