/* Full screen overlay */
      #loader {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 9999;
        background:#0000 url('/gif/rotcoin6.gif') no-repeat center center;
      }

      body.loading {
        overflow: hidden;   
      }

      body.loaded #loader {
        display: none;
      }

            video {
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
      }

        #cookieConsent {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }
        #acceptCookies {
            padding: 10px 20px;
            background-color: #4CAF50;
            border: none;
            color: white;
            cursor: pointer;
            font-size: 16px;
        }
        
        #rejectCookies {
            padding: 10px 20px;
            background-color: #9CAF50;
            border: none;
            color: white;
            cursor: pointer;
            font-size: 16px;
        }

        body.noscroll {
            overflow: hidden;
        }
