/* Reset and Base/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #2a2a2a;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Dark theme scrollbar */
body.dark-theme ::-webkit-scrollbar-track {
    background: #2d2d2d;
}

body.dark-theme ::-webkit-scrollbar-thumb {
    background: #555;
}

body.dark-theme ::-webkit-scrollbar-thumb:hover {
    background: #777;
}

/* Firefox scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
}

body.dark-theme {
    scrollbar-color: #555 #2d2d2d;
}

/* Admin Panel Styles */
.admin-panel {
    padding: 8rem 0 4rem 0;
    min-height: calc(100vh - 200px);
}

.admin-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Edit Modal Styles */
.edit-modal-content {
    max-width: 98vw !important;
    width: 98% !important;
    max-height: 95vh;
    margin: 1% auto;
    overflow: hidden;
    border-radius: 16px;
}

.edit-modal-body {
    max-height: calc(90vh - 200px);
    overflow-y: auto;
    padding: 1rem;
}

.edit-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
    background: #2a2a2a;
    border-bottom: 1px solid #e2e8f0;
    align-items: center;
    justify-content: center;
}

.toolbar-group {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.edit-toolbar button {
    padding: 0.5rem;
    border: 1px solid #d1d5db;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.edit-toolbar select {
    padding: 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: white;
    cursor: pointer;
}

.rich-editor {
    width: 100%;
    min-height: 400px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    background: white;
    outline: none;
    overflow-y: auto;
}

.modal-footer {
    flex-direction: column;
    gap: 0.8rem;
    padding: 1rem 1.2rem;
    background: rgba(42, 42, 42, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0;
    order: -1; /* Footer nach oben verschieben */
}

.modal-footer .btn {
    width: 100%;
    padding: 0.9rem 1.5rem;
    min-height: 48px;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding: 1.5rem;
    border-top: 1px solid #e2e8f0;
    background: #2a2a2a;
    flex-wrap: wrap;
}

/* Dark theme for edit modal */
body.dark-theme .edit-modal-content {
    background: #1a1a1a;
    color: #f0f0f0;
}

body.dark-theme .edit-toolbar {
    background: #2a2a2a;
    border-bottom-color: #404040;
}

body.dark-theme .edit-toolbar button {
    background: #333;
    border-color: #555;
    color: #f0f0f0;
}

body.dark-theme .edit-toolbar button:hover {
    background: #444;
    border-color: #d4af37;
}

body.dark-theme .edit-toolbar select {
    background: #333;
    border-color: #555;
    color: #f0f0f0;
}

body.dark-theme .rich-editor {
    background: #2a2a2a;
    border-color: #404040;
    color: #f0f0f0;
}

body.dark-theme .rich-editor:focus {
    border-color: #d4af37;
    background: #333;
}

body.dark-theme .modal-footer {
    border-top-color: #404040;
    background: #2a2a2a;
}

.admin-header {
    text-align: center;
    margin-bottom: 3rem;
}

.admin-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.admin-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.admin-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.admin-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.admin-card-header i {
    font-size: 1.5rem;
    color: #d4af37;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
}

.admin-card-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    color: #1a202c;
}

.admin-card-content p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: #2a2a2a;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    min-width: 0;
    box-sizing: border-box;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.admin-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.activity-log {
    margin-bottom: 1.5rem;
}

.activity-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-time {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.activity-text {
    font-size: 0.875rem;
    color: #1a202c;
}

/* Dark theme for admin panel */
body.dark-theme .admin-card {
    background: #1a1a1a;
    border-color: #333;
}

body.dark-theme .admin-card-header h3 {
    color: #f0f0f0;
}

body.dark-theme .admin-card-content p {
    color: #a0a0a0;
}

body.dark-theme .stat-item {
    background: #2d2d2d;
    border-color: #444;
}

body.dark-theme .stat-label {
    color: #a0a0a0;
}

body.dark-theme .activity-item {
    border-color: #333;
}

body.dark-theme .activity-time {
    color: #a0a0a0;
}

body.dark-theme .activity-text {
    color: #f0f0f0;
}

/* Responsive design for admin panel */
@media (max-width: 1200px) {
    .admin-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .admin-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .admin-card {
        padding: 1.5rem;
    }
    
    .admin-header h1 {
        font-size: 2rem;
    }
    
    .admin-stats {
        grid-template-columns: 1fr;
    }
    
    .activity-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Dark Theme */
body.dark-theme {
    background-color: #0f0f0f;
    color: #f0f0f0;
}

body.dark-theme .navbar {
    background: rgba(15, 15, 15, 0.98);
    border-bottom: 1px solid #333;
}

body.dark-theme .footer {
    background: rgba(15, 15, 15, 0.95);
    color: #f0f0f0;
    border-top: 1px solid #333;
}

body.dark-theme .footer-section h3,
body.dark-theme .footer-section h4 {
    color: #f0f0f0;
}

body.dark-theme .footer-section p {
    color: #94a3b8;
}

body.dark-theme .footer-section ul li a {
    color: #94a3b8;
}

body.dark-theme .footer-section ul li a:hover {
    color: #f0f0f0;
}

body.dark-theme .footer-bottom {
    border-top: 1px solid #333;
    color: #94a3b8;
}

body.dark-theme .footer-copyright {
    color: #94a3b8;
}

/* Dark theme for legal modal */
body.dark-theme .legal-modal-content .modal-header {
    border-bottom: 1px solid #374151;
    background: #374151;
    color: #9ca3af;
}

body.dark-theme .legal-modal-content .close {
    color: #94a3b8;
}

body.dark-theme .legal-modal-content .close:hover {
    color: #e2e8f0;
}

body.dark-theme .hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

body.dark-theme .about,
body.dark-theme .video-testimonials,
body.dark-theme .customers,
body.dark-theme .reviews,
body.dark-theme .contact {
    background-color: #1a1a1a;
    border-top: 1px solid #333;
}

body.dark-theme .testimonial-card,
body.dark-theme .review-card,
body.dark-theme .stat {
    background-color: #2a2a2a;
    color: #f0f0f0;
    border: 1px solid #404040;
}

body.dark-theme .legal-page {
    background-color: #0f0f0f;
}

body.dark-theme .legal-content {
    background-color: #1a1a1a;
    color: #f0f0f0;
    border: 1px solid #333;
}

/* Dark Theme Text Colors */
body.dark-theme h1,
body.dark-theme h2,
body.dark-theme h3,
body.dark-theme h4,
body.dark-theme h5,
body.dark-theme h6 {
    color: #ffffff;
}

/* Customer type cards in dark theme */
body.dark-theme .customer-type {
    background-color: #2a2a2a;
    border: 1px solid #404040;
    color: #f0f0f0;
}

body.dark-theme .customer-type:hover {
    background-color: #333333;
    border: 1px solid #555;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

body.dark-theme .customer-type h3 {
    color: #ffffff;
}

body.dark-theme .customer-type p {
    color: #cccccc;
}

body.dark-theme .customer-type i {
    color: #d4af37;
}

/* Hero subtitle in dark theme */
body.dark-theme .hero-subtitle {
    color: #ffffff;
}

/* Typewriter Animation */
.typewriter-cursor::after {
    content: '|';
    animation: blink 1s infinite;
    color: #d4af37;
    font-weight: bold;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Navigation logo in dark theme */
body.dark-theme .nav-logo h2 {
    color: #ffffff;
}

/* Navigation links in dark theme */
body.dark-theme .nav-link {
    color: #f0f0f0;
}

body.dark-theme .nav-link:hover {
    color: #d4af37;
}

/* Card content with high contrast */
body.dark-theme .stat h3,
body.dark-theme .stat p,
body.dark-theme .testimonial-card h3,
body.dark-theme .testimonial-card p,
body.dark-theme .customers h3,
body.dark-theme .customers p {
    color: #f0f0f0;
}

/* Form elements in dark theme */
body.dark-theme input,
body.dark-theme textarea,
body.dark-theme select {
    background-color: #2a2a2a;
    color: #f0f0f0;
    border: 1px solid #555;
}

body.dark-theme input::placeholder,
body.dark-theme textarea::placeholder {
    color: #aaa;
}

/* Contact methods in dark theme */
body.dark-theme .contact-method {
    background-color: #2a2a2a;
    border: 1px solid #404040;
    color: #f0f0f0;
}

body.dark-theme .contact-method h3 {
    color: #d4af37;
}

body.dark-theme .contact-method p {
    color: #f0f0f0;
}

/* Theme Toggle Button */
.theme-toggle {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    border: none;
    border-radius: 50px;
    padding: 0.5rem 1rem;
    color: black;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    margin-left: 1rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3), 0 2px 8px rgba(0, 0, 0, 0.1);
}

.theme-toggle:hover {
    background: linear-gradient(135deg, #b8860b, #9a7209);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4), 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Social Media Buttons */
.social-nav {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-btn.whatsapp {
    background: #25D366;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.social-btn.youtube {
    background: #FF0000;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(0, 0, 0, 0.1);
}

.social-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 4px 15px rgba(0, 0, 0, 0.15);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.nav-logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 8px;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.3));
}

.nav-logo h2 {
    color: black;
    font-weight: 700;
    font-size: 1.8rem;
    margin: 0;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #d4af37;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Side Navigation */
.side-nav {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.side-nav-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    border-radius: 50px;
    text-decoration: none;
    color: black;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3), 0 3px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
    min-width: 180px;
}

.side-nav-item:hover,
.side-nav-item.active {
    background: linear-gradient(135deg, #b8860b, #9a7209);
    color: black;
    transform: translateX(-12px) translateY(-2px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4), 0 6px 20px rgba(0, 0, 0, 0.2);
}

.side-nav-item i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

/* Buttons */
.btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
    min-height: 44px;
    touch-action: manipulation;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: black;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3), 0 3px 10px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #b8860b, #9a7209);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4), 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2), 0 2px 8px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    background: #d4af37;
    color: black;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4), 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-danger {
    background-color: #dc3545;
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-danger:hover {
    background-color: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}

.dark-theme .btn-danger {
    background-color: #e74c3c;
}

.dark-theme .btn-danger:hover {
    background-color: #c0392b;
    box-shadow: 0 4px 8px rgba(231, 76, 60, 0.3);
}

/* Review Management Modal Styles */
.review-management-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background-color: #2a2a2a;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    flex-wrap: wrap;
    gap: 1rem;
}

.dark-theme .review-management-toolbar {
    background-color: #2c3e50;
    border-color: #34495e;
}

.review-stats {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-badge {
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
}

.stat-badge.new {
    background-color: #28a745;
}

.stat-badge.total {
    background-color: #2c3e50;
}

.review-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.reviews-list {
    max-height: 60vh;
    overflow-y: auto;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    background-color: #2a2a2a;
}

.dark-theme .reviews-list {
    background-color: #2c3e50;
    border-color: #34495e;
}

.review-item {
    padding: 24px;
    margin-bottom: 16px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #f0f0f0;
    position: relative;
    overflow: hidden;
}

.review-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f1c40f, #d4af37);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dark-theme .review-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border-color: rgba(255, 255, 255, 0.15);
    color: #f0f0f0;
}

.review-item:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.review-item:hover::before {
    opacity: 1;
}

.dark-theme .review-item:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    border-color: rgba(212, 175, 55, 0.4);
}

.review-item:last-child {
    margin-bottom: 0;
}

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

.review-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-rating {
    display: flex;
    gap: 3px;
    align-items: center;
}

.review-rating .star {
    color: #d4af37;
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
    filter: drop-shadow(0 1px 2px rgba(212, 175, 55, 0.4));
    transition: all 0.3s ease;
}

.review-item:hover .review-rating .star {
    transform: scale(1.05);
    text-shadow: 0 3px 6px rgba(212, 175, 55, 0.5);
}

.review-author {
    font-weight: 600;
    color: #f0f0f0;
}

.dark-theme .review-author {
    color: #f0f0f0;
}

.review-date {
    color: #6c757d;
    font-size: 0.9rem;
}

.review-actions-item {
    display: flex;
    gap: 8px;
}

.review-content {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #f0f0f0;
}

.dark-theme .review-content {
    color: #f0f0f0 !important;
}

body:not(.dark-theme) .review-content {
    color: #000000 !important;
}

.review-customer-code {
    font-size: 0.8rem;
    color: #94a3b8;
    font-style: italic;
}

.dark-theme .review-customer-code {
    color: #94a3b8;
}

.empty-reviews {
    text-align: center;
    padding: 3rem 2rem;
    color: #94a3b8;
}

.empty-reviews i {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.empty-reviews h3 {
    color: #f0f0f0;
    margin-bottom: 0.5rem;
}

.empty-reviews p {
    color: #94a3b8;
}

/* Code Management Styles */
.code-management-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #2a2a2a;
    border-radius: 12px;
    border: 1px solid #444;
    flex-wrap: wrap;
    gap: 1rem;
}

.code-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-badge.active {
    background-color: #27ae60;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.stat-badge.used {
    background-color: #95a5a6;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.code-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.codes-list {
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #444;
    border-radius: 8px;
    background: #2a2a2a;
}

.code-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #444;
    background: #2a2a2a;
    color: #f0f0f0;
}

.code-item:last-child {
    border-bottom: none;
}

.code-item:hover {
    background: #333;
}

.code-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.code-value {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: bold;
    color: #d4af37;
    letter-spacing: 1px;
}

.code-meta {
    font-size: 0.85rem;
    color: #94a3b8;
}

.code-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-badge.active {
    background-color: #27ae60;
    color: white;
}

.status-badge.used {
    background-color: #95a5a6;
    color: white;
}

.code-actions-btn {
    display: flex;
    gap: 0.5rem;
}

.btn-small {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    border-radius: 4px;
}

.empty-codes {
    text-align: center;
    padding: 3rem 2rem;
    color: #94a3b8;
}

.empty-codes i {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.empty-codes h3 {
    color: #f0f0f0;
    margin-bottom: 0.5rem;
}

.empty-codes p {
    color: #94a3b8;
}

.btn-sm {
    padding: 5px 10px;
    font-size: 0.8rem;
    border-radius: 4px;
}

.empty-reviews {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
}

.dark-theme .empty-reviews {
    color: #95a5a6;
}

.empty-reviews i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #2a2a2a 0%, #333 100%);
    padding-top: 100px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: black;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-placeholder {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-size: 4rem;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

/* Sections */
section {
    padding: 5rem 0;
}

section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #1e293b;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

/* About Section */
.about {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: #2a2a2a;
    border-radius: 15px;
    border-left: 4px solid #d4af37;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #64748b;
    font-weight: 500;
}

/* Video Testimonials */
.video-testimonials {
    background: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.video-button {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    height: 200px;
}

.video-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
}

.play-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: black;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    z-index: 2;
}

.video-button:hover .play-button {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1.5rem 1rem 1rem;
    color: white;
}

.video-overlay h4 {
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.video-overlay p {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
}

.testimonial-card p {
    color: #64748b;
    line-height: 1.6;
    font-style: italic;
}

/* Customers Section */
.customers {
    background: white;
}

.customers-content p {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.customer-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.customer-type {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #2a2a2a;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.customer-type:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.customer-type i {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.customer-type h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.customer-type p {
    color: #64748b;
}

/* Reviews Section */
/* YouTube Videos Section */
.youtube-videos {
    background-color: #ffffff;
    padding: 60px 0;
    border-bottom: 1px solid #e2e8f0;
}

.youtube-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: center;
}

.youtube-grid .youtube-video {
    flex: 0 0 auto;
}

@media (min-width: 1200px) {
    .youtube-grid .youtube-video {
        width: 350px;
    }
}

@media (max-width: 1199px) and (min-width: 768px) {
    .youtube-grid .youtube-video {
        width: 310px;
    }
}

@media (max-width: 767px) {
    .youtube-grid .youtube-video {
        width: 100%;
        max-width: 400px;
    }
}

.youtube-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #000;
}

.youtube-video:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.15);
}

.youtube-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Dark theme for YouTube videos */
.dark-theme .youtube-videos {
    background-color: #1a1a1a;
    border-bottom: 1px solid #333;
}

.dark-theme .youtube-video {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

.dark-theme .youtube-video:hover {
    box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.4);
}

.reviews {
    background-color: #f8fafc;
    padding: 1px 0;
}

.reviews .container {
    position: relative;
}

.reviews .section-subtitle {
    color: #64748b;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 1200px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Legal Section */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 1rem;
    margin: 0;
    padding: 0 20px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    font-size: 0.95rem;
}

.footer-links a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #b8860b;
    text-decoration: underline;
}

.admin-link {
    font-size: 0.95rem;
}

.admin-link a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.admin-link a:hover {
    color: #b8860b;
    text-decoration: underline;
}

.footer-copyright {
    color: #64748b;
    font-size: 0.9rem;
}

.legal-buttons .btn:hover {
    background: linear-gradient(135deg, #b8860b, #9a7209);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4), 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Gold Home button styling - matching Ibras Bewertungen button */
.home-btn-gold {
    background: linear-gradient(135deg, #d4af37, #b8860b) !important;
    color: black !important;
    border: none !important;
    padding: 0.6rem 1.2rem !important;
    border-radius: 5px !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    box-shadow: 0 5px 18px rgba(212, 175, 55, 0.3), 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.home-btn-gold:hover {
    background: linear-gradient(135deg, #b8860b, #9a7209) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4), 0 6px 20px rgba(0, 0, 0, 0.15) !important;
    color: black !important;
}

.review-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 2px 16px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    /* Fallback für Browser ohne backdrop-filter Support */
    background-color: rgba(255, 255, 255, 0.9);
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f1c40f, #d4af37);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 200% 0; }
    50% { background-position: -200% 0; }
}

.review-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    position: relative;
}

.review-header h4 {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}

.info-text {
    font-size: 0.75rem;
    color: #ffffff;
    font-weight: 400;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.review-timestamp {
    font-size: 0.7rem;
    color: #94a3b8;
    font-weight: 500;
    text-align: right;
    margin-top: 1rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    opacity: 0.8;
}

.rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
}

.rating-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #d4af37;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stars {
    color: #d4af37;
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
    filter: drop-shadow(0 1px 2px rgba(212, 175, 55, 0.4));
    transition: all 0.3s ease;
}

.review-card:hover .stars {
    transform: scale(1.1);
    text-shadow: 0 4px 8px rgba(212, 175, 55, 0.5);
}

.review-count {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
    opacity: 0.8;
}

.review-card h5 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1.2rem;
    font-size: 0.75rem;
    line-height: 1.4;
    margin: 0.5rem 0 0 0;
}

.review-card p {
    color: #1a1a1a;
    line-height: 1.7;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    padding-left: 1.5rem;
    margin: 0;
    letter-spacing: 0.02em;
}

.dark-theme .review-card p {
    color: #f0f0f0 !important;
}

body:not(.dark-theme) .review-card p {
    color: #1a1a1a !important;
}

.review-card p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.2rem;
    font-size: 2.5rem;
    color: #d4af37;
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.review-card p::after {
    content: '"';
    color: #d4af37;
    opacity: 0.3;
    font-size: 1.2rem;
    font-family: Georgia, serif;
}

/* Responsive Design für Review Cards */
@media (max-width: 768px) {
    .review-card {
        padding: 1.8rem;
        margin-bottom: 1.5rem;
        border-radius: 20px;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .review-header h4 {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .rating {
        align-items: flex-start;
    }
    
    .stars {
        font-size: 1.3rem;
    }
    
    .review-card p {
        font-size: 0.95rem;
        padding-left: 1.2rem;
    }
    
    .review-card p::before {
        font-size: 2rem;
        top: -0.1rem;
    }
}

@media (max-width: 480px) {
    .review-card {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .review-header h4 {
        font-size: 0.95rem;
    }
    
    .stars {
        font-size: 1.2rem;
    }
    
    .review-card p {
        font-size: 0.9rem;
        padding-left: 1rem;
    }
    
    .review-card p::before {
        font-size: 1.8rem;
    }
}

/* Contact Section */
.contact {
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.contact-info p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #2a2a2a;
    border-radius: 10px;
}

.contact-method i {
    color: #d4af37;
    font-size: 1.2rem;
    width: 20px;
}

.contact-form {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #d4af37;
}

/* Main content area */
.reviews {
    flex: 1;
}

/* Footer */
.footer {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #333;
    padding: 0.5rem 0;
    min-height: 48px;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: auto;
}



.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #333;
}

.footer-section p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #333;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #334155;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #334155;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    background: #d4af37;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4), 0 4px 15px rgba(0, 0, 0, 0.15);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    color: #64748b;
}

/* Legal Pages Styling */
.legal-page {
    min-height: 130vh;
    padding-top: 60px;
    padding-bottom: 60px;
    background: linear-gradient(135deg, #2a2a2a 0%, #333 100%);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
    text-align: center;
}

/* Dark theme override for legal content */
body.dark-theme .legal-content {
    background-color: #1a1a1a !important;
    color: #f0f0f0 !important;
    border: 1px solid #333 !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
}

.agb-content {
    text-align: left;
    margin: 2rem 0;
}

.agb-content h2,
.agb-content h3 {
    text-align: center;
    margin: 2rem 0 1rem 0;
}

.contact-info {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.legal-content h1 {
    color: #1e293b;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 3px solid #d4af37;
    padding-bottom: 1rem;
}

.legal-content h2 {
    color: #d4af37;
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #d4af37;
    padding-left: 1rem;
}

.legal-content h3 {
    color: #475569;
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h4 {
    color: #64748b;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-section {
    background: #2a2a2a;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #d4af37;
}

.legal-section p {
    margin-bottom: 1rem;
    color: #475569;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: black;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3), 0 3px 10px rgba(0, 0, 0, 0.1);
}

.back-btn:hover {
    background: linear-gradient(135deg, #b8860b, #9a7209);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4), 0 6px 20px rgba(0, 0, 0, 0.15);
}

.back-btn i {
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .side-nav {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

/* Mobile Navigation Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-website-btn {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-website-btn .btn {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    min-width: 250px;
    z-index: 1000;
    margin-top: 10px;
}

.mobile-menu.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu-content {
    padding: 1rem;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    text-decoration: none;
    color: #333;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    cursor: pointer;
    margin-bottom: 5px;
}

.mobile-menu-item:hover {
    background-color: rgba(212, 175, 55, 0.1);
    color: #d4af37;
}

.mobile-menu-item i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.mobile-menu-item span {
    font-weight: 500;
}

/* Dark Theme Mobile Menu Styles */
.dark-theme .mobile-menu {
    background: rgba(20, 20, 20, 0.98);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.dark-theme .mobile-menu-item {
    color: #e0e0e0;
}

.dark-theme .mobile-menu-item:hover {
    background-color: rgba(212, 175, 55, 0.15);
    color: #d4af37;
}

.dark-theme .mobile-menu-toggle span {
    background-color: #e0e0e0;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-desktop {
        display: none;
    }
    
    .nav-logo h2 {
        font-size: 1.4rem;
    }
    
    .nav-logo img {
        width: 35px;
        height: 35px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-placeholder {
        width: 300px;
        height: 300px;
        font-size: 3rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .footer {
        padding: 0.75rem 0;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .admin-link {
        margin-left: 0;
    }
    
    .stat {
        padding: 1.5rem 1rem;
    }
    
    .testimonials-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .customer-types {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-placeholder {
        width: 250px;
        height: 250px;
        font-size: 2.5rem;
    }
    
    .about-stats {
        flex-direction: column;
    }
    
    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    section h2 {
        font-size: 2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.testimonial-card,
.review-card,
.customer-type {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover Effects */
.testimonial-card,
.review-card {
    position: relative;
    overflow: hidden;
}

.testimonial-card::before,
.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: left 0.5s ease;
}

.testimonial-card:hover::before,
.review-card:hover::before {
    left: 100%;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

/* Legal Modal Specific Styles */
.legal-modal-content {
    max-width: 98vw !important;
    width: 98% !important;
    max-height: 95vh;
    margin: 1% auto;
    overflow: hidden;
    border-radius: 16px;
    transition: all 0.3s ease;
}

/* Management Modal Specific Styles - Limited Width */
#reviewManagementModal .legal-modal-content,
#codeManagementModal .legal-modal-content {
    max-width: 1160px !important;
    width: 95% !important;
}

/* YouTube Modal - Same size as Code Management Modal */
#youtubeModal .modal-content {
    max-width: 1160px !important;
    width: 95% !important;
}

.legal-modal-body {
    max-height: calc(90vh - 120px);
    overflow-y: auto;
    padding: 2rem;
}

.legal-modal-content .modal-header {
    position: relative;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    color: #6b7280;
    border-radius: 16px 16px 0 0;
    transition: all 0.3s ease;
}

.legal-modal-content .close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.legal-modal-content .close:hover {
    color: #333;
}

/* Legal content styling */
#legalModalContent h1 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

#legalModalContent h2 {
    color: var(--text-color);
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
}

#legalModalContent h3 {
    color: var(--text-color);
    margin: 1.5rem 0 0.75rem 0;
    font-size: 1.25rem;
}

#legalModalContent h4 {
    color: var(--text-color);
    margin: 1rem 0 0.5rem 0;
    font-size: 1.1rem;
}

#legalModalContent p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

#legalModalContent ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

#legalModalContent li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

#legalModalContent a {
    color: var(--primary-color);
    text-decoration: none;
}

#legalModalContent a:hover {
    text-decoration: underline;
}

.modal-content {
    background: #1a1a1a;
    color: #f0f0f0;
    margin: 3% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 550px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease-out;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #333;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    color: black;
    transition: all 0.3s ease;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.close {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.close:hover {
    opacity: 0.7;
}

.modal-body {
    padding: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    color: #e5e7eb;
    font-size: 0.9rem;
}

.form-group input,
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.6rem;
    border: 2px solid #333;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #2a2a2a;
    color: #f0f0f0;
    min-height: 44px;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
    background: #333;
}

.form-group small {
    display: block;
    margin-top: 0.25rem;
    color: #6b7280;
    font-size: 0.875rem;
}

/* Character Counter */
.character-counter {
    text-align: right;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.character-counter.warning {
    color: #f59e0b;
}

.character-counter.danger {
    color: #ef4444;
}

/* Star Rating */
.star-rating {
    display: flex;
    gap: 0.25rem;
    margin: 0.5rem 0;
}

.star {
    font-size: 2rem;
    color: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.star:hover {
    transform: scale(1.1);
}

.star.active,
.star.hover {
    color: #fbbf24;
}

.modal-buttons {
    display: flex;
    gap: 0.8rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.form-actions .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    min-height: 44px;
    touch-action: manipulation;
}

/* Placeholder styles for modal buttons */
.modal-buttons .btn {
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Admin Panel Styles */
.admin-content {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border: 1px solid #e9ecef;
}

.admin-section {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    border: 1px solid #dee2e6;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.admin-section h3 {
    color: #d4af37;
    margin-bottom: 1rem;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 0.5rem;
}

/* Dark theme for admin panel */
body.dark-theme .admin-content {
    background: #2a2a2a;
    border-color: #333;
}

body.dark-theme .admin-section {
    background: #1a1a1a;
    border-color: #333;
    color: #f0f0f0;
}

body.dark-theme .admin-section h3 {
    color: #d4af37;
}

/* Dark Theme: Yellow texts become white */
body.dark-theme .review-header h4 {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    color: #ffffff !important;
}

body.dark-theme .rating-text {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    color: #ffffff !important;
}

/* Light Theme: Yellow texts become black */
body:not(.dark-theme) .review-header h4 {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    color: #000000 !important;
}

body:not(.dark-theme) .rating-text {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    color: #000000 !important;
}

/* Light Theme: Info text (age/location) becomes black */
body:not(.dark-theme) .info-text {
    color: #000000 !important;
}

/* Load More Button */
.load-more-container {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.load-more-btn {
    background: linear-gradient(135deg, #d4af37 0%, #f1c40f 50%, #d4af37 100%);
    color: #2c3e50;
    border: none;
    padding: 16px 32px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 
        0 8px 32px rgba(212, 175, 55, 0.3),
        0 2px 16px rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.load-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.load-more-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 16px 48px rgba(212, 175, 55, 0.4),
        0 8px 32px rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, #f1c40f 0%, #d4af37 50%, #f1c40f 100%);
}

.load-more-btn:hover::before {
    left: 100%;
}

.load-more-btn:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 8px 24px rgba(212, 175, 55, 0.3),
        0 4px 16px rgba(212, 175, 55, 0.2);
}

.load-more-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.load-more-btn:hover i {
    transform: rotate(90deg);
}

/* Dark Theme Load More Button */
body.dark-theme .load-more-btn {
    background: linear-gradient(135deg, #d4af37 0%, #f1c40f 50%, #d4af37 100%);
    color: #1a1a1a;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

body.dark-theme .load-more-btn:hover {
    background: linear-gradient(135deg, #f1c40f 0%, #d4af37 50%, #f1c40f 100%);
    box-shadow: 
        0 16px 48px rgba(212, 175, 55, 0.5),
        0 8px 32px rgba(212, 175, 55, 0.4);
}

/* About Ibra Section */
.about-ibra {
    padding: 8rem 0 3rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.about-ibra::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.about-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ibra-photo {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 16px;
    box-shadow: 
        0 24px 48px rgba(0, 0, 0, 0.12),
        0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    object-fit: cover;
}

.ibra-photo:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.16),
        0 12px 32px rgba(0, 0, 0, 0.12);
}

.about-text {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    letter-spacing: -0.02em;
    text-align: left;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #d4af37 0%, #f1c40f 100%);
    border-radius: 2px;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #5a6c7d;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Dark Theme About Ibra */
body.dark-theme .about-ibra {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

body.dark-theme .about-text h2 {
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.dark-theme .about-text p {
    color: #cbd5e0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-ibra {
        padding: 7rem 0 2.5rem 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 0 1.5rem;
    }
    
    .about-text h2 {
        font-size: 2.2rem;
    }
    
    .about-text p {
        font-size: 1.1rem;
    }
    
    .ibra-photo {
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .about-ibra {
        padding: 6rem 0 2rem 0;
    }
    
    .about-content {
        gap: 2.5rem;
        padding: 0 1rem;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .ibra-photo {
        max-width: 240px;
    }
}

/* Mobile Modal Optimizations - Responsive Design für alle Modals */
@media (max-width: 768px) {
    /* Allgemeine Modal-Optimierungen für Mobile */
    .modal-content,
    .legal-modal-content {
        width: 95% !important;
        max-width: 95vw !important;
        max-height: calc(100vh - 100px) !important; /* 50px Abstand oben + 50px Abstand unten */
        margin: 50px auto 50px auto !important; /* Fester Abstand oben und unten */
        overflow: hidden;
        border-radius: 16px;
        position: relative;
        top: 0;
        transform: none;
    }
    
    .modal-header {
        padding: 1rem 1.2rem;
        border-radius: 16px 16px 0 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .modal-header h3 {
        font-size: 1.3rem;
        line-height: 1.3;
    }
    
    .close {
        font-size: 1.8rem;
        padding: 0.5rem;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Buttons direkt nach dem Header - Mobile-optimiert */
    .modal-buttons,
    .form-actions {
        flex-direction: column;
        gap: 0.8rem;
        margin: 0;
        padding: 1rem 1.2rem;
        background: rgba(42, 42, 42, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        order: -1; /* Buttons nach oben verschieben */
    }
    
    .modal-buttons .btn,
    .form-actions .btn {
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
        min-height: 48px;
        border-radius: 8px;
    }
    
    .modal-body {
        padding: 1.2rem;
        max-height: calc(100vh - 280px); /* Mehr Platz für den Body ohne Footer */
        overflow-y: auto;
        order: 1; /* Body nach den Buttons */
    }
    
    .legal-modal-body {
        padding: 1.2rem;
        max-height: calc(100vh - 280px); /* Mehr Platz für den Body ohne Footer */
        overflow-y: auto;
        order: 1; /* Body nach den Buttons */
    }
    
    /* Formular-Optimierungen für Mobile */
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    .form-group label {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        display: block;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.8rem;
        font-size: 1rem;
        border-radius: 8px;
        min-height: 48px; /* Touch-freundliche Höhe */
    }
    
    .form-group textarea {
        min-height: 120px;
    }
    
    /* Star Rating für Mobile optimieren */
    .star-rating {
        justify-content: center;
        gap: 0.5rem;
        margin: 1rem 0;
    }
    
    .star {
        font-size: 2.5rem;
        min-width: 48px;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Character Counter für Mobile */
    .character-counter {
        text-align: center;
        margin-top: 0.8rem;
        font-size: 0.9rem;
    }
    
    /* Review Modal spezifische Mobile-Optimierungen */
    #reviewModal .modal-content {
        max-height: calc(100vh - 100px);
        margin: 50px auto 50px auto;
    }
    
    #reviewModal .modal-body {
        max-height: calc(100vh - 280px);
    }
    
    /* Admin Modal spezifische Mobile-Optimierungen */
    #adminModal .modal-content {
        max-height: calc(100vh - 100px);
        margin: 50px auto 50px auto;
    }
    
    #adminModal .modal-body {
        max-height: calc(100vh - 280px);
    }
    
    /* Legal Modal spezifische Mobile-Optimierungen */
    #legalModal .legal-modal-content {
        max-height: calc(100vh - 100px);
        margin: 50px auto 50px auto;
    }
    
    #legalModal .legal-modal-body {
        max-height: calc(100vh - 280px);
    }
    
    /* Review Management Modal Mobile-Optimierungen */
    #reviewManagementModal .legal-modal-content {
        max-height: calc(100vh - 100px);
        margin: 50px auto 50px auto;
    }
    
    #reviewManagementModal .legal-modal-body {
        max-height: calc(100vh - 280px);
    }
    
    .review-management-toolbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 1rem;
    }
    
    .review-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .review-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .reviews-list {
        max-height: calc(100vh - 400px); /* Mehr Platz für die Liste */
        overflow-y: auto;
    }
    
    .review-item {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    
    .review-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .review-actions-item {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }
    
    .review-actions-item .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Code Management Modal Mobile-Optimierungen */
    #codeManagementModal .legal-modal-content {
        max-height: calc(100vh - 100px);
        margin: 50px auto 50px auto;
    }
    
    #codeManagementModal .legal-modal-body {
        max-height: calc(100vh - 280px);
    }
    
    .code-management-toolbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 1rem;
    }
    
    .code-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .code-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .codes-list {
        max-height: calc(100vh - 400px); /* Mehr Platz für die Liste */
        overflow-y: auto;
    }
    
    .code-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.2rem;
    }
    
    .code-status {
        width: 100%;
        justify-content: space-between;
    }
    
    .code-actions-btn {
        width: 100%;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .code-actions-btn .btn {
        flex: 1;
        min-width: 0;
    }
    
    /* YouTube Modal Mobile-Optimierungen */
    #youtubeModal .modal-content {
        max-height: calc(100vh - 100px);
        margin: 50px auto 50px auto;
    }
    
    #youtubeModal .modal-body {
        max-height: calc(100vh - 280px);
    }
    
    .youtube-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .youtube-video {
        width: 100%;
        max-width: 100%;
    }
    
    .modal-actions {
        flex-direction: column;
        gap: 0.8rem;
        margin: 0;
        padding: 1rem 1.2rem;
        background: rgba(42, 42, 42, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        order: -1; /* Buttons nach oben verschieben */
    }
    
    .modal-actions .btn {
        width: 100%;
        padding: 0.9rem 1.5rem;
        min-height: 48px;
    }
    
    /* Edit Modal Mobile-Optimierungen */
    .edit-modal-content {
        width: 95% !important;
        max-width: 95vw !important;
        max-height: calc(100vh - 100px) !important;
        margin: 50px auto 50px auto !important;
        overflow: hidden;
    }
    
    .edit-modal-body {
        max-height: calc(100vh - 320px); /* Mehr Platz für den Editor */
        padding: 1rem;
        overflow-y: auto;
        order: 1; /* Body nach den Buttons */
    }
    
    .edit-toolbar {
        flex-direction: row !important; /* Horizontale Anordnung statt vertikal */
        gap: 0.5rem;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 1rem;
        flex-wrap: wrap; /* Buttons umbrechen wenn nötig */
        justify-content: flex-start !important; /* Links ausrichten statt zentriert */
        align-items: center;
        background: #2a2a2a;
    }
    
    .toolbar-group {
        display: flex;
        gap: 0.25rem; /* Kleinere Abstände zwischen Buttons */
        align-items: center;
        flex-wrap: nowrap !important; /* Buttons in der Gruppe nicht umbrechen */
        justify-content: flex-start;
        margin-right: 1rem; /* Abstand zwischen Gruppen */
    }
    
    .edit-toolbar button {
        width: 40px; /* Kleinere Buttons für Mobile */
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        padding: 0.25rem;
        font-size: 0.9rem;
        border: 1px solid #d1d5db;
        background: white;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .edit-toolbar select {
        min-height: 40px;
        font-size: 0.9rem;
        padding: 0.25rem 0.5rem;
        min-width: 80px; /* Mindestbreite für Select-Felder */
        border: 1px solid #d1d5db;
        border-radius: 6px;
        background: white;
        cursor: pointer;
    }
    
    .rich-editor {
        min-height: 300px;
        padding: 1rem;
        font-size: 1rem;
    }
    
    .modal-footer {
        flex-direction: column;
        gap: 0.8rem;
        padding: 1rem 1.2rem;
        background: rgba(42, 42, 42, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0;
        order: -1; /* Footer nach oben verschieben */
    }
    
    .modal-footer .btn {
        width: 100%;
        padding: 0.9rem 1.5rem;
        min-height: 48px;
    }
}

/* Kleine Mobile Geräte (Smartphones) */
@media (max-width: 480px) {
    .modal-content,
    .legal-modal-content {
        width: 98% !important;
        max-width: 98vw !important;
        max-height: calc(100vh - 80px) !important; /* Etwas weniger Abstand für kleine Bildschirme */
        margin: 40px auto 40px auto !important;
        border-radius: 12px;
    }
    
    .modal-header {
        padding: 0.8rem 1rem;
        border-radius: 12px 12px 0 0;
    }
    
    .modal-header h3 {
        font-size: 1.2rem;
    }
    
    .close {
        font-size: 1.6rem;
        min-width: 40px;
        min-height: 40px;
    }
    
    .modal-body,
    .legal-modal-body {
        padding: 1rem;
        max-height: calc(100vh - 240px);
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.7rem;
        font-size: 0.95rem;
        min-height: 44px;
    }
    
    .form-group textarea {
        min-height: 100px;
    }
    
    .star {
        font-size: 2.2rem;
        min-width: 44px;
        min-height: 44px;
    }
    
    .modal-buttons .btn,
    .form-actions .btn,
    .modal-footer .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
        min-height: 44px;
    }
    
    /* Review Item Optimierungen für sehr kleine Bildschirme */
    .review-item {
        padding: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .review-header h4 {
        font-size: 0.9rem;
    }
    
    .review-content {
        font-size: 0.9rem;
        padding-left: 1rem;
    }
    
    .review-card p::before {
        font-size: 1.6rem;
    }
    
    /* Code Item Optimierungen */
    .code-item {
        padding: 1rem;
    }
    
    .code-value {
        font-size: 1rem;
    }
    
    /* YouTube Video Optimierungen */
    .youtube-grid {
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    /* Edit Modal Optimierungen */
    .edit-modal-content {
        width: 98% !important;
        max-width: 98vw !important;
        max-height: calc(100vh - 80px) !important;
        margin: 40px auto 40px auto !important;
    }
    
    .edit-modal-body {
        max-height: calc(100vh - 280px);
        padding: 0.8rem;
    }
    
    .edit-toolbar {
        padding: 0.8rem;
    }
    
    .edit-toolbar button {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
    }
    
    .rich-editor {
        min-height: 250px;
        padding: 0.8rem;
        font-size: 0.95rem;
    }
}

/* Sehr kleine Mobile Geräte (kleine Smartphones) */
@media (max-width: 360px) {
    .modal-content,
    .legal-modal-content {
        width: 99% !important;
        max-width: 99vw !important;
        max-height: calc(100vh - 60px) !important; /* Minimaler Abstand für sehr kleine Bildschirme */
        margin: 30px auto 30px auto !important;
    }
    
    .modal-header {
        padding: 0.7rem 0.8rem;
    }
    
    .modal-header h3 {
        font-size: 1.1rem;
    }
    
    .close {
        font-size: 1.5rem;
        min-width: 36px;
        min-height: 36px;
    }
    
    .modal-body,
    .legal-modal-body {
        padding: 0.8rem;
        max-height: calc(100vh - 200px);
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.6rem;
        font-size: 0.9rem;
        min-height: 40px;
    }
    
    .star {
        font-size: 2rem;
        min-width: 40px;
        min-height: 40px;
    }
    
    .modal-buttons .btn,
    .form-actions .btn,
    .modal-footer .btn {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
        min-height: 40px;
    }
    
    /* Review Card Optimierungen */
    .review-card {
        padding: 1.2rem;
        border-radius: 16px;
    }
    
    .review-header h4 {
        font-size: 0.85rem;
    }
    
    .review-content {
        font-size: 0.85rem;
        padding-left: 0.8rem;
    }
    
    .review-card p::before {
        font-size: 1.4rem;
    }
    
    /* Edit Modal Optimierungen */
    .edit-modal-content {
        width: 99% !important;
        max-width: 99vw !important;
        max-height: calc(100vh - 60px) !important;
        margin: 30px auto 30px auto !important;
    }
    
    .edit-modal-body {
        max-height: calc(100vh - 200px);
        padding-bottom: 3rem;
    }
    
    .rich-editor {
        margin-bottom: 3rem;
    }
}

/* Landscape Mobile Optimierungen */
@media (max-height: 500px) and (orientation: landscape) {
    .modal-content,
    .legal-modal-content {
        max-height: calc(100vh - 60px) !important; /* Weniger Abstand für Landscape */
        margin: 30px auto 30px auto !important;
    }
    
    .modal-header {
        padding: 0.6rem 1rem;
    }
    
    .modal-header h3 {
        font-size: 1.1rem;
    }
    
    .modal-body,
    .legal-modal-body {
        max-height: calc(100vh - 120px);
        padding: 0.8rem 1rem;
        padding-bottom: 2rem;
    }
    
    .edit-modal-body {
        max-height: calc(100vh - 160px);
        padding-bottom: 2rem;
    }
    
    .form-group {
        margin-bottom: 0.8rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.5rem;
        min-height: 36px;
    }
    
    .modal-buttons,
    .form-actions,
    .modal-footer {
        margin-top: 1rem;
        padding-bottom: 1rem;
    }
    
    .modal-buttons .btn,
    .form-actions .btn,
    .modal-footer .btn {
        padding: 0.6rem 1rem;
        min-height: 36px;
    }
}

/* Touch Device Optimierungen */
@media (hover: none) and (pointer: coarse) {
    .modal-content,
    .legal-modal-content {
        -webkit-overflow-scrolling: touch;
    }
    
    .modal-body,
    .legal-modal-body,
    .edit-modal-body {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Größere Touch-Targets für alle interaktiven Elemente */
    .close {
        min-width: 48px;
        min-height: 48px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        min-height: 48px;
    }
    
    .btn {
        min-height: 48px;
    }
    
    /* Touch-freundliche Abstände */
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .modal-buttons,
    .form-actions,
    .modal-footer {
        gap: 1rem;
        margin-top: 2rem;
        padding-bottom: 1.5rem;
    }
}

/* High DPI Display Optimierungen */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .modal-content,
    .legal-modal-content {
        border-width: 0.5px;
    }
    
    .modal-header {
        border-bottom-width: 0.5px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        border-width: 1px;
    }
}

/* Accessibility Verbesserungen für Mobile */
@media (max-width: 768px) {
    /* Fokus-Indikatoren für bessere Sichtbarkeit */
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
        outline: 2px solid #d4af37;
        outline-offset: 2px;
    }
    
    .btn:focus {
        outline: 2px solid #d4af37;
        outline-offset: 2px;
    }
    
    /* Bessere Kontraste für kleine Bildschirme */
    .modal-header h3 {
        font-weight: 700;
    }
    
    .form-group label {
        font-weight: 600;
    }
    
    /* Größere Schrift für bessere Lesbarkeit */
    .character-counter {
        font-size: 1rem;
    }
    
    .review-timestamp {
        font-size: 0.8rem;
    }
    
    .review-customer-code {
        font-size: 0.9rem;
    }
    
    /* Moderne Button-Darstellung */
    .modal-buttons,
    .form-actions,
    .modal-footer,
    .modal-actions {
        background: rgba(42, 42, 42, 0.1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 0;
    }
    
    /* Flexbox-Layout für bessere Anordnung */
    .modal-content,
    .legal-modal-content {
        display: flex;
        flex-direction: column;
    }
    
    /* Zusätzlicher Abstand für den letzten Inhalt */
    .modal-body:last-child,
    .legal-modal-body:last-child,
    .edit-modal-body:last-child {
        margin-bottom: 0;
    }
}

/* ... existing code ... */

/* Legal Modal mit Rich-Text-Editor Mobile-Optimierungen */
@media (max-width: 768px) {
    /* Legal Modal spezifische Mobile-Optimierungen */
    #legalModal .legal-modal-content {
        max-height: calc(100vh - 100px);
        margin: 50px auto 50px auto;
    }
    
    #legalModal .legal-modal-body {
        max-height: calc(100vh - 280px);
        padding: 0; /* Padding entfernen für kompaktere Darstellung */
    }
    
    /* Rich-Text-Editor für Legal Content Mobile-Optimierungen */
    #legalModal .rich-editor,
    #legalModal .legal-content {
        min-height: 250px; /* Kompaktere Höhe für Mobile */
        max-height: calc(100vh - 350px); /* Maximale Höhe begrenzen */
        padding: 1rem;
        font-size: 0.95rem;
        line-height: 1.5;
        border-radius: 8px;
        margin: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Legal Content spezifische Mobile-Styles */
    #legalModalContent {
        padding: 1rem;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    #legalModalContent h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    #legalModalContent h2 {
        font-size: 1.3rem;
        margin: 1.5rem 0 0.8rem 0;
        line-height: 1.3;
    }
    
    #legalModalContent h3 {
        font-size: 1.1rem;
        margin: 1.2rem 0 0.6rem 0;
        line-height: 1.3;
    }
    
    #legalModalContent h4 {
        font-size: 1rem;
        margin: 1rem 0 0.5rem 0;
        line-height: 1.3;
    }
    
    #legalModalContent p {
        margin-bottom: 0.8rem;
        line-height: 1.6;
    }
    
    #legalModalContent ul,
    #legalModalContent ol {
        margin: 0.8rem 0;
        padding-left: 1.5rem;
    }
    
    #legalModalContent li {
        margin-bottom: 0.4rem;
        line-height: 1.5;
    }
    
    #legalModalContent a {
        color: #d4af37;
        text-decoration: none;
        word-break: break-word;
    }
    
    #legalModalContent a:hover {
        text-decoration: underline;
    }
    
    /* Legal Section Mobile-Optimierungen */
    #legalModalContent .legal-section {
        padding: 1rem;
        margin-bottom: 1rem;
        border-radius: 8px;
    }
    
    /* Contact Info Mobile-Optimierungen */
    #legalModalContent .contact-info {
        padding: 1rem;
        margin-top: 1.5rem;
        border-radius: 8px;
        font-size: 0.9rem;
    }
    
    /* Back Button Mobile-Optimierungen */
    #legalModalContent .back-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        margin-bottom: 1rem;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* Kleine Mobile Geräte (Smartphones) */
@media (max-width: 480px) {
    #legalModal .legal-modal-content {
        max-height: calc(100vh - 80px);
        margin: 40px auto 40px auto;
    }
    
    #legalModal .legal-modal-body {
        max-height: calc(100vh - 240px);
    }
    
    /* Rich-Text-Editor noch kompakter */
    #legalModal .rich-editor,
    #legalModal .legal-content {
        min-height: 200px;
        max-height: calc(100vh - 300px);
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    /* Legal Content noch kompakter */
    #legalModalContent {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    #legalModalContent h1 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }
    
    #legalModalContent h2 {
        font-size: 1.2rem;
        margin: 1.3rem 0 0.7rem 0;
    }
    
    #legalModalContent h3 {
        font-size: 1rem;
        margin: 1rem 0 0.5rem 0;
    }
    
    #legalModalContent h4 {
        font-size: 0.95rem;
        margin: 0.8rem 0 0.4rem 0;
    }
    
    #legalModalContent p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }
    
    #legalModalContent ul,
    #legalModalContent ol {
        margin: 0.7rem 0;
        padding-left: 1.2rem;
    }
    
    #legalModalContent li {
        margin-bottom: 0.3rem;
    }
    
    /* Legal Section noch kompakter */
    #legalModalContent .legal-section {
        padding: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    /* Contact Info noch kompakter */
    #legalModalContent .contact-info {
        padding: 0.8rem;
        margin-top: 1.2rem;
        font-size: 0.85rem;
    }
    
    /* Back Button noch kompakter */
    #legalModalContent .back-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
}

/* Sehr kleine Mobile Geräte (kleine Smartphones) */
@media (max-width: 360px) {
    #legalModal .legal-modal-content {
        max-height: calc(100vh - 60px);
        margin: 30px auto 30px auto;
    }
    
    #legalModal .legal-modal-body {
        max-height: calc(100vh - 200px);
    }
    
    /* Rich-Text-Editor maximal kompakt */
    #legalModal .rich-editor,
    #legalModal .legal-content {
        min-height: 180px;
        max-height: calc(100vh - 260px);
        padding: 0.6rem;
        font-size: 0.85rem;
    }
    
    /* Legal Content maximal kompakt */
    #legalModalContent {
        padding: 0.6rem;
        font-size: 0.85rem;
    }
    
    #legalModalContent h1 {
        font-size: 1.3rem;
        margin-bottom: 0.7rem;
    }
    
    #legalModalContent h2 {
        font-size: 1.1rem;
        margin: 1.1rem 0 0.6rem 0;
    }
    
    #legalModalContent h3 {
        font-size: 0.95rem;
        margin: 0.9rem 0 0.4rem 0;
    }
    
    #legalModalContent h4 {
        font-size: 0.9rem;
        margin: 0.7rem 0 0.3rem 0;
    }
    
    #legalModalContent p {
        margin-bottom: 0.6rem;
        line-height: 1.4;
    }
    
    #legalModalContent ul,
    #legalModalContent ol {
        margin: 0.6rem 0;
        padding-left: 1rem;
    }
    
    #legalModalContent li {
        margin-bottom: 0.25rem;
    }
    
    /* Legal Section maximal kompakt */
    #legalModalContent .legal-section {
        padding: 0.6rem;
        margin-bottom: 0.6rem;
    }
    
    /* Contact Info maximal kompakt */
    #legalModalContent .contact-info {
        padding: 0.6rem;
        margin-top: 1rem;
        font-size: 0.8rem;
    }
    
    /* Back Button maximal kompakt */
    #legalModalContent .back-btn {
        padding: 0.4rem 0.7rem;
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }
}

/* Landscape Mobile Optimierungen für Legal Modals */
@media (max-height: 500px) and (orientation: landscape) {
    #legalModal .legal-modal-content {
        max-height: calc(100vh - 60px);
        margin: 30px auto 30px auto;
    }
    
    #legalModal .legal-modal-body {
        max-height: calc(100vh - 160px);
    }
    
    /* Rich-Text-Editor für Landscape */
    #legalModal .rich-editor,
    #legalModal .legal-content {
        min-height: 150px;
        max-height: calc(100vh - 220px);
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    /* Legal Content für Landscape */
    #legalModalContent {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    #legalModalContent h1 {
        font-size: 1.3rem;
        margin-bottom: 0.6rem;
    }
    
    #legalModalContent h2 {
        font-size: 1.1rem;
        margin: 1rem 0 0.5rem 0;
    }
    
    #legalModalContent h3 {
        font-size: 1rem;
        margin: 0.8rem 0 0.4rem 0;
    }
    
    #legalModalContent h4 {
        font-size: 0.95rem;
        margin: 0.6rem 0 0.3rem 0;
    }
    
    #legalModalContent p {
        margin-bottom: 0.5rem;
        line-height: 1.4;
    }
    
    #legalModalContent ul,
    #legalModalContent ol {
        margin: 0.5rem 0;
        padding-left: 1.2rem;
    }
    
    #legalModalContent li {
        margin-bottom: 0.2rem;
    }
    
    /* Legal Section für Landscape */
    #legalModalContent .legal-section {
        padding: 0.6rem;
        margin-bottom: 0.5rem;
    }
    
    /* Contact Info für Landscape */
    #legalModalContent .contact-info {
        padding: 0.6rem;
        margin-top: 0.8rem;
        font-size: 0.8rem;
    }
    
    /* Back Button für Landscape */
    #legalModalContent .back-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
}

/* Touch Device Optimierungen für Legal Modals */
@media (hover: none) and (pointer: coarse) {
    #legalModal .rich-editor,
    #legalModal .legal-content {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Größere Touch-Targets für Links */
    #legalModalContent a {
        padding: 0.2rem 0;
        min-height: 44px;
        display: inline-block;
        line-height: 44px;
    }
    
    /* Touch-freundliche Abstände */
    #legalModalContent h1,
    #legalModalContent h2,
    #legalModalContent h3,
    #legalModalContent h4 {
        margin-top: 1.5rem;
    }
    
    #legalModalContent h1:first-child,
    #legalModalContent h2:first-child,
    #legalModalContent h3:first-child,
    #legalModalContent h4:first-child {
        margin-top: 0;
    }
}

/* Accessibility Verbesserungen für Legal Modals */
@media (max-width: 768px) {
    /* Fokus-Indikatoren für bessere Sichtbarkeit */
    #legalModalContent a:focus {
        outline: 2px solid #d4af37;
        outline-offset: 2px;
        border-radius: 4px;
    }
    
    /* Bessere Kontraste für kleine Bildschirme */
    #legalModalContent h1,
    #legalModalContent h2,
    #legalModalContent h3,
    #legalModalContent h4 {
        font-weight: 700;
        color: #ffffff;
    }
    
    #legalModalContent p {
        color: #f0f0f0;
    }
    
    #legalModalContent li {
        color: #f0f0f0;
    }
    
    /* Größere Schrift für bessere Lesbarkeit */
    #legalModalContent .legal-section {
        font-size: 0.95rem;
    }
    
    /* Optimierte Abstände für bessere Lesbarkeit */
    #legalModalContent .legal-section + .legal-section {
        margin-top: 1.5rem;
    }
    
    /* Responsive Tabellen für Mobile */
    #legalModalContent table {
        font-size: 0.85rem;
        width: 100%;
        overflow-x: auto;
        display: block;
    }
    
    #legalModalContent th,
    #legalModalContent td {
        padding: 0.5rem;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
}

/* ... existing code ... */