body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    height: 100vh;
    background: linear-gradient(180deg, #8B0000, #550000);
    color: #fff;
    user-select: text;
    overflow: hidden;
    cursor: url('buttons/crosshair.png') 128 128, auto;
}

.click-to-enter {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    cursor: pointer;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.click-to-enter.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.click-to-enter p {
    font-size: 2rem;
    color: #FF4500;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 3px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.main-content {
    display: none;
    width: 100%;
    height: 100vh;
    position: relative;
}

.main-content.show {
    display: block;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bio-box {
    background: rgba(0, 0, 0, 0.75);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 15px rgba(255, 69, 0, 0.6);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 400px;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, -60%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

.bio-box {
    background: rgba(0, 0, 0, 0.75);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.6);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 450px;
    width: 100%;
    animation: fadeIn 1s ease-in-out;
    backdrop-filter: blur(10px);
}

.bio-box h1 {
    font-size: 2rem;
    color: #FF4500;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.bio-box p {
    font-size: 1rem;
    color: #ccc;
}

.bio-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1rem;
}

.bio-icon {
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 8px rgba(255, 69, 0, 0.4);
    transition: transform 0.3s ease;
}

.bio-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bio-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 69, 0, 0.7);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, -60%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}


.social-buttons {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.social-button {
    width: 50px;
    height: 50px;
    margin: 0 0.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    overflow: hidden;
}

.social-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.social-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px #FF4500;
}

a {
    color: #FF4500;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #FF6347;
}

::selection {
    background-color: #FF6347;
    color: #000;
}

.volume-slider {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 20;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 40px;
    transition: width 0.3s ease;
}

.volume-slider .volume-icon {
    font-size: 20px;
    color: #FF4500;
    margin-right: 5px;
}

.volume-slider input {
    width: 0;
    opacity: 0;
    transition: width 0.3s ease, opacity 0.3s ease;
    accent-color: #FF4500;
    margin: 0;
}

.volume-slider:hover {
    width: 200px;
}

.volume-slider:hover input {
    width: 150px;
    opacity: 1;
}

.sparkle-text {
    color: #FF4500;
    text-shadow: 0 0 10px rgba(255, 69, 0, 0.6);
}

.crosshair {
    position: fixed;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    pointer-events: none;
    z-index: 9999;
    filter: drop-shadow(0 0 4px rgba(255, 69, 0, 0.7));
}

.crosshair::before, .crosshair::after {
    content: '';
    position: absolute;
    background: #FF4500;
    border-radius: 2px;
}

.crosshair::before {
    width: 2px;
    height: 120%;
    left: 50%;
    transform: translateX(-50%);
}

.crosshair::after {
    height: 2px;
    width: 120%;
    top: 50%;
    transform: translateY(-50%);
}
