@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Space+Mono:wght@400;700&display=swap');

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


*::-webkit-scrollbar {
    width: 7px;  /* Width of the scrollbar */
}

*::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);  /* Track background */
}

*::-webkit-scrollbar-thumb {
    background: #09ddfd;  /* Scrollbar thumb color */
    border-radius: 5px;
    border: 2px solid transparent;
    background-clip: content-box;
}

*::-webkit-scrollbar-thumb:hover {
    background: #00b8d4;  /* Hover color */
    background-clip: content-box;
}

body {
    cursor: url('media/wiredlain.gif') 0 0, auto;
    font-family: Arial, sans-serif;
    background-color: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 200, 255, 0.05) 0%, transparent 50%), 
        radial-gradient(circle at 80% 20%, rgba(255, 0, 100, 0.05) 0%, transparent 50%), 
        url('media/lain wired wooah.gif'),
        repeating-linear-gradient(
            90deg,
            #0a0a0a 0px,
            #0a0a0a 2px,
            #0d0d0d 2px,
            #0d0d0d 4px
        ), 
        repeating-linear-gradient(
            0deg,
            #0a0a0a 0px,
            #0a0a0a 2px,
            #0d0d0d 2px,
            #0d0d0d 4px
        );
    background-size: 100% 100%, 100% 100%, 133%, 100% 100%, 100% 100%;
    background-position: 0 0, 0 0, center, 0 0, 0 0;
}

.container {
    display: flex;
    height: auto;
    min-height: 100vh;
    border: 3px solid;
    border-color: #dfdfdf #808080 #808080 #dfdfdf;
    background: #c0c0c0;
    box-shadow: 
        inset 1px 1px 0 #ffffff,
        inset 2px 2px 0 #dfdfdf,
        inset -1px -1px 0 #808080,
        inset -2px -2px 0 #000000;
    position: relative;
    max-width: 1200px;
    width: 100%;
}

/* Left Profile Sidebar - Fixed width */
.profile-sidebar {
     font-family: 'Orbitron', 'Space Mono', monospace;
    width: 250px;
    background: #2f614c;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8)), url('media/motherboard.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: rgb(231, 252, 191);
    padding: 40px 20px;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    min-height: 100%;
}



.profile-header {
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    margin-bottom: 40px;
}

.profile-pic {
    font-family: 'Space Mono', monospace;
    width: 120px;
    height: 120px;
    /*border-radius: 50%;*/
    border: 4px solid white;
    margin-bottom: 20px;
    object-fit: cover;
    background-color: rgba(255, 255, 255, 0.2);
}

.profile-header h1 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    letter-spacing: 2px;
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: bold;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.5);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.bio {
    font-family: 'Space Mono', monospace;
    letter-spacing: 0.5px;
    font-size: 14px;
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.5;
    font-weight: bold;
    -webkit-text-stroke: 0.2px rgba(0, 0, 0, 0.3);
}

.profile-section {
    margin-bottom: 30px;
}

.profile-section h3 {
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.3);
}

.profile-section ul {
    list-style: none;
}

.profile-section li {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.6;
}

.profile-section a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.profile-section a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.navi-highlight {
    color: #09ddfd;
    font-weight: bold;
    text-shadow: 
        0 0 1px #09ddfd,
        0 0 10px #09ddfd,
        /*0 0 15px #09ddfd,*/
        0 0 15px #0099cc;
}

/* Right Main Content - 70% width */
.main-content {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8)), url('media/wallpaper.jpg');
    flex: 1;
    padding: 40px;
    background-color: white;
    overflow-y: auto;
    text-align: left;
}

.main-content h2 {
    color: #784949;
    margin-bottom: 20px;
    font-size: 32px;
    text-align: left;
}

.main-content p {
    color: #bb8d8d;
    line-height: 1.8;
    font-size: 16px;
    text-align: left;
}



/* Audio Footer */
.audio-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: transparent;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.audio-footer audio {
    max-width: 80%;
    width: 900px;
    filter: invert(1);
}

/* Game Grid */
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.game-card {
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #784949;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
    border-color: #bb8d8d;
}

.game-image {
    width: 100%;
    height: 150px;
    background-size: cover;
    background-position: center;
    background-color: #333;
}

.game-card h3 {
    color: #784949;
    padding: 15px 15px 10px 15px;
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}

.game-card p {
    color: #bb8d8d;
    padding: 0 15px 15px 15px;
    margin: 0;
    font-size: 13px;
    flex-grow: 1;
}

/* Audio Library */
.audio-library {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.audio-item {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid #bb8d8d;
    border-radius: 0;
    padding: 15px 20px;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.1s;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}

.audio-item:hover {
    transform: none;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.5);
    border-color: #784949;
}

.audio-item:active {
    transform: none;
    background: rgba(184, 141, 141, 0.2);
}

.audio-icon {
    font-size: 32px;
    margin-bottom: 0;
    min-width: 40px;
}

.audio-item h3 {
    color: #bb8d8d;
    margin: 0;
    font-size: 15px;
    font-weight: bold;
}

.audio-item p {
    color: #bb8d8d;
    margin: 0;
    font-size: 11px;
    line-height: 1.2;
    opacity: 0.8;
}

/* Story List */
.story-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.story-link {
    text-decoration: none;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid #bb8d8d;
    padding: 15px 20px;
    transition: background 0.2s, border-color 0.2s;
    display: block;
}

.story-link:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: #784949;
}

.story-link h3 {
    color: #bb8d8d;
    margin: 0 0 8px 0;
    font-size: 16px;
}

.story-link p {
    color: #bb8d8d;
    margin: 0;
    font-size: 13px;
    opacity: 0.8;
}

/* Academic Links */
.academic-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.academic-link {
    text-decoration: none;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid #bb8d8d;
    padding: 15px 20px;
    transition: background 0.2s, border-color 0.2s;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
    position: relative;
}

.academic-thumbnail {
    width: 120px;
    height: 80px;
    background-size: cover;
    background-position: center;
    background-color: #333;
    border: 1px solid #bb8d8d;
    flex-shrink: 0;
}

.academic-link:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: #784949;
}

.academic-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.academic-link h3 {
    color: #bb8d8d;
    margin: 0 0 5px 0;
    font-size: 16px;
}

.academic-link p {
    color: #bb8d8d;
    margin: 0 0 auto 0;
    font-size: 13px;
    opacity: 0.8;
}

.external-indicator {
    color: #09ddfd;
    font-size: 11px;
    opacity: 0.7;
    margin-top: 10px;
}

/* Responsive design for smaller screens 
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        height: auto;
    }

    .profile-sidebar {
        width: 100%;
        padding: 30px 20px;
    }

    .main-content {
        padding: 30px;
    }
}
*/