#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }
.cookies-box {
    width: 700px;
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: #e3f2fd;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 30px;
    opacity: 1;
    transition: opacity 0.3s ease;
    font-size: 16px;
}
.cookies-box img {
    height: 110px;
    animation: rotate 5s linear infinite;
}
.cookies-box h3 {
    color: #333;
    font-size: 23px;
    padding: 5px 0;
}
.cookies-box p {
    color: #666;
    font-size: 13px;
    padding: 5px 0;
    line-height: 1.8;
}
.cookies-box .accept {
    background: linear-gradient(to bottom, #FFD42A 0%, #F9A632 50%, #F58225 100%);
    border: 2.5px solid #F09824;
    text-shadow:
        -1px -1px 0 #A77D52,
        1px -1px 0 #A77D52,
        -1px 1px 0 #A77D52,
        1px 1px 0 #A77D52;
    color: #fff;
    border-radius: 5px;
    display: block;
    margin: 15px 0;
    padding: 10px;
}
.cookies-box .accept:hover {
    transform: scale(1.05);
}
