/* Profile Banner */
.profile-banner {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 300px;
    border: 1px solid rgba(74, 122, 74, 0.3);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 30px var(--glow);
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    margin: 40px auto 30px;
}

.profile-custom-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a3a1a, #0f250f);
    background-position: center;
    background-size: cover;
    filter: grayscale(60%) brightness(0.4);
    transition: all 0.5s;
}

.profile-banner:hover .profile-custom-bg {
    filter: grayscale(40%) brightness(0.5);
    transform: scale(1.05);
}

.profile-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 15, 10, 0.75), transparent 50%, rgba(10, 15, 10, 0.85));
    z-index: 1;
}

.profile-banner-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 40px;
}

.profile-name-section {
    margin-top: auto;
}

.profile-name {
    font-size: 62px;
    color: var(--accent2);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
    text-shadow: 0 0 30px var(--glow), 2px 2px 4px rgba(0, 0, 0, 0.9);
    line-height: 1;
}

.profile-title {
    font-size: 22px;
    color: var(--text2);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.profile-quote {
    margin-top: 20px;
    padding: 20px;
    background: rgba(10, 15, 10, 0.7);
    border-left: 3px solid var(--accent1);
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.profile-quote-text {
    color: var(--text2);
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Profile Content Layout */
.profile-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 25px;
	margin-bottom:40px;
}

/* Sidebar */
.profile-sidebar {
    width: 320px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-shrink: 0;
}

/* Profile Image */
.profile-sidebar-image-box {
    background: rgba(20, 25, 20, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(74, 122, 74, 0.3);
    clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
    padding: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.profile-image-wrapper {
    position: relative;
    width: 290px;
    height: 323px;
    border: 2px solid var(--accent1);
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7), 0 0 20px var(--glow);
    overflow: hidden;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%);
    transition: all 0.5s;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.profile-image.active {
    opacity: 1;
    filter: grayscale(0%);
}

.profile-image-indicator {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.profile-image-dot {
    width: 10px;
    height: 10px;
    background: rgba(74, 122, 74, 0.3);
    border: 1px solid rgba(74, 122, 74, 0.5);
    transition: all 0.3s;
    clip-path: polygon(2px 0, 100% 0, 100% calc(100% - 2px), calc(100% - 2px) 100%, 0 100%, 0 2px);
    cursor: pointer;
}

.profile-image-dot.active {
    background: var(--accent1);
    box-shadow: 0 0 15px var(--glow);
}

/* NEUE Kombinierte Info-Box mit Icon-Tabs */
.profile-info-box-combined {
    width: 320px;
    background: rgba(20, 25, 20, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(74, 122, 74, 0.3);
    clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
    box-sizing: border-box;
			height:320px;
}

.profile-info-box-combined:hover {
    border-color: var(--accent1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.7), 0 0 20px var(--glow);
}

/* Icon Tab Navigation */
.profile-info-icon-tabs {
    display: flex;
    border-bottom: 1px solid rgba(74, 122, 74, 0.3);
}

.profile-info-icon-tab {
    flex: 1;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    background: transparent;
    border: none;
    color: var(--text3);
    font-size: 24px;
    transition: all 0.3s;
    position: relative;
}

.profile-info-icon-tab:hover {
    color: var(--accent2);
    background: rgba(74, 122, 74, 0.1);
}

.profile-info-icon-tab.active {
    color: var(--accent2);
    filter: drop-shadow(0 0 10px var(--glow));
}

.profile-info-icon-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--accent1);
    box-shadow: 0 0 10px var(--glow);
}

/* Info Tab Content */
.profile-info-tab-content {
    padding: 20px;
    display: none;
}

.profile-info-tab-content.active {
    display: block;
    animation: infoFadeIn 0.3s ease-in;
}

@keyframes infoFadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-info-tab-title {
    font-size: 17px;
    color: var(--accent2);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px var(--glow);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(74, 122, 74, 0.3);
}

.profile-info-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.profile-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    border-bottom: 1px solid rgba(74, 122, 74, 0.15);
}

.profile-info-row:last-child {
    border-bottom: none;
}

.profile-info-label {
    color: var(--text3);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.profile-info-value {
    color: var(--accent2);
    font-size: 15px;
    font-weight: 700;
    text-align: right;
    max-width: 150px;
    word-wrap: break-word;
}

/* Main Content Area */
.profile-main {
    width: 780px;
    flex-shrink: 0;
}

/* Tab System */
.profile-tabs-container {
    position: relative;
    width: 780px;
}

.profile-tabs {
    display: flex;
    gap: 5px;
    margin-bottom: -1px;
    position: relative;
    z-index: 10;
    flex-wrap: wrap;
}

.profile-tab-button {
    background: rgba(15, 20, 15, 0.8);
    border: 1px solid rgba(74, 122, 74, 0.3);
    border-bottom: none;
    color: var(--text3);
    padding: 12px 22px 15px 22px;
    font-size: 16px;
    font-family: 'VT323', monospace;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%, 0 8px);
    white-space: nowrap;
    flex-shrink: 0;
}

.profile-tab-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 8px;
    right: 8px;
    height: 3px;
    background: transparent;
    transition: background 0.3s;
}

.profile-tab-button:hover {
    color: var(--accent2);
    background: rgba(20, 25, 20, 0.9);
}

.profile-tab-button.active {
    background: rgba(20, 25, 20, 0.95);
    color: var(--accent2);
    border-color: var(--accent1);
    box-shadow: 0 -3px 15px rgba(107, 168, 107, 0.2);
}

.profile-tab-button.active::before {
    background: var(--accent1);
    box-shadow: 0 0 10px var(--glow);
}

/* Tab Content */
.profile-tab-content-wrapper {
    width: 100%;
    background: rgba(20, 25, 20, 0.95);
    border: 1px solid var(--accent1);
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7), 0 0 25px var(--glow);
    height: 650px;
    box-sizing: border-box;
    overflow-y: auto;
}

.profile-tab-content {
    display: none;
}

.profile-tab-content.active {
    display: block;
    animation: profileFadeIn 0.4s ease-in;
}

@keyframes profileFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-content-section {
    margin-bottom: 25px;
}

.profile-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent1);
}

.profile-section-icon {
    font-size: 28px;
    color: var(--accent2);
    filter: drop-shadow(0 0 10px var(--glow));
}

.profile-section-title {
    font-size: 26px;
    color: var(--accent2);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px var(--glow);
}

.profile-content-text {
    color: var(--text2);
    font-size: 18px;
    line-height: 1.8;
}

.profile-content-text p {
    margin-bottom: 16px;
}

/* Split Layout für Allgemein-Tab */
.profile-split-container {
    display: flex;
    flex-direction: column;
    height: 500px;
    gap: 0;
}

.profile-text-section {
    flex: 0 0 60%;
    padding: 0 0 20px 0;
    overflow-y: auto;
    overflow-x: hidden;
}

.profile-text-section::-webkit-scrollbar {
    width: 8px;
}

.profile-text-section::-webkit-scrollbar-track {
    background: rgba(10, 15, 10, 0.5);
    border-radius: 4px;
}

.profile-text-section::-webkit-scrollbar-thumb {
    background: var(--accent1);
    border-radius: 4px;
    box-shadow: 0 0 10px var(--glow);
}

.profile-skills-section {
    flex: 0 0 40%;
    padding: 20px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.profile-skill-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.profile-skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-skill-name {
    color: var(--text2);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.profile-skill-percentage {
    color: var(--accent2);
    font-size: 18px;
    font-weight: 700;
    text-shadow: 0 0 8px var(--glow);
}

.profile-skill-bar-container {
    width: 100%;
    height: 12px;
    background: rgba(10, 15, 10, 0.8);
    border: 1px solid rgba(74, 122, 74, 0.3);
    clip-path: polygon(4px 0, 100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%, 0 4px);
    position: relative;
    overflow: hidden;
}

.profile-skill-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(74, 122, 74, 0.6) 0%, 
        var(--accent1) 50%, 
        var(--accent2) 100%);
    box-shadow: 0 0 15px var(--glow);
    transition: width 1.5s ease-out;
    position: relative;
    width: 0%;
}

.profile-skill-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3));
    animation: skillShine 2s infinite;
}

@keyframes skillShine {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.profile-tab-content.active .profile-skill-bar-fill {
    width: var(--skill-value);
}

.profile-tab-content.active .profile-skill-bar-fill {
    width: var(--skill-value);
}

/* GROSSE Skill-Balken für Fähigkeiten-Tab */
.profile-skills-large-section {
    display: flex;
    flex-direction: column;
    gap: 35px;
    padding: 10px 0;
}
.profile-skill-large-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.profile-skill-large-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.profile-skill-large-name {
    color: var(--text2);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}
.profile-skill-large-percentage {
    color: var(--accent2);
    font-size: 20px;
    font-weight: 700;
    text-shadow: 0 0 10px var(--glow);
}
.profile-skill-large-bar-container {
    width: 100%;
    height: 15px;
    background: rgba(10, 15, 10, 0.8);
    border: 1px solid rgba(74, 122, 74, 0.3);
    clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5);
}
.profile-skill-large-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(74, 122, 74, 0.6) 0%, 
        var(--accent1) 50%, 
        var(--accent2) 100%);
    box-shadow: 0 0 20px var(--glow);
    position: relative;
    width: 0 !important;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.profile-skill-large-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4));
    animation: skillShine 2s infinite;
}
.profile-tab-content.active .profile-skill-large-bar-fill {
    width: var(--skill-value) !important;
}

        /* Inventar Grid Container */
.profile-inventory-grid {
    display: grid;
    grid-template-columns: repeat(6, 110px);
    gap: 12px;
    margin-bottom: 25px;
}

        /* Inventar Kachel */
.profile-inventory-tile {
    width: 110px;
    height: 110px;
    background: rgba(15, 20, 15, 0.8);
    border: 2px solid rgba(74, 122, 74, 0.3);
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
	font-size:25px;
}

        .profile-inventory-tile::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, transparent, rgba(74, 122, 74, 0.1));
            opacity: 0;
            transition: opacity 0.3s;
        }

        .profile-inventory-tile:hover {
            border-color: var(--accent1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), 0 0 20px var(--glow);
            transform: translateY(-3px);
        }

        .profile-inventory-tile:hover::before {
            opacity: 1;
        }

        .profile-inventory-tile.active {
            border-color: var(--accent2);
            background: rgba(25, 35, 25, 0.9);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7), 0 0 25px var(--glow);
        }

        .profile-inventory-tile-icon {
            font-size: 64px;
            color: var(--text3);
            transition: all 0.3s;
            filter: drop-shadow(0 0 10px transparent);
        }

        .profile-inventory-tile:hover .profile-inventory-tile-icon {
            color: var(--accent2);
            transform: scale(1.15);
            filter: drop-shadow(0 0 15px var(--glow));
        }

        .profile-inventory-tile.active .profile-inventory-tile-icon {
            color: var(--accent2);
            filter: drop-shadow(0 0 20px var(--glow));
        }

        /* Ausgeklappter Content Bereich */
        .profile-inventory-expanded {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out, margin 0.4s ease-out;
            margin: 0;
        }

        .profile-inventory-expanded.active {
            max-height: 800px;
            margin-bottom: 25px;
        }

        .profile-inventory-expanded-inner {
            background: rgba(20, 25, 20, 0.95);
            border: 2px solid var(--accent1);
            clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
            padding: 25px 30px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7), 0 0 25px var(--glow);
        }

        .profile-inventory-expanded-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--accent1);
        }

        .profile-inventory-expanded-icon {
            font-size: 32px;
            color: var(--accent2);
            filter: drop-shadow(0 0 12px var(--glow));
        }

        .profile-inventory-expanded-title {
            font-size: 26px;
            color: var(--accent2);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px var(--glow);
        }

        .profile-inventory-expanded-content {
            color: var(--text2);
            font-size: 18px;
            line-height: 1.8;
            max-height: 500px;
            overflow-y: auto;
        }

        .profile-inventory-expanded-content p {
            margin-bottom: 12px;
        }

        .profile-inventory-expanded-content ul,
        .profile-inventory-expanded-content ol {
            padding-left: 25px;
            margin: 10px 0;
        }

        .profile-inventory-expanded-content li {
            margin-bottom: 8px;
        }

        /* Scrollbar */
        .profile-inventory-expanded-content::-webkit-scrollbar {
            width: 8px;
        }

        .profile-inventory-expanded-content::-webkit-scrollbar-track {
            background: rgba(10, 15, 10, 0.5);
            border-radius: 4px;
        }

        .profile-inventory-expanded-content::-webkit-scrollbar-thumb {
            background: var(--accent1);
            border-radius: 4px;
            box-shadow: 0 0 10px var(--glow);
        }

        /* Leere State */
        .profile-inventory-empty {
            color: var(--text3);
            font-style: italic;
            text-align: center;
            padding: 20px;
            opacity: 0.7;
        }

        /* Animation */
        @keyframes inventorySlideIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .profile-inventory-expanded.active .profile-inventory-expanded-inner {
            animation: inventorySlideIn 0.4s ease-out;
        }

/* Szenen Container */
.profile-scenes-section {
    background: rgba(15, 20, 15, 0.8);
    border: 2px solid rgba(74, 122, 74, 0.3);
    clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s;
}

.profile-scenes-section:hover {
    border-color: var(--accent1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), 0 0 20px var(--glow);
}

/* Archiv leicht gedimmt */
.profile-scenes-archive {
    opacity: 0.85;
}

.profile-scenes-archive:hover {
    opacity: 1;
}

/* Header */
.profile-scenes-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(10, 15, 10, 0.6);
    border-bottom: 1px solid rgba(74, 122, 74, 0.3);
}

.profile-scenes-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-scenes-header-left i {
    font-size: 24px;
    color: var(--accent2);
    filter: drop-shadow(0 0 10px var(--glow));
}

.profile-scenes-title {
    font-size: 20px;
    color: var(--accent2);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    text-shadow: 0 0 10px var(--glow);
}

/* Counter Badge */
.profile-scenes-counter {
    background: var(--accent1);
    padding: 6px 14px;
    clip-path: polygon(4px 0, 100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%, 0 4px);
    box-shadow: 0 0 15px var(--glow);
}

.profile-scenes-count {
    color: #0a0f0a;
    font-size: 18px;
    font-weight: 700;
    font-family: 'VT323', monospace;
}

/* Content Area */
.profile-scenes-content {
    padding: 20px;
    color: var(--text2);
    font-size: 16px;
    line-height: 1.8;
}

/* Wenn keine Szenen vorhanden */
.profile-scenes-content:empty::before {
    content: 'Keine Szenen vorhanden';
    display: block;
    text-align: center;
    color: var(--text3);
    font-style: italic;
    opacity: 0.6;
    padding: 30px;
}

/* Szenen Liste Styling (falls du eine Liste nutzt) */
.profile-scenes-content ul,
.profile-scenes-content ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.profile-scenes-content li {
    background: rgba(10, 15, 10, 0.5);
    padding: 12px 16px;
    border-left: 3px solid var(--accent1);
    clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
    transition: all 0.3s;
}

.profile-scenes-content li:hover {
    background: rgba(15, 25, 15, 0.7);
    border-left-color: var(--accent2);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* Links in Szenen */
.profile-scenes-content a {
    color: var(--accent2);
    text-decoration: none;
    transition: all 0.3s;
    text-shadow: 0 0 5px transparent;
}

.profile-scenes-content a:hover {
    color: var(--accent1);
    text-shadow: 0 0 10px var(--glow);
}

/* Responsive Anpassung */
@media (max-width: 1220px) {
    .profile-scenes-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .profile-scenes-counter {
        align-self: flex-end;
    }
}

/* Profil-Vibe */
/* Slider Styling */
#volume-slider {
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.3);
    outline: none;
    border-radius: 5px;
    height: 6px;
}

#volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: white;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

#volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: white;
    cursor: pointer;
    border-radius: 50%;
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

#toggle-play:hover {
    opacity: 0.7;
}

#yt-volume-slider {
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    border-radius: 5px;
    height: 6px;
    transition: background 0.3s;
}

#yt-volume-slider:hover {
    background: rgba(255, 255, 255, 0.3);
}

#yt-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

#yt-volume-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    cursor: pointer;
    border-radius: 50%;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

#yt-play-btn:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.05);
}