* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

body {
    font-family: 'Arial', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    position: fixed;
    width: 100%;
    overflow: hidden;
    background-color: #000;
    cursor: none;
}

body::after {
    content: '';
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    /* Red filter temporarily disabled */
    /* background: linear-gradient(
        to top,
        rgba(139, 0, 0, 0.2) 0%,
        rgba(139, 0, 0, 0.05) 50%,
        rgba(139, 0, 0, 0) 100%
    ); */
    pointer-events: none;
    z-index: 1;
}

* {
    cursor: none !important;
}

.cursor {
    width: 10px;
    height: 10px;
    background: #C0C0C0;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    box-shadow: 0 0 15px #C0C0C0,
                0 0 30px #C0C0C0,
                0 0 45px #C0C0C0;
    transition: width 0.3s, height 0.3s;
    display: none;
}

.cursor-trails-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 99998;
}

.cursor-trail {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #8B0000;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    z-index: inherit;
    box-shadow: 0 0 10px #8B0000,
                0 0 20px #8B0000,
                0 0 30px #8B0000;
    animation: trailFade 1s ease-out;
}

.entry-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    cursor: pointer;
    transition: opacity 0.5s ease;
}

.entry-text {
    color: white;
    font-size: 24px;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.entry-overlay:hover .entry-text {
    opacity: 1;
    letter-spacing: 6px;
}

.hidden {
    opacity: 0;
    pointer-events: none;
}

#video-background {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100vh;
    z-index: -1;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
    /* No filters */
}

#video-background.visible {
    opacity: 1;
}

.content {
    text-align: center;
    z-index: 2;
    width: 100%;
    max-width: 400px;
    position: relative;
    opacity: 0;
    transition: opacity 1s ease;
}

.content.visible {
    opacity: 1;
}

.profile-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 40px;
    border-radius: 20px;
    position: relative;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(139, 0, 0, 0.5);
}

.profile-name {
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 8px;
    text-shadow: 0 0 10px rgba(192, 192, 192, 0.5),
                 0 0 20px rgba(192, 192, 192, 0.3);
    font-weight: 900;
    position: relative;
    display: inline-block;
    margin: 20px 0;
    transition: all 0.3s ease;
    animation: glowPulse 2s infinite;
    overflow: visible;
    z-index: 3;
}

.profile-name:hover {
    transform: scale(1.05);
    letter-spacing: 10px;
    text-shadow: 0 0 15px rgba(192, 192, 192, 0.7),
                 0 0 30px rgba(192, 192, 192, 0.5),
                 0 0 45px rgba(139, 0, 0, 0.5);
}

.visitor-counter {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 2;
    margin-top: 5px;
    flex-direction: row;
}

.eye-icon {
    width: 28px;
    height: 28px;
    stroke: #C0C0C0;
    stroke-width: 2;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 4px rgba(192, 192, 192, 0.3));
    opacity: 0.8;
}

.visitor-counter:hover .eye-icon {
    stroke: #8B0000;
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(139, 0, 0, 0.5));
    opacity: 1;
}

.counter-number {
    font-size: 18px;
    color: #C0C0C0;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 0 0 8px rgba(192, 192, 192, 0.3);
    transition: all 0.3s ease;
    min-width: 30px;
    opacity: 0.8;
}

.visitor-counter:hover .counter-number {
    color: #8B0000;
    text-shadow: 0 0 15px rgba(139, 0, 0, 0.5);
}

.volume-container {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.8);
    padding: 15px 20px;
    border-radius: 12px;
}

.volume-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.volume-icon {
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
    filter: invert(9%) sepia(100%) saturate(6616%) hue-rotate(358deg) brightness(86%) contrast(115%);
}

.volume-btn:hover .volume-icon {
    transform: scale(1.1);
}

.volume-slider {
    width: 0;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    border-radius: 3px;
    transition: width 0.3s ease;
    overflow: visible;
    cursor: pointer;
}

.volume-container:hover .volume-slider {
    width: 120px;
}

.volume-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: #C0C0C0;
    width: 100%;
    border-radius: 3px;
}

.volume-progress::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #C0C0C0;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
}

/* Mobile Styles */
@media (max-width: 767px) {
    #video-background {
        display: none;
    }

    body {
        background-color: #000000;
        position: relative;
    }

    .profile-image {
        width: 120px;
        height: 120px;
        display: block;
    }

    .profile-name {
        font-size: 24px;
        letter-spacing: 6px;
        display: block;
        margin: 15px 0;
    }

    .profile-container {
        padding: 30px 20px;
        width: 90%;
        margin: 0 auto;
        border-radius: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .content {
        max-width: 100%;
        padding: 20px;
        opacity: 1;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        min-height: 100vh;
        padding-top: 20vh;
        overflow: hidden;
        position: relative;
        z-index: 2;
    }

    .visitor-counter {
        display: flex;
        margin-top: 15px;
        justify-content: center;
    }

    .volume-container {
        top: auto;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
    }

    .volume-slider {
        width: 60px;
    }

    .volume-container:hover .volume-slider {
        width: 80px;
    }

    .cursor {
        display: none;
    }

    .cursor-trail {
        display: block;
        width: 6px;
        height: 6px;
        box-shadow: 0 0 8px #8B0000,
                   0 0 16px #8B0000,
                   0 0 24px #8B0000;
    }
    
    .cursor-trails-container {
        display: block;
    }
    
    * {
        cursor: auto !important;
    }
}

@keyframes trailFade {
    0% {
        opacity: 0.7;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.3);
    }
}

@keyframes glowPulse {
    0% {
        text-shadow: 0 0 10px rgba(192, 192, 192, 0.5),
                    0 0 20px rgba(192, 192, 192, 0.3),
                    0 0 30px rgba(139, 0, 0, 0.3);
    }
    50% {
        text-shadow: 0 0 15px rgba(192, 192, 192, 0.7),
                    0 0 30px rgba(192, 192, 192, 0.5),
                    0 0 45px rgba(139, 0, 0, 0.5);
    }
    100% {
        text-shadow: 0 0 10px rgba(192, 192, 192, 0.5),
                    0 0 20px rgba(192, 192, 192, 0.3),
                    0 0 30px rgba(139, 0, 0, 0.3);
    }
}

/* Effekte */
.sparkle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
    animation: sparkleAnim 1.5s ease-out;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.4);
}

.line {
    position: absolute;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(139, 0, 0, 0.6) 50%, 
        transparent 100%
    );
    height: 1px;
    pointer-events: none;
    z-index: 2;
    transform-origin: left center;
    animation: lineAnim 1s ease-out;
}

.red-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(139, 0, 0, 0.8);
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
    animation: particleAnim 2s ease-out;
    box-shadow: 0 0 4px rgba(139, 0, 0, 0.6);
}

.butterfly {
    position: absolute;
    width: 4px;
    height: 4px;
    pointer-events: none;
    z-index: 2;
    animation: butterflyAnim 2s ease-out;
}

.butterfly::before,
.butterfly::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(139, 0, 0, 0.4);
    box-shadow: 0 0 4px rgba(139, 0, 0, 0.6);
}

.butterfly::before {
    left: -2px;
    animation: wingLeft 0.8s ease-in-out infinite;
}

.butterfly::after {
    right: -2px;
    animation: wingRight 0.8s ease-in-out infinite;
}

@keyframes sparkleAnim {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 0.8;
    }
    100% {
        transform: scale(0) rotate(360deg);
        opacity: 0;
    }
}

@keyframes lineAnim {
    0% {
        transform: scaleX(0) rotate(var(--rotation));
        opacity: 1;
    }
    100% {
        transform: scaleX(1) rotate(var(--rotation));
        opacity: 0;
    }
}

@keyframes particleAnim {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        transform: translate(
            calc(var(--moveX) * 40px),
            calc(var(--moveY) * 40px)
        );
        opacity: 0;
    }
}

@keyframes butterflyAnim {
    0% {
        transform: translate(0, 0) scale(0.8);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        transform: translate(
            calc(var(--moveX) * 30px),
            calc(var(--moveY) * 30px)
        ) scale(1.2);
        opacity: 0;
    }
}

@keyframes wingLeft {
    50% {
        transform: rotate(-30deg);
    }
}

@keyframes wingRight {
    50% {
        transform: rotate(30deg);
    }
}