* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'VT323', monospace;
    overflow: hidden;
    background: #000;
}

#scene-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#minecraft-menu {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100;
}

#minecraft-menu ul {
    list-style: none;
}

#minecraft-menu li {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px 20px;
    margin: 5px 0;
    cursor: pointer;
    border: 2px solid #555;
    text-transform: uppercase;
}

#minecraft-menu li:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.minecraft-loader {
    text-align: center;
}

.dirt-block {
    width: 64px;
    height: 64px;
    background: #8B5E3C;
    margin: 0 auto 20px;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

#content-overlay {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 20px;
    border: 2px solid #555;
    display: none;
    max-width: 80%;
    max-height: 80%;
    overflow-y: auto;
    z-index: 200;
}

.monogram {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    font-family: 'VT323', monospace;
    font-size: 32px;
    color: #ffffff;
    text-shadow: 2px 2px #000000;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
    border: 2px solid #ffffff;
}

.monogram span {
    display: block;
    line-height: 1;
    text-align: center;
}

/* Add these styles for hyperlinks */
a {
    color: #00ff00; /* Minecraft-style bright green */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffff00; /* Yellow on hover */
    text-decoration: underline;
}

a:visited {
    color: #00ff00; /* Keep visited links the same color */
}

/* Remove the monogram styles since we're using an icon instead */
.icon-logo {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    width: 48px;
    height: 48px;
    background-size: contain;
    background-repeat: no-repeat;
    text-indent: -9999px;
    overflow: hidden;
}

.portfolio-switch {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}

.switch-button {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px 20px;
    border: 2px solid #555;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'VT323', monospace;
    font-size: 18px;
}

.switch-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    text-decoration: none;
} 