    /* Styling for Tabs */
    .tabs {
        display: flex;
        margin-bottom: 20px;
        cursor: pointer;
        border-bottom: 2px solid #333;
        justify-content: center;
    }
    .tab {
        padding: 10px 20px;
        margin: 0 10px;
        border: 1px solid #333;
        border-radius: 8px 8px 0 0;
        background-color: #666;
        transition: background-color 0.3s, color 0.3s;
    }
    .tab.active {
        background-color: #333;
        color: #0275d8;
        font-weight: bold;
        border-bottom: 2px solid #333;
    }
    .tab:hover {
        background-color: #555;
    }
    .tab-content {
        display: none;
        padding: 20px;
        background-color: #333;
        border: 1px solid #ccc;
        border-radius: 8px;
    }
    .tab-content.active {
        display: block;
    }

    /* Improved Comments Display */
    .comment-item {
        background-color: #333;
        border: 1px solid #ddd;
        color:#ccc;
        padding: 15px;
        margin-bottom: 15px;
        border-radius: 8px;
        transition: background-color 0.3s;
    }
    .comment-item:hover {
        background-color: #555;
    }
    .comment-item p {
        margin: 0 0 10px;
    }
    .comment-item small {
        color: #ffffff;
    }
    .comment-item a {
        color: #0275d8;
        text-decoration: none;
    }
    .comment-item a:hover {
        text-decoration: underline;
    }

body {
    background-image: url('https://i.pinimg.com/originals/e6/51/32/e65132292d3dd4636d637e4560d8b5ae.gif'); /* Animated summer background */
    background-size: cover; /* Cover the entire screen */
    background-repeat: no-repeat; /* Prevent background repeating */
    background-attachment: fixed; /* Fix background during scroll */
    background-position: center center; /* Center the background */
    font-family: 'Arial', sans-serif;
    margin: 0;
    color: #333; /* Dark grey text color */
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.container {
    width: 80%;
    margin: 50px auto;
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white background */
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
    background-color: rgba(28, 28, 28, 0.8); /* Transparente Hintergrundfarbe */
    padding: 10px 15px; /* Polsterung für ein ansprechenderes Layout */
    border-radius: 8px; /* Abgerundete Ecken */
    backdrop-filter: blur(10px); /* Weichzeichner für den Hintergrund */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Schatten für Tiefe */
}

.profile-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.profile-header img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 20px;
    border: 3px solid #ffd700; /* Gold border around profile picture */
}

.profile-header h1 {
    font-size: 2em;
    margin: 0;
    flex: 1;
    display: flex;
    align-items: center;
    color: #ff4500; /* Bright orange text color */
}

.badge-icons {
    display: flex;
    gap: 5px;
    margin-left: 15px;
}

.badge-icon {
    width: 24px;
    height: 24px;
    position: relative;
    display: inline-block;
}

.badge-icon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.badge-icon .tooltip {
    visibility: hidden;
    background-color: #ffb347; /* Bright orange tooltip background */
    color: #ffffff;
    text-align: center;
    padding: 5px;
    border-radius: 4px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-size: 0.4em;
}

.badge-icon:hover .tooltip {
    visibility: visible;
}

.subscribe-button {
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    background-color: #ff6347; /* Tomato red button background */
    color: #fff;
    transition: background-color 0.3s;
}

.subscribe-button:hover {
    background-color: #e55337; /* Darker shade for hover */
}

.subscriber-count {
    font-size: 1em;
    margin-left: 20px;
    color: #ff4500; /* Bright orange text */
}

.clips-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.clip-item {
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
    border-radius: 6px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: left;
    text-decoration: none;
    color: inherit;
    position: relative;
    display: flex;
    flex-direction: column;
}

.clip-item:hover {
    transform: scale(1.03);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}

video {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
    object-fit: cover;
}

.clip-title {
    padding: 10px;
    font-size: 1em;
    font-weight: bold;
    background-color: #ffe680; /* Light pastel yellow background */
    text-align: center;
    color: #333; /* Dark grey text color */
}

.clip-meta {
    padding: 8px 10px;
    font-size: 0.9em;
    color: #ff4500; /* Bright orange text */
    background-color: #ffe680; /* Light pastel yellow background */
}
