html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-color: black;
    cursor: none; /* Hide native cursor */
    overflow: hidden;
    font-family: "Lucida Console", "Courier New", monospace;
    display: flex;
    flex-direction: column;
    height: 100vh;
}
.page-switch2 {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    max-width: 1200px;
    padding: 20px 0;
    text-align: center;
    font-size: 60px;
    font-weight: bold;
    color: black;
    -webkit-text-stroke: 2px white;
    text-shadow: 5px 5px 10px orange;
    cursor: pointer;
    z-index: 10000;
    transition: text-shadow 0.2s ease-in-out;
}
/* Fixed page-switch header */
#page-switch {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    max-width: 1200px;
    padding: 20px 0;
    text-align: center;
    font-size: 60px;
    font-weight: bold;
    color: black;
    -webkit-text-stroke: 2px white;
    text-shadow: 5px 5px 10px orange;
    cursor: pointer;
    z-index: 10000;
    transition: text-shadow 0.2s ease-in-out;
    cursor: none;
}

    #page-switch:hover {
        text-shadow: 10px 10px 10px yellow;
    }

/* Main container below header */
.page-container {
    display: flex;
    width: 100vw;
    height: calc(100vh - 80px);
    margin-top: 80px;
    box-sizing: border-box;
}

/* Left and right containers */
.left-container, .right-container {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 20px;
    overflow-y: auto;
    box-sizing: border-box;
}

/* Center container */
.center-container {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 20px;
    overflow-y: auto;
    box-sizing: border-box;
}

/* Text headers styling */
.introduction, .interest-title, .individual {
    padding-top: 5%;
    font-size: 40px;
    font-weight: bold;
    -webkit-text-stroke: 2px white;
    margin-bottom: 20px;
    text-align: center;
    color: black;
    text-shadow: 5px 5px 10px orange;
    transition: text-shadow 0.2s ease-in-out;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

    .introduction:hover, .interest-title:hover, .individual:hover {
        text-shadow: 10px 10px 10px yellow;
    }

/* About paragraph */
.about {
    border-style: solid none solid none;
    border-color: orange white orange white;
    border-width: 1px;
    background-color: black;
    color: white;
    padding: 20px;
    font-size: 20px;
    text-shadow: 5px 5px 10px orange;
    transition: border-color 0.2s ease-in-out, text-shadow 0.2s ease-in-out;
    width: 80%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    margin-left: auto;
    margin-right: auto;
}

    .about:hover {
        border-color: yellow white yellow white;
        border-width: 3px;
        text-shadow: 10px 10px 10px yellow;
    }

/* Interest list */
.interest {
    border-style: solid none solid none;
    border-color: orange white orange white;
    border-width: 1px;
    background-color: black;
    color: white;
    font-size: 20px;
    list-style-type: none;
    padding-left: 40px;
    padding-top: 20px;
    padding-bottom: 20px;
    text-shadow: 5px 5px 10px orange;
    width: 80%;
    box-sizing: border-box;
    transition: border-color 0.2s ease-in-out, text-shadow 0.2s ease-in-out;
    overflow-wrap: break-word;
    margin-left: auto;
    margin-right: auto;
}

    .interest li {
        position: relative;
        padding-left: 20px;
        margin-bottom: 10px;
    }

        .interest li::before {
            content: '\2022';
            position: absolute;
            left: 0;
            top: 0;
            color: white;
            font-size: 30px;
            text-shadow: 5px 5px 10px orange;
            transition: text-shadow 0.2s ease-in-out;
        }

    .interest:hover {
        border-color: yellow white yellow white;
        border-width: 3px;
        text-shadow: 10px 10px 10px yellow;
    }

        .interest:hover li::before {
            text-shadow: 10px 10px 10px yellow;
        }

/* Right container image with fade */
.right-container img.fade {
    width: 80%;
    height: auto;
    object-fit: contain;
    opacity: 1;
    transition: opacity 1s ease-in-out, border-color 0.2s ease-in-out, border-width 0.2s ease-in-out;
    border: 1px solid orange;
    margin: 0 auto;
    display: block;
}

    .right-container img.fade.hidden {
        opacity: 0;
    }

    .right-container img.fade:hover {
        border-color: yellow;
        border-width: 3px;
    }

/* Cursor trail container, fixed top left full screen */
.trail-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
}

/* Custom cursor ring */
.cursor-ring {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

/* Trail dots */
.trail {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: fadeOut 0.35s forwards;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(0);
    }
}
