.no-select,
#click-reveal-light, #click-reveal-dark {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.a-link {
    color: var(--text-secondary);
    text-decoration: none;
}

.a-link:hover {
    color: var(--text-primary);
}


#click-reveal, #click-reveal-light, #click-reveal-dark {
    color: transparent;
    background-repeat: repeat;
}

#click-reveal-light {
    background-image: url('./../img/textures/noise-light.png');
}

#click-reveal-dark {
    background-image: url('./../img/textures/noise-dark.png');
}


.impressum-flex {
    display: flex;
    flex-direction: row;
}

.impressum-flex .side {
    flex: 1;
}

.impressum-flex .side:first-child {
    margin-right: 20px;
}


.pvtube-copy-btn { position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    backdrop-filter: blur(5px);
}

.pvtube-copy-btn:hover { background: var(--theme-primary);
    border-color: var(--theme-primary);
    transform: scale(1.05);
}

.pvtube-copy-btn.success { background: #28a745;
    border-color: #28a745;
}

.pvtube-copy-btn span { font-family: monospace;
    letter-spacing: 0.5px;
}


.cookie-wrap { position: fixed; bottom: 25px; right: 25px; z-index: 100000; display: flex; justify-content: flex-end; pointer-events: none; }
.cookie-card { pointer-events: all; width: 100%; max-width: 350px; background: var(--bg-dark); border: 1px solid var(--theme-t2); border-radius: 16px; box-shadow: 0 15px 50px rgba(0,0,0,0.4); overflow: hidden; }
.cookie-header { background: var(--bg-secondary); padding: 12px 18px; border-bottom: 1px solid var(--theme-t2); display: flex; align-items: center; gap: 12px; }
.cookie-status { font-family: monospace; font-size: 10px; color: var(--pandacy); letter-spacing: 1px; font-weight: bold; }
.cookie-body { padding: 18px; color: var(--text-secondary); font-size: 0.9rem; line-height: 1.4; }
.cookie-body-title { color: var(--text-primary); font-weight: bold; margin-bottom: 8px; }
.cookie-footer { padding: 12px 18px 18px; background: var(--bg-dark); display: flex; flex-direction: column; gap: 8px; }
.cookie-btn-action { border: none; padding: 10px; border-radius: 10px; font-weight: bold; font-size: 11px; text-transform: uppercase; transition: 0.2s; cursor: pointer; width: 100%; }
.cookie-btn-feed { background: var(--pandacy); color: #000; }
.cookie-btn-feed:hover { background: var(--pandacy-hover); transform: scale(1.02); }
.cookie-btn-stingy { background: transparent; color: var(--text-secondary); border: 1px solid var(--theme-t2); }
.cookie-btn-stingy:hover { background: var(--bg-secondary); color: var(--text-primary); }



@media(max-width: 800px) {
    .impressum-flex {
        flex-direction: column;
    }
    .pvtube-copy-btn {
        position: relative;
        top: 0;
        right: 0;
        margin-bottom: 15px;
        order: -1;
    }

    .cookie-wrap { bottom: 15px; left: 15px; right: 15px; }
    .cookie-card { max-width: none; }
}