
  #cookieOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    /* Скрываем по умолчанию, пока JS не решит показать */
    display: none;
  }

  #cookieModal {
    background: #fff;
    max-width: 500px;
    width: 90%;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    font-family: Arial, sans-serif;
    line-height: 1.5;
    color: #333;
  }

  #cookieModal p {
    margin-top: 0;
    font-size: 15px;
  }

  #cookieModal a {
    color: #0066cc;
    text-decoration: underline;
  }

  #cookieModal button {
    background: #28a745;
    color: white;
    border: none;
    padding: 10px 30px;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
  }

  #cookieModal button:hover {
    background: #218838;
  }