/* Content Protection Styles */
html, body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

img, a {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

/* Override any text selection styles that might be applied elsewhere */
::selection {
    background: transparent;
    color: inherit;
}

::-moz-selection {
    background: transparent;
    color: inherit;
}

/* CSS to hide elements when dev tools are detected */
.dev-tools-warning {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    text-align: center;
    padding: 2rem;
    font-family: 'Poppins', sans-serif;
}

.dev-tools-warning h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #f43f5e;
}

.dev-tools-warning p {
    font-size: 1.2rem;
    max-width: 600px;
}
