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

body {
    font-family: Arial, sans-serif;
    background-color: #181818;
    color: #e0e0e0;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #2e2e2e;
    border-bottom: 1px solid #333;
}

.anasayfa {
    text-decoration: none;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo span {
    font-size: 1.5rem;
    font-weight: bold;
    color: #B0BEC5;
}

.buttons {
    display: flex;
    gap: 10px;
}

.buttons a {
    text-decoration: none;
    padding: 8px 15px;
    border: 1px solid #B0BEC5;
    border-radius: 5px;
    color: #fff;
    background-color: #B0BEC5;
    transition: background-color 0.3s;
}

.buttons a:hover {
    background-color: #90A4AE;
}

.user-menu {
    position: relative;
}

.user-info {
    display: flex;
    align-items: center;
    cursor: pointer;
    background-color: #333;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.user-info:hover {
    background-color: #444;
}

.profile-pic {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}

.username {
    font-size: 1rem;
    color: #B0BEC5;
    margin-right: 5px;
}

.dropdown-icon {
    color: #B0BEC5;
    font-size: 0.9rem;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #333;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    list-style: none;
    padding: 10px 0;
    z-index: 100;
    width: 180px;
}

.dropdown-menu li {
    padding: 10px 20px;
}

.dropdown-menu li p {
    color: #B0BEC5;
    font-size: 1rem;
    margin: 0;
    text-align: center;
}

.dropdown-menu li a {
    color: #B0BEC5;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.dropdown-menu li a:hover {
    color: #90A4AE;
}

.user-menu.active .dropdown-menu {
    display: block;
}

.actions-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.upload-link {
    text-decoration: none;
    background-color: #B0BEC5;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.upload-link:hover {
    background-color: #90A4AE;
    text-decoration: none;
}

.dropdown-menu li p {
    font-size: 1rem;
    font-weight: bold;
    color: #B0BEC5;
    margin-bottom: 10px;
}

nav {
    display: flex;
    width: 70%;
    align-items: flex-start;
}

nav .nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav .nav-menu li {
    margin: 0 15px;
}

nav .nav-menu li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    padding: 10px 15px;
    display: block;
    transition: background-color 0.3s ease;
}

nav .nav-menu li a:hover {
    background-color: #575757;
    border-radius: 5px;
}

.banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    margin: 30px auto;
    padding: 20px;
    background: linear-gradient(45deg, #2e2e2e, #444);
    border-radius: 10px;
    text-align: left;
    position: relative;
}

.banner img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-left: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.banner .info {
    flex: 1;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.banner .info h1 {
    margin: 0;
    font-size: 28px;
    color: #fff;
    line-height: 1;
}

.banner .info .artist-name {
    margin: 0;
    font-size: 18px;
    color: #ddd;
    line-height: 1.2;
}

.banner .info .uploaded-time {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 20px;
    color: #fff;
    margin: 5px 10px;
}

.custom-player {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #333;
    border-radius: 8px;
    padding: 10px;
    flex: 3;
}

.custom-player button {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.custom-player #seek-bar {
    flex: 1;
    appearance: none;
    height: 5px;
    background: #444;
    border-radius: 5px;
    cursor: pointer;
}

.custom-player #seek-bar::-webkit-slider-thumb {
    appearance: none;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
}

.custom-player span {
    color: #ddd;
    font-size: 14px;
}

.container {
    display: flex;
    flex-direction: row;
    max-width: 80%;
    margin: 20px auto;
    gap: 20px;
}

.left-column {
    flex: 3;
}

.right-column {
    flex: 1;
}

.comments-section {
    margin-bottom: 20px;
}

.comments-section textarea {
    width: 100%;
    height: 100px;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #444;
    border-radius: 4px;
    background-color: #2e2e2e;
    color: #e0e0e0;
    resize: none;
}

.comments-section button {
    display: block;
    margin-left: auto;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background-color: #B0BEC5;
    color: white;
    cursor: pointer;
}

.comments-section button:hover {
    background-color: #90A4AE;
}

.uploader-comments {
    display: flex;
    gap: 20px;
}

.uploader-profile {
    margin-top: 20px;
    padding: 20px;
    background-color: #333;
    border-radius: 10px;
    display: flex;
    align-items: center;
    height: auto;
    max-height: 150px;
    overflow: hidden;
}

.uploader-profile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.uploader-profile .profile-info {
    display: flex;
    flex-direction: column;
}

.uploader-profile .profile-info h3 {
    margin: 0;
    font-size: 18px;
    color: #fff;
}

.uploader-profile .profile-info p {
    margin: 5px 0;
    font-size: 14px;
    color: #b0bec5;
}

.comment-list {
    flex: 3;
    padding: 20px;
    background-color: #333;
    border-radius: 10px;
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 20px;
    overflow-y: auto;
    max-height: 400px;
}

.comment-list h3 {
    margin-bottom: 20px;
}

.comment-list .comment {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.comment-list .comment img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 15px;
}

.comment-list .comment .comment-body {
    flex: 1;
}

.comment-list .comment .comment-body p {
    margin: 5px 0;
}

.comment-list .comment .comment-body .username {
    font-weight: bold;
    color: #b0bec5;
}

.stats-section {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 20px;
    background-color: #333;
    border-radius: 10px;
    color: #e0e0e0;
}

.stats-section h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.stats-section p {
    margin: 5px 0;
    font-size: 16px;
}

.likers-container {
    margin-top: 20px;
    padding: 20px;
    background-color: #2e2e2e;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

.likers {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.likers a {
    display: inline-block;
}

.likers img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #555;
    transition: transform 0.2s, box-shadow 0.2s;
}

.likers img:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.6);
}

a {
    text-decoration: none;
}

.comment {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    border-bottom: 1px solid #444;
    padding-bottom: 10px;
}

.comment img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.comment-body {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.username {
    font-weight: bold;
    color: #fff;
    margin-right: 10px;
}

.comment-date {
    font-size: 0.9rem;
    color: #90A4AE;
}

.comment p {
    color: #B0BEC5;
    margin: 0;
    line-height: 1.4;
}

.ikon {
    font-size: 20px;
    color: white;
    text-decoration: none;
}

.player-and-form {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.like-form {
    flex: 1;
    margin-left: 15px;
}

.like-form .like-button {
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.like-form .like-button.not-liked {
    background-color: #E53935;
    color: white;
}

.like-form .like-button.not-liked:hover {
    background-color: #D32F2F;
}

.like-form .like-button.liked {
    background-color: #4CAF50;
    color: white;
}

.like-form .like-button.liked:hover {
    background-color: #45a049;
}

.link {
    text-decoration: none;
    color: inherit;
}

.likers-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.likers-header .view-all {
    font-size: 0.9rem;
    color: #90A4AE;
    text-decoration: none;
}

.likers-header .view-all:hover {
    color: #fff;
}