/* Modern Reset & Base Styles */
:root {
    --bg-color: #ffffff;
    --font-primary: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body,
html {
    height: 100%;
    width: 100%;
    font-family: var(--font-primary);
    background-color: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    user-select: none;
    position: relative;
    /* Globally prevent selection */
}

/* Background Particles */
#bg-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    /* Behind content */
}

/* Main Container */
.container {
    text-align: center;
    position: relative;
    padding: 20px;
    z-index: 1;
}

/* Protected Logo Wrapper */
.logo-wrapper {
    position: relative;
    display: inline-block;
    cursor: default;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* Show default cursor instead of pointer/text */
}

/* The Logo Image */
.protected-logo {
    display: block;
    max-width: 100%;
    height: auto;

    /* Animation: Fade in, scale up slightly, remove blur */
    opacity: 0;
    filter: blur(8px);
    transform: scale(0.95);
    animation: premiumReveal 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;

    /* Protection */
    pointer-events: none;
    /* Prevents dragging/clicking image directly */
    -webkit-user-drag: none;
    /* Webkit specific drag prevention */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Transparent Overlay for extra protection against right-clicks */
.protection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: transparent;
}

/* Keyframes */
@keyframes premiumReveal {
    0% {
        opacity: 0;
        filter: blur(8px);
        transform: scale(0.95) translateY(10px);
    }

    100% {
        opacity: 1;
        filter: blur(0);
        transform: scale(1) translateY(0);
    }
}