
.risk-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    z-index: 1000;
    padding: 12px 16px;
    display: none;
  }
  
  .risk-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .risk-text {
    font-size: 13px;
    color: #333;
    margin-bottom: 4px;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(255,255,255,0.8);
  }
  
  .risk-text strong {
    color: #000;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(255,255,255,0.9);
  }
  
  .company-info {
    font-size: 11px;
    color: #555;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(255,255,255,0.8);
  }
  
  body {
    padding-bottom: 0 !important;
  }
  
  @media (max-width: 768px) {
    .risk-notice {
      padding: 10px 12px;
    }
    
    .risk-text {
      font-size: 12px;
      text-shadow: 0 1px 3px rgba(255,255,255,0.9);
    }
    
    .risk-text strong {
      text-shadow: 0 1px 3px rgba(255,255,255,1);
    }
    
    .company-info {
      font-size: 10px;
      text-shadow: 0 1px 3px rgba(255,255,255,0.9);
    }
    
    body {
      padding-bottom: 0 !important;
    }
  }
  