/* style.css */

body {
    margin: 0;
    overflow: hidden;
    background-color: #000;
    /* Set cursor to open hand */
    cursor: grab;
}

h1 {
    margin: 20px 0;
    color: #fff;
    font-family: Arial, sans-serif;
    text-align: center;
    font-size: 4.5rem;
}

#canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}

#gallery {
    position: relative;
    z-index: 2;
    overflow-y: auto;
    height: 100vh;
    padding-top: 20px; /* Adjusted padding */
    box-sizing: border-box;
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(128, 128, 128, 0.5); /* Transparent gray */
    /* Remove cursor setting here to rely on global cursor */
}

.video-item {
    margin: 20px auto;
    width: 90%;
    max-width: 640px;
}

.video-item iframe {
    width: 100%;
    height: 360px;
}

.video-title {
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
}

/* Optional: Adjust scrollbar styles for better visibility */
#gallery::-webkit-scrollbar {
    width: 12px;
}

#gallery::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 6px;
}

#gallery::-webkit-scrollbar-track {
    background-color: transparent;
}

/* Prevent text selection during drag */
.no-select {
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
}
