body {
    font-family: sans-serif;
    background-color: #000;
    color: #fff; 
    margin: 0;
    padding: 0;
    overflow: hidden; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    min-height: 100vh; 
}

#anime-container {
    display: none; 
    position: relative; 
    width: 100vw; 
    height: 100vh; 
}

#video-frame {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
}

#watermark-background {
    position: absolute;
    top: 20px;
    right: 0px;
    width: 10%; 
    height: 20%; 
    border-radius: 5px; 
    z-index: 9; 
}

.custom-image {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 10%;
    height: auto;
    border-radius: 5px;

    opacity: 1; 
    cursor: pointer;
    z-index: 10;
}

#no-id-message {
    text-align: center;
    font-size: 1.5em;
}

#no-id-message a {
    color: #00aaff; 
    text-decoration: underline;
}

#no-id-message a:hover {
    color: #00eeff; 
}

#click-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent; 
    z-index: 5; 
    cursor: pointer;
}

#adblock-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 100;
    padding: 20px;
}

#adblock-message h2 {
    color: #ff4545;
    margin-bottom: 20px;
    font-size: 2em;
}

#adblock-message p {
    font-size: 1.2em;
    max-width: 80%;
}

#ad-bait {
    pointer-events: none;
    opacity: 0;
}