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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #000;
            color: #fff;
            overflow: hidden;
            height: 100vh;
        }

        .video-container {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow-y: scroll;
            scroll-snap-type: y mandatory;
            scroll-snap-stop: always;
            scrollbar-width: none;
            -webkit-overflow-scrolling: touch;
        }

        .video-container::-webkit-scrollbar {
            display: none;
        }

        .video-slide {
            position: relative;
            width: 100%;
            height: 100vh;
            scroll-snap-align: start;
            scroll-snap-stop: always;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #000;
        }

        .video-slide video {
            width: 100%;
            height: 100%;
            object-fit: contain;
            background: #000;
            cursor: pointer;
        }

        .video-slide video::-webkit-media-controls-start-playback-button {
            display: none !important;
            -webkit-appearance: none;
        }

        .video-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            z-index: 10;
        }

        .content-labels {
            display: flex;
            gap: 8px;
            margin-bottom: 10px;
            flex-wrap: wrap;
        }

        .content-label {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 600;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .label-video {
            background: linear-gradient(45deg, #ff0050, #ff4d00);
            border-color: #ff0050;
        }

        .label-photo {
            background: linear-gradient(45deg, #00f2ff, #0080ff);
            border-color: #00f2ff;
        }

        .label-text {
            background: linear-gradient(45deg, #9d00ff, #ff00d4);
            border-color: #9d00ff;
        }

        .label-gema {
            background: linear-gradient(45deg, #ffd700, #ffaa00);
            border-color: #ffd700;
            color: #000;
        }

        .text-post-container {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90%;
            max-width: 800px;
            text-align: center;
            z-index: 10;
            padding: 40px;
        }

        .text-post-content {
            font-size: 32px;
            font-weight: 700;
            line-height: 1.4;
            color: white;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
            word-wrap: break-word;
        }

        @media (max-width: 768px) {
            .text-post-content {
                font-size: 24px;
            }
        }

        .video-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 12px;
            text-align: center;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
        }

        .video-description {
            font-size: 16px;
            margin-bottom: 15px;
            text-align: center;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
            line-height: 1.5;
        }

        .video-stats {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 15px;
            font-size: 16px;
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 8px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
        }

        .upload-date {
            text-align: center;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 10px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
        }

        .action-buttons {
            position: absolute;
            right: 20px;
            bottom: 150px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            z-index: 20;
            align-items: center;
        }

        .profile-pic {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: 3px solid white;
            object-fit: cover;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            transition: transform 0.3s;
        }

        .profile-pic:hover {
            transform: scale(1.1);
        }

        .action-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: none;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            color: white;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            position: relative;
        }

        .action-btn:active {
            transform: scale(0.9);
        }

        .action-btn.liked {
            background: linear-gradient(45deg, #ff0050, #ff4d00);
            animation: heartbeat 0.3s;
        }

        .action-btn.active {
            background: linear-gradient(45deg, #00ff88, #00cc66);
        }

        @keyframes heartbeat {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }

        .comment-count {
            font-size: 11px;
            margin-top: 2px;
            display: none;
        }

        .top-bar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(to bottom, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.9) 70%, transparent 100%);
            z-index: 100;
            padding-bottom: 20px;
        }

        .logo-container {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            background: linear-gradient(45deg, #ff0050, #00f2ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .slogan {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.85);
            font-weight: 400;
            letter-spacing: 0.5px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
        }

        .about-btn {
            padding: 8px 16px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            border: none;
            color: white;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
        }

        /* Über Mich Modal */
        .about-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.95);
            z-index: 1000;
            overflow-y: auto;
            animation: fadeIn 0.3s;
        }

        .about-modal.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes fadeInOut {
            0% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
            15% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
            85% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
            100% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
        }

        .about-content {
            max-width: 600px;
            margin: 50px auto;
            padding: 30px;
            background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
            border-radius: 20px;
            position: relative;
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 30px;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            width: 40px;
            height: 40px;
        }

        .about-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .about-header h2 {
            font-size: 32px;
            background: linear-gradient(45deg, #ff0050, #00f2ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
        }

        .profile-image {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #00f2ff;
            margin: 0 auto 20px auto;
            display: block;
        }

        .about-section {
            margin: 15px 0;
            line-height: 1.8;
        }

        .about-section h3 {
            color: #00f2ff;
            margin-bottom: 10px;
            font-size: 20px;
        }

        .about-section p {
            margin-bottom: 10px;
        }

        .app-download-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 0, 80, 0.5) !important;
        }

        .app-download-btn:active {
            transform: translateY(-1px);
        }

        .about-section a:hover {
            color: #ff0050 !important;
            text-decoration: underline !important;
        }

        /* Kommentar Modal */
        .comment-modal {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
            z-index: 1000;
            border-radius: 20px 20px 0 0;
            max-height: 70vh;
            animation: slideUp 0.3s;
            flex-direction: column;
        }

        .comment-modal.active {
            display: flex;
        }

        @keyframes slideUp {
            from { transform: translateY(100%); }
            to { transform: translateY(0); }
        }

        .comment-header {
            padding: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .comment-header h3 {
            font-size: 20px;
        }

        .comment-list {
            flex: 1;
            overflow-y: auto;
            padding: 20px;
        }

        .comment-item {
            background: rgba(255, 255, 255, 0.05);
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Admin-Kommentar Styling */
        .comment-item.admin-comment {
            background: rgba(0, 242, 255, 0.1);
            border: 1px solid rgba(0, 242, 255, 0.3);
        }

        .comment-user {
            font-weight: bold;
            color: #00f2ff;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .admin-badge {
            background: #00f2ff;
            color: #000;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: bold;
        }

        .comment-text {
            color: #ccc;
            line-height: 1.5;
        }

        .comment-time {
            font-size: 12px;
            color: #666;
            margin-top: 5px;
        }

        .comment-input-area {
            padding: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(0, 0, 0, 0.3);
        }

        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .comment-form input,
        .comment-form textarea {
            padding: 12px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-family: inherit;
        }

        .comment-form textarea {
            resize: none;
            min-height: 80px;
        }

        .comment-form input::placeholder,
        .comment-form textarea::placeholder {
            color: #999;
        }

        .comment-submit {
            padding: 12px;
            background: linear-gradient(45deg, #00f2ff, #0080ff);
            border: none;
            border-radius: 10px;
            color: white;
            font-weight: 600;
            cursor: pointer;
        }

        .empty-state {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100vh;
            text-align: center;
            padding: 20px;
        }

        .empty-state h2 {
            font-size: 28px;
            margin-bottom: 15px;
        }

        @media (max-width: 768px) {
            .top-bar {
                padding: 12px 20px 18px 20px;
            }

            .logo {
                font-size: 20px;
            }

            .slogan {
                font-size: 10px;
            }

            .video-title {
                font-size: 20px;
            }
            
            .video-description {
                font-size: 14px;
            }
            
            .action-btn {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }

            .profile-pic {
                width: 50px;
                height: 50px;
            }
        }

/* Playlist Button Hover-Effekt (nur der Button-Style) */
.playlist-btn:hover,
.app-download-btn:hover {
    transform: translateY(-2px);
}

.playlist-btn:active,
.app-download-btn:active {
    transform: translateY(0);
}

.label-ai {
    background: linear-gradient(45deg, #9b59b6, #8e44ad);
    border-color: #9b59b6;
    color: #fff;
}

/* Info Button */
.info-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.info-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.info-btn:active {
    transform: scale(0.95);
}

/* Info Modal */
.info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.info-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s;
}

.info-content {
    background: rgba(20, 20, 30, 0.98);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.info-header {
    text-align: center;
    margin-bottom: 30px;
}

.info-header h2 {
    font-size: 32px;
    background: linear-gradient(45deg, #00f2ff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-section {
    margin-bottom: 25px;
}

.info-section h3 {
    font-size: 20px;
    color: #00f2ff;
    margin-bottom: 15px;
}

.info-section p {
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 10px;
}

.info-section ul {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.info-section li {
    padding: 8px 0;
    color: #ddd;
    line-height: 1.5;
}

.info-section strong {
    color: #00f2ff;
}

@media (max-width: 768px) {
    .info-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
        top: 12px;
        right: 15px;
    }
    
    .info-content {
        padding: 25px;
        max-width: 100%;
    }
    
    .info-header h2 {
        font-size: 24px;
    }
    
    .info-section h3 {
        font-size: 18px;
    }
}

/* Video Progress Bar */
.video-progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 10;
    overflow: hidden;
}

.video-progress-bar {
    height: 100%;
    width: 0%;
    background: rgba(255, 255, 255, 0.9);
    transition: width 0.1s linear;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* Progress Bar wird schöner auf Mobile */
@media (max-width: 768px) {
    .video-progress-container {
        height: 3px;
    }
}

/* Mehrstufiger Kommentar-Flow */
.comment-step {
    display: block;
}

.comment-step.hidden {
    display: none;
}

.comment-start-field {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 15px 20px;
    text-align: center;
    color: #999;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.comment-start-field:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 242, 255, 0.3);
    color: #00f2ff;
}

.comment-input-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.comment-input-row input,
.comment-input-row textarea {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 15px 20px;
    color: #fff;
    font-size: 16px;
    font-family: inherit;
    resize: none;
    outline: none;
    transition: all 0.3s;
}

.comment-input-row input:focus,
.comment-input-row textarea:focus {
    border-color: #00f2ff;
    background: rgba(0, 242, 255, 0.05);
}

.comment-input-row textarea {
    min-height: 50px;
    max-height: 120px;
    overflow-y: auto;
}

.comment-next-btn,
.comment-send-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(45deg, #00f2ff, #0080ff);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.comment-next-btn:hover,
.comment-send-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 242, 255, 0.4);
}

.comment-next-btn:active,
.comment-send-btn:active {
    transform: scale(0.95);
}

.comment-send-btn {
    background: linear-gradient(45deg, #ff0050, #ff4d00);
}

.comment-send-btn:hover {
    box-shadow: 0 5px 15px rgba(255, 0, 80, 0.4);
}

@media (max-width: 768px) {
    .comment-start-field {
        font-size: 14px;
        padding: 12px 18px;
    }
    
    .comment-input-row input,
    .comment-input-row textarea {
        font-size: 14px;
        padding: 12px 18px;
    }
    
    .comment-next-btn,
    .comment-send-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}
