@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: black !important;
    color: white;
    cursor: default;
    overflow: hidden;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 4;
    background-color: transparent;
    pointer-events: none;
}

.landing {
    background-color: black;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.enter-text {
    font-family: 'VT323', monospace;
    font-size: 2em;
    color: #00ffff;  /* Cyan color */
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
    letter-spacing: 2px;
    opacity: 1;
    transition: all 0.3s ease;
}

.enter-text:hover {
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.9);
}

.main-content {
    background-color: black;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hidden {
    display: none;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: center;
    position: relative;
    z-index: 5;
    transform: none;
    margin: 0;
}

.link-button {
    font-family: 'VT323', monospace;
    color: #00ffff;
    text-decoration: none;
    font-size: 2.5em;
    padding: 0;
    background-color: transparent;
    border: none;
    transition: all 0.3s ease;
    text-transform: lowercase;
    letter-spacing: 3px;
    display: block;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    line-height: 1.2;
    white-space: nowrap;
}

.link-button:hover {
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.9);
}

.link-button i {
    display: none;
}

#background-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    object-fit: cover;
    opacity: 1;
}

.main-content::before {
    display: none;
}

/* Add these to your existing CSS */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide source when printing */
@media print {
    html { display: none; }
}

/* Prevent element inspection highlighting */
* {
    outline: none !important;
}

/* Make videos harder to download */
video {
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Prevent selection */
* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

/* Hide from print */
@media print {
    body { display: none; }
}

/* Prevent copying */
body {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    -user-drag: none;
}

/* Protect video */
video {
    pointer-events: none;
    position: relative;
}

/* Hide content when printing */
@media print {
    * { 
        display: none !important;
        visibility: hidden !important;
    }
}

/* Stronger selection prevention */
* {
    -webkit-touch-callout: none !important;
    -webkit-user-select: none !important;
    -khtml-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    user-drag: none !important;
}

/* Protect video more aggressively */
video {
    -webkit-mask-image: -webkit-linear-gradient(#000, #000);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -pointer-events: none !important;
}

/* Hide from screen capture */
body * {
    -webkit-user-modify: read-only !important;
} 