body {
    font-family: monospace;
    margin: 0;
    padding: 0;
    color: #D3E6F1;
}

.source-bg {
    background-color: #121212;
    background-image: url("/Birthday boy blam holding butterfly.png"); /* Replace with a more suitable image */
    background-repeat: repeat;
    background-size: cover;
    height: 100vh;
    overflow: auto;
}

#profile-container {
    width: 853.5px; 
    margin: 20px auto;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

#banner {
    width: 853.5px;
    height: 288px;
    max-width: 853.5px;
    max-height: 288px;
    background-image: url("/my bannner.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px 10px 0 0;
    margin-bottom: 20px;
}

#profile-header {
    text-align: center;
    margin-bottom: 20px;
}

#username {
    font-size: 2em;
    margin-bottom: 10px;
}

#avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid #D3E6F1;
}

#basic-info {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.1em;
}

#profile-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

#profile-nav button {
    background-color: #387C44;
    border: 1px solid #54A760;
    color: #D3E6F1;
    border: none;
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#profile-nav button.active {
    background-color: #54A760;
}

#profile-nav button#youtube-btn {
    background-color: #387C44;
    border: 1px solid #54A760;
}

#profile-content section {
    display: none;
}

#profile-content section.active-section {
    display: block;
}

#projects-list, #likes-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.project-item, .like-item {
    background-color: #18331E;
    border: 1px solid #54A760;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.project-item:hover, .like-item:hover {
    transform: translateY(-5px);
}

.project-item h3, .like-item h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.project-item p, .like-item p {
    margin: 0;
    font-size: 0.9em;
    line-height: 1.4;
}

#chat-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px;
    box-sizing: border-box;
    border-top: 1px solid #54A760;
}

#chat-messages {
    height: 150px;
    overflow-y: auto;
    margin-bottom: 10px;
    padding: 5px;
    color: #D3E6F1;
    border: 1px solid #54A760;
}

#chat-input {
    display: flex;
}

#message-input {
    flex-grow: 1;
    background-color: #303030;
    color: #D3E6F1;
    border: none;
    padding: 8px;
    border-radius: 5px;
    margin-right: 5px;
}

#send-button {
    background-color: #387C44;
    color: #D3E6F1;
    border: 1px solid #54A760;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
}

.remix-info {
    text-align: center;
    margin-top: 20px;
    font-size: 1em;
    color: #D3E6F1;
}

#toggle-music {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #387C44; 
    color: #D3E6F1;
    border: 1px solid #54A760;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#toggle-music:hover {
    background-color: #54A760;
}

@font-face {
    font-family: "Comic Sans MS";
    src: url("/COMIC.TTF") format("truetype");
}

body, #profile-container {
    font-family: "Courier New", Courier, monospace;
    font-family: "Comic Sans MS", cursive;
}

#banner-controls {
    text-align: center;
    margin-bottom: 10px; 
    position: absolute;
    top: 140px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    box-sizing: border-box;
}

#banner-controls button {
    background-color: #387C44;
    border: 1px solid #54A760;
    color: #D3E6F1;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: "Comic Sans MS", cursive;
}

#banner-controls button:hover {
    background-color: #54A760;
}