
      
    


      
     


      {} *{} {}
     


      #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;
      }
    



 :root { --primary: #1a56db; --primary-dark: #1e40af; --accent: #f59e0b; } * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif; background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%); min-height: 100vh; display: flex; align-items: center; justify-content: center; line-height: 1.6; font-size: 17px; padding: 40px 20px; } h1, h2 { font-family: 'Fraunces', Georgia, serif; line-height: 1.2; } .container { max-width: 600px; margin: 0 auto; text-align: center; color: white; } .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.2); padding: 8px 16px; border-radius: 50px; font-size: 14px; font-weight: 500; margin-bottom: 24px; } .hero-badge svg { color: #34d399; } h1 { font-size: clamp(28px, 5vw, 38px); margin-bottom: 16px; font-weight: 700; } h1 span { color: #60a5fa; } .score-box { background: linear-gradient(135deg, rgba(52, 211, 153, 0.2) 0%, rgba(16, 185, 129, 0.1) 100%); border: 2px solid rgba(52, 211, 153, 0.4); border-radius: 16px; padding: 24px; max-width: 320px; margin: 0 auto 32px; } .score-label { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; opacity: 0.8; margin-bottom: 8px; } .score-value { font-family: 'Fraunces', Georgia, serif; font-size: 48px; font-weight: 700; color: #34d399; } .score-value span { font-size: 24px; opacity: 0.7; color: white; } .score-interpretation { margin-top: 12px; font-size: 15px; color: #fbbf24; font-weight: 600; } .message-box { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 12px; padding: 24px; margin-bottom: 32px; text-align: left; } .message-box p { margin-bottom: 16px; font-size: 17px; opacity: 0.95; } .message-box p:last-child { margin-bottom: 0; } .message-box strong { color: #fbbf24; } .cta-section { margin-top: 32px; } .cta-text { font-size: 22px; font-weight: 600; margin-bottom: 20px; color: #fbbf24; } .cta-button { display: inline-flex; align-items: center; gap: 10px; color: #000; text-decoration: none; font-weight: 700; font-size: 18px; padding: 18px 36px; background: var(--accent); border-radius: 8px; transition: all 0.3s ease; } .cta-button:hover { background: #d97706; transform: translateY(-2px); } .cta-button svg { transition: transform 0.3s ease; } .cta-button:hover svg { transform: translateX(4px); } .footer-note { margin-top: 20px; font-size: 14px; opacity: 0.6; } @media (max-width: 600px) { .container { padding: 0 16px; } .score-value { font-size: 40px; } } 

