body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    height: 100vh;
    background: linear-gradient(180deg, #1a1a2e, #16213e);
    color: #fff;
    user-select: text; /* Allow text selection */
    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: #f5b921;
    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(245, 185, 33, 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 h1 {
    font-size: 2rem;
    color: #f5b921;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.bio-box p {
    font-size: 1rem;
    color: #ccc;
}

.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 #f5b921;
}

a {
    color: #f5b921;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #ffd700;
}

::selection {
    background-color: #ffd700; /* Yellow background */
    color: #000; /* Black text color */
}

/* Volume slider container - initially only shows the icon */
.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; /* just enough to show the icon */
  transition: width 0.3s ease;
}

/* Style for the volume icon */
.volume-slider .volume-icon {
  font-size: 20px;
  color: #f5b921;
  margin-right: 5px;
}

/* The slider itself - hidden initially */
.volume-slider input {
  width: 0;
  opacity: 0;
  transition: width 0.3s ease, opacity 0.3s ease;
  accent-color: #f5b921;
  margin: 0;
}

/* On hover, expand the container */
.volume-slider:hover {
  width: 200px;
}

/* On hover, reveal the slider */
.volume-slider:hover input {
  width: 150px;
  opacity: 1;
}

.sparkle-container {
  position: relative;
  display: inline-block;
}

.sparkle-text {
  color: #f5b921; /* Text color */
  text-shadow: 0 0 10px rgba(245, 185, 33, 0.6); /* Glow effect */
  position: relative;
  z-index: 1;
}

.sparkle-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('assets/sparkle_white.gif') no-repeat center;
  background-size: cover;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: lighten; /* Makes the sparkles blend nicely */
}



.crosshair {
    position: fixed;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    pointer-events: none; /* Let clicks pass through */
    z-index: 9999;
    
    /* Optional: Add a glow effect */
    filter: drop-shadow(0 0 4px rgba(255, 0, 0, 0.7));
}

.crosshair::before {
    content: '';
    position: absolute;
    background: #ff4d4d; /* Softer red for visibility */
    border-radius: 2px;
    width: 2px;
    height: 120%;
    left: 50%;
    transform: translateX(-50%);
}

.crosshair::after {
    content: '';
    position: absolute;
    background: #ff4d4d;
    border-radius: 2px;
    height: 2px;
    width: 120%;
    top: 50%;
    transform: translateY(-50%);
}

.crosshair::after, .crosshair::before {
    animation: sparkle 1.2s infinite ease-in-out;
}

@keyframes sparkle {
    0% {
        box-shadow: 0 0 4px rgba(255, 255, 255, 0.6);
    }
    50% {
        box-shadow: 0 0 8px rgba(255, 215, 0, 0.9), 0 0 12px rgba(255, 105, 180, 0.7);
    }
    100% {
        box-shadow: 0 0 4px rgba(255, 255, 255, 0.6);
    }
}

.crosshair:hover {
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.9));
}
