/* General styles */
body {
    background-color: #181818;
    color: #fff;
    font-family: 'Courier New', monospace;
    margin: 0;
    padding: 0;
    overflow-y: scroll;
}

/* Menu Bar */
#menu-bar {
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background-color: #181616;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.nav-link {
    color: #0f0;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 2px;
}

.nav-link:hover {
    background-color: #0f0;
    color: #000;
}

/* Shell Box */
.shell-box {
    margin-top: 60px;
    padding: 15px;
    background-color: #202020;
    border-radius: 5px;
    max-width: 900px;
    margin: 60px auto 20px;
    font-size: 20px;
    color: #0f0;
}

/* Loading and ASCII Art */
.loading-text {
    font-family: 'Courier New', monospace;
    color: #0f0;
    font-size: 20px;
    text-align: center;
    margin-top: 20px;
}

.hidden {
    display: none;
}

.ascii-art {
    font-family: 'Courier New', monospace;
    color: rgb(255, 255, 255);
    font-size: 12px;
    text-align: center;
    white-space: pre;
    margin: 20px 0;
    opacity: 1;
    transform: scale(1);
}

/* Projects Container */
.projects-container {
    display: flex;
    justify-content: space-between;
    margin: 20px auto;
    padding: 20px;
    max-width: 900px;
    background-color: #202020;
    border-radius: 10px;
    opacity: 0;
    transform: scale(0.95);
}

.projects-container.visible {
    opacity: 1;
    transform: scale(1);
}

/* Team Sections */
.team-section {
    width: 45%;
    padding: 10px;
    border-radius: 10px;
    background-color: #000000;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Hoverable Image Effect */
.team-section:hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 1;
}

.red-team:hover {
    border: 3px solid red;
}

.blue-team:hover {
    border: 3px solid blue;
}

/* Project Boxes */
.project-box {
    width: 90%;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

/* Project Info */
.project-info {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px;
    border-radius: 5px;
    z-index: 2;
}

.project-info h3 {
    margin: 0;
    font-size: 18px;
    color: #ffffff;
}

.project-info p {
    font-size: 14px;
    margin: 5px 0;
    color:#fff
}

.project-link {
    color: #0f0;
    text-decoration: none;
    font-size: 14px;
}

.project-link:hover {
    text-decoration: underline;
}

/* Red Team Project Box Hover */
.red-team .project-box:hover {
    background-color: red;
    border: 3px solid red;
}

/* Blue Team Project Box Hover */
.blue-team .project-box:hover {
    background-color: blue;
    border: 3px solid blue;
}

/* Custom Scrollbar */
body::-webkit-scrollbar {
    width: 4px;
}

body::-webkit-scrollbar-thumb {
    background-color: #0f0;
    border-radius: 2px;
}

body::-webkit-scrollbar-track {
    background-color: #202020;
    border-radius: 5px;
}
/* Back Button */
.back-button {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #0f0;
    text-decoration: none;
    font-size: 16px;
    background-color: #181616;
    padding: 10px;
    border-radius: 5px;
}

.back-button:hover {
    background-color: #0f0;
    color: #000;
}
