  body {
      margin: 0;
      padding: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: white;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
    }
    
   .ch4-card {
      background: white;
      border-radius: 20px;
      padding: 30px;
      box-shadow: inset 0 0 20px rgba(33, 150, 243, 0.15);
      text-align: center;
      min-width: 280px;
      max-width: 400px;
      border: 2px solid #90caf9;
    }
    
    .ch4-title {
      font-size: 18px;
      color: #424242;
      font-weight: 600;
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    
    .ch4-value {
      font-size: 52px;
      font-weight: bold;
      color: #424242;
      margin: 10px 0;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
    }
    
    .ch4-meta {
      font-size: 14px;
      color: #616161;
      margin-top: 5px;
      margin-bottom: 15px;
      font-style: italic;
    }
    
    .footer-copyright {
      margin-top: 15px;
      padding-top: 15px;
      border-top: 1px solid #e3f2fd;
      font-size: 10px;
      color: #757575;
      line-height: 1.4;
    }
    
    .footer-copyright a {
      color: #42a5f5;
      text-decoration: none;
      font-weight: 500;
    }
    
    .footer-copyright a:hover {
      text-decoration: underline;
    }
    
    /* Mobil optimalizálás */
    @media (max-width: 480px) {
      .ch4-card {
        padding: 20px;
        min-width: 240px;
      }
      
      .ch4-value {
        font-size: 42px;
      }
    }