
      
    


      
     


      {} *{} 
     


      #IE-warning {
        display: none;
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: 9999;
        background: white;
      }
      .IE-warning-message {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
      }
    



 * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; line-height: 1.6; color: #ffffff; background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%); min-height: 100vh; } .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } /* Header */ .header { background: rgba(0, 0, 0, 0.9); backdrop-filter: blur(10px); position: fixed; top: 0; left: 0; right: 0; z-index: 1000; border-bottom: 1px solid #333; } .header-content { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; } .logo { font-size: 24px; font-weight: 800; color: #FF4500; text-decoration: none; } .nav-links { display: flex; gap: 30px; list-style: none; } .nav-links a { color: #ffffff; text-decoration: none; font-weight: 500; transition: color 0.3s ease; } .nav-links a:hover { color: #FF4500; } /* Hero Section */ .hero { padding: 120px 0 80px; text-align: center; background: radial-gradient(circle at center, rgba(255, 69, 0, 0.1) 0%, transparent 70%); } .hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; margin-bottom: 20px; background: linear-gradient(135deg, #FF4500, #FF6B35); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .hero-subtitle { font-size: clamp(1.1rem, 2.5vw, 1.4rem); color: #cccccc; margin-bottom: 40px; max-width: 800px; margin-left: auto; margin-right: auto; } .cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 40px; } .btn { padding: 15px 30px; border: none; border-radius: 50px; font-size: 16px; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; transition: all 0.3s ease; cursor: pointer; min-width: 200px; justify-content: center; } .btn-nord { background: linear-gradient(135deg, #4A90E2, #357ABD); color: white; } .btn-nord:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(74, 144, 226, 0.3); } .btn-surf { background: linear-gradient(135deg, #00D4AA, #00B894); color: white; } .btn-surf:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(0, 212, 170, 0.3); } /* Comparison Section */ .comparison { padding: 80px 0; background: rgba(255, 255, 255, 0.02); } .comparison-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; margin-top: 50px; } .vpn-card { background: rgba(255, 255, 255, 0.05); border-radius: 20px; padding: 40px; border: 1px solid rgba(255, 255, 255, 0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; } .vpn-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); } .vpn-card h3 { font-size: 28px; font-weight: 700; margin-bottom: 20px; text-align: center; } .nord-card h3 { color: #4A90E2; } .surf-card h3 { color: #00D4AA; } .features-list { list-style: none; margin-bottom: 30px; } .features-list li { padding: 8px 0; font-size: 16px; } .features-list .pro { color: #4CAF50; } .features-list .con { color: #FF5722; } /* Reddit Quotes */ .reddit-quotes { padding: 80px 0; } .section-title { text-align: center; font-size: 2.5rem; font-weight: 700; margin-bottom: 50px; color: #FF4500; } .quotes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; } .quote-card { background: rgba(255, 69, 0, 0.1); border-left: 4px solid #FF4500; padding: 30px; border-radius: 10px; transition: transform 0.3s ease, opacity 0.3s ease; } .quote-card:hover { transform: translateX(5px); } .quote-card.hidden { opacity: 0.3; transform: scale(0.95); } .quote-text { font-style: italic; font-size: 16px; margin-bottom: 15px; line-height: 1.6; } .quote-author { font-weight: 600; color: #FF4500; font-size: 14px; } /* Filter Buttons */ .filter-buttons { display: flex; gap: 15px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; } .filter-btn { padding: 12px 24px; border: 2px solid rgba(255, 255, 255, 0.2); border-radius: 25px; background: transparent; color: #ffffff; font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; } .filter-btn:hover { border-color: #FF4500; color: #FF4500; } .filter-btn.active { background: #FF4500; border-color: #FF4500; color: #ffffff; } .filter-btn.nord-filter.active { background: #4A90E2; border-color: #4A90E2; } .filter-btn.surf-filter.active { background: #00D4AA; border-color: #00D4AA; } /* Reviews Section */ .reviews-section { padding: 80px 0; background: rgba(255, 255, 255, 0.02); } .vpn-reviews { display: none; animation: fadeInUp 0.6s ease-out; } .vpn-reviews.active { display: block; } .reviews-header { text-align: center; margin-bottom: 50px; } .reviews-title { font-size: 2.5rem; font-weight: 700; margin-bottom: 20px; } .nord-reviews .reviews-title { color: #4A90E2; } .surf-reviews .reviews-title { color: #00D4AA; } .reviews-subtitle { font-size: 1.2rem; color: #cccccc; max-width: 600px; margin: 0 auto; } .detailed-reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; margin-top: 50px; } .detailed-quote { background: rgba(255, 255, 255, 0.05); border-radius: 15px; padding: 30px; border: 1px solid rgba(255, 255, 255, 0.1); position: relative; } .detailed-quote::before { content: '"'; font-size: 4rem; color: rgba(255, 69, 0, 0.3); position: absolute; top: -10px; left: 20px; font-family: serif; } .detailed-quote-text { font-size: 16px; line-height: 1.7; margin-bottom: 20px; color: #ffffff; } .detailed-quote-meta { display: flex; align-items: center; gap: 15px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); } .reddit-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, #FF4500, #FF6B35); display: flex; align-items: center; justify-content: center; font-weight: bold; color: white; } .quote-meta-info { flex: 1; } .reddit-username { font-weight: 600; color: #FF4500; font-size: 14px; } .reddit-subreddit { font-size: 12px; color: #888; } .quote-stats { display: flex; gap: 15px; font-size: 12px; color: #888; } .upvotes { color: #4CAF50; } /* Comparison Table */ .table-section { padding: 80px 0; background: rgba(255, 255, 255, 0.02); } .comparison-table { width: 100%; border-collapse: collapse; margin-top: 50px; background: rgba(255, 255, 255, 0.05); border-radius: 15px; overflow: hidden; } .comparison-table th, .comparison-table td { padding: 20px; text-align: center; border-bottom: 1px solid rgba(255, 255, 255, 0.1); } .comparison-table th { background: rgba(255, 69, 0, 0.2); font-weight: 700; font-size: 18px; } .comparison-table td { font-size: 16px; } /* CTA Section */ .cta-section { padding: 80px 0; text-align: center; background: radial-gradient(circle at center, rgba(255, 69, 0, 0.15) 0%, transparent 70%); } .cta-title { font-size: 2.5rem; font-weight: 700; margin-bottom: 20px; color: #FF4500; } .offer-text { font-size: 1.2rem; color: #cccccc; margin-bottom: 40px; } /* FAQ Section */ .faq-section { padding: 80px 0; } .faq-grid { display: grid; gap: 20px; margin-top: 50px; } .faq-item { background: rgba(255, 255, 255, 0.05); border-radius: 10px; padding: 30px; border: 1px solid rgba(255, 255, 255, 0.1); } .faq-question { font-size: 18px; font-weight: 600; color: #FF4500; margin-bottom: 15px; } .faq-answer { color: #cccccc; line-height: 1.6; } /* Final CTA */ .final-cta { padding: 60px 0; text-align: center; background: linear-gradient(135deg, rgba(255, 69, 0, 0.1), rgba(255, 107, 53, 0.1)); border-top: 1px solid rgba(255, 69, 0, 0.3); } .final-cta h2 { font-size: 2rem; margin-bottom: 30px; color: #ffffff; } /* Responsive Design */ @media (max-width: 768px) { .nav-links { display: none; } .hero h1 { font-size: 2.5rem; } .cta-buttons { flex-direction: column; align-items: center; } .btn { width: 100%; max-width: 300px; } .comparison-grid { grid-template-columns: 1fr; } .quotes-grid { grid-template-columns: 1fr; } .detailed-reviews { grid-template-columns: 1fr; } .comparison-table { font-size: 14px; } .comparison-table th, .comparison-table td { padding: 15px 10px; } .filter-buttons { flex-direction: column; align-items: center; } .filter-btn { width: 100%; max-width: 250px; } } /* Animations */ @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } .fade-in-up { animation: fadeInUp 0.6s ease-out; } /* Scroll animations */ .scroll-reveal { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; } .scroll-reveal.revealed { opacity: 1; transform: translateY(0); } /* Loading animation */ .loading { display: inline-block; width: 20px; height: 20px; border: 3px solid rgba(255, 255, 255, 0.3); border-radius: 50%; border-top-color: #FF4500; animation: spin 1s ease-in-out infinite; } @keyframes spin { to { transform: rotate(360deg); } } 

