body {
    font-family: 'Courier New', monospace;
    background-color: #000;
    color: #fff;
    overflow: hidden;
    text-shadow: 0 0 2px #fff, 0 0 4px #fff, 0 0 6px #fff; 
}


body * {
    color: #fff !important;
    text-shadow: 0 0 2px #fff, 0 0 4px #fff, 0 0 6px #fff !important;
}

.section-button, .section-panel li a, .music-controls button {
    text-shadow: 0 0 2px #fff, 0 0 4px #fff, 0 0 6px #fff;
}

.section-button:hover, .section-panel li a:hover, .music-controls button:hover {
    text-shadow: 0 0 4px #fff, 0 0 8px #fff, 0 0 12px #fff;
}


.container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

#profile-block {
    position: relative;
    z-index: 10;
    background: rgba(0,0,0,0.7);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 20px;
    border-radius: 15px;
    width: 600px;
    max-width: 90vw;
    display: flex;
    flex-direction: row;   
    align-items: center;   
    gap: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
}


.profile-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 8px rgba(0,255,255,0.5);
    flex-shrink: 0;
}


.profile-picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}


.profile-picture:hover {
    transform: scale(1.1);
    box-shadow: 0 0 12px rgba(0,255,255,0.7);
}

/
.profile-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    text-shadow: 0 0 2px #fff, 0 0 4px #fff, 0 0 6px #fff;
}

#profile-name {
    font-size: 20px;
    font-weight: bold;
}

#profile-bio {
    font-size: 14px;
    color: #fff;
    opacity: 0.8;
    margin-top: 2px;
}


.section-button {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 8px 15px;
    margin: 5px;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s;
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #fff; 
}

.section-button:hover {
    background: rgba(0,195,255,0.4);
    border-color: rgba(0,195,255,0.7);
}

.section-button.active {
    background: rgba(0,195,255,0.4);
    border-color: rgba(0,195,255,0.7);
}

.section-panel {
    opacity: 1;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.section-panel.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    position: absolute;
}

.section-panel ul {
    list-style: none;
    padding-left: 0;
}

.section-panel li {
    margin: 10px 0;
}

.section-panel li a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #fff;
}

.section-panel li a:hover {
    text-decoration: underline;
    color: #00FFFF;
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 40px #fff; 
}

.music-controls {
    margin-top: 10px;
}

.music-controls button {
    padding: 8px 15px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.05);
    cursor: pointer;
    color: #fff;
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #fff;
    transition: all 0.3s;
}

.music-controls button:hover {
    background: rgba(0,195,255,0.4);
    border-color: rgba(0,195,255,0.7);
}


.social-links {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.social-link {
    display: inline-block;
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
}

.social-link:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 6px #fff);
    box-shadow: 0 0 8px #fff, 0 0 16px #fff, 0 0 24px #fff; 
}

.social-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
