/* Reset und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Core Web Vitals – CLS: Reserviere Platz für Bilder ohne Dimensionen */
img:not([width]):not([height]) {
    aspect-ratio: 1 / 1;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 50%, #3d3d3d 100%);
    min-height: 100vh;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    touch-action: pan-y pinch-zoom;
}

/* Simplified background for scroll performance (fewer gradients, less compositing) */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 165, 0, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 45%);
    pointer-events: none;
    z-index: -1;
}

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

/* View-Zustand: Beichte, Feed, Communities sind eigene Bereiche – nur sichtbar in ihrer View */
body.view-home #beichten,
body.view-home #feed,
body.view-home #communities,
body.view-home #community-detail-view {
    display: none !important;
}
body.view-beichten #home,
body.view-beichten #seo-intro,
body.view-beichten #services,
body.view-beichten #chat,
body.view-beichten #shop,
body.view-beichten #profile,
body.view-beichten #feed,
body.view-beichten #communities,
body.view-beichten #community-detail-view {
    display: none !important;
}
body.view-feed #home,
body.view-feed #seo-intro,
body.view-feed #services,
body.view-feed #chat,
body.view-feed #shop,
body.view-feed #profile,
body.view-feed #beichten,
body.view-feed #communities,
body.view-feed #community-detail-view {
    display: none !important;
}
body.view-communities #home,
body.view-communities #seo-intro,
body.view-communities #services,
body.view-communities #chat,
body.view-communities #shop,
body.view-communities #profile,
body.view-communities #beichten,
body.view-communities #feed {
    display: none !important;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(45, 45, 45, 0.98);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid rgba(255, 165, 0, 0.3);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffa500;
    text-shadow: 0 0 10px rgba(255, 165, 0, 0.5);
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-logo i {
    font-size: 2rem;
    background: linear-gradient(45deg, #ffa500, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: neonPulse 2s infinite;
    filter: drop-shadow(0 0 5px rgba(255, 165, 0, 0.8));
}

@keyframes neonPulse {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(255, 165, 0, 0.8));
    }
    50% { 
        transform: scale(1.1);
        filter: drop-shadow(0 0 15px rgba(255, 165, 0, 1));
    }
}

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

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 20px;
    border: 2px solid transparent;
}

.nav-link:hover {
    color: #ffa500;
    border-color: rgba(255, 165, 0, 0.5);
    box-shadow: 
        0 0 15px rgba(255, 165, 0, 0.3),
        inset 0 0 15px rgba(255, 165, 0, 0.1);
    transform: translateY(-2px);
}

/* Gruppen-Hub Dropdown */
.nav-dropdown-wrap {
    position: relative;
    display: inline-block;
}

.nav-link.nav-link-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: none;
    border: 2px solid transparent;
    font-family: inherit;
    font-weight: 500;
    font-size: inherit;
    color: #ffffff;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-link.nav-link-trigger:hover {
    color: #ffa500;
    border-color: rgba(255, 165, 0, 0.5);
    box-shadow: 0 0 15px rgba(255, 165, 0, 0.3), inset 0 0 15px rgba(255, 165, 0, 0.1);
    transform: translateY(-2px);
}

.nav-dropdown-wrap.open .nav-link-trigger {
    color: #ffa500;
    border-color: rgba(255, 165, 0, 0.5);
}

.nav-dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.25s ease;
}

.nav-dropdown-wrap.open .nav-dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 6px;
    min-width: 180px;
    padding: 6px 0;
    background: rgba(20, 20, 25, 0.98);
    border: 2px solid rgba(255, 165, 0, 0.4);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 165, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 1000;
    list-style: none;
}

.nav-dropdown-wrap.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-link {
    display: block;
    padding: 10px 16px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.nav-dropdown-link:hover {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
}

.nav-dropdown-link:first-child {
    border-radius: 8px 8px 0 0;
}

.nav-dropdown-link:last-child {
    border-radius: 0 0 8px 8px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.coin-display {
    display: flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(45deg, #ffa500, #ff8c00);
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 600;
    color: #000;
    box-shadow: 
        0 4px 15px rgba(255, 165, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 165, 0, 0.8);
}

/* Verstecke Coin-Display wenn nicht eingeloggt */
.coin-display[style*="display: none"] {
    display: none !important;
}

.coin-display i {
    color: #000;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

/* User Dropdown */
.user-dropdown {
    position: relative;
    display: inline-block;
}

.user-profile-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    padding: 8px 16px !important;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.2), rgba(255, 140, 0, 0.15)) !important;
    border: 2px solid rgba(255, 165, 0, 0.5) !important;
    border-radius: 25px !important;
    color: #ffffff !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    backdrop-filter: blur(12px) !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 500 !important;
    position: relative !important;
    overflow: hidden !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: rgba(255, 165, 0, 0.3) !important;
    user-select: none !important;
    min-height: 44px !important;
    min-width: 44px !important;
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.3), 0 0 15px rgba(255, 165, 0, 0.2) !important;
    z-index: 1000 !important;
}

.user-profile-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 165, 0, 0.2), transparent);
    transition: left 0.5s ease;
}

.user-profile-btn:hover::before {
    left: 100%;
}

.user-profile-btn:hover {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.3), rgba(255, 140, 0, 0.25)) !important;
    border-color: rgba(255, 165, 0, 0.8) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.4), 0 0 25px rgba(255, 165, 0, 0.3) !important;
}

.user-profile-btn:active {
    transform: translateY(0) scale(0.98);
    transition: transform 0.1s ease;
}

.user-profile-btn.active {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.35), rgba(255, 140, 0, 0.3)) !important;
    border-color: rgba(255, 165, 0, 0.9) !important;
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.5), 0 0 30px rgba(255, 165, 0, 0.4) !important;
}

.user-avatar {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #ffa500, #ff8c00) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #000 !important;
    font-size: 0.9rem !important;
    box-shadow: 0 0 12px rgba(255, 165, 0, 0.7), inset 0 1px 2px rgba(255, 255, 255, 0.3) !important;
    flex-shrink: 0 !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.user-profile-btn:hover .user-avatar {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 165, 0, 0.8), inset 0 1px 2px rgba(255, 255, 255, 0.4);
}

.user-profile-btn.active .user-avatar {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 165, 0, 1), inset 0 1px 2px rgba(255, 255, 255, 0.5);
}

.user-name {
    font-weight: 600;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.user-profile-btn:hover .user-name {
    color: #ffa500;
}

.dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
}

.user-profile-btn:hover .dropdown-arrow {
    color: #ffa500;
}

.user-profile-btn.active .dropdown-arrow {
    transform: rotate(180deg);
    color: #ffa500;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(45, 45, 45, 0.95);
    border-radius: 15px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 165, 0, 0.3);
    min-width: 250px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 165, 0, 0.2);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar-large {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ffa500, #ff8c00);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.2rem;
    box-shadow: 0 0 15px rgba(255, 165, 0, 0.5);
}

.user-details {
    flex: 1;
}

.user-name-large {
    font-weight: 600;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.user-status {
    font-size: 0.8rem;
    color: #4caf50;
    font-weight: 500;
}

.dropdown-divider {
    height: 2px !important;
    background: linear-gradient(90deg, transparent, rgba(255, 165, 0, 0.3), transparent) !important;
    margin: 0.75rem 0 !important;
    border: none !important;
}

/* Mobile Styles für Dropdown Items */
@media (max-width: 768px) {
    .dropdown-item {
        padding: 1rem !important;
        min-height: 52px !important;
        font-size: 1rem !important;
        border-radius: 14px !important;
    }
    
    .dropdown-item i {
        font-size: 1.2rem !important;
        width: 24px !important;
    }
}

@media (max-width: 480px) {
    .dropdown-item {
        padding: 1.125rem 0.875rem !important;
        min-height: 56px !important;
        font-size: 1.05rem !important;
        border-radius: 16px !important;
    }
    
    .dropdown-item i {
        font-size: 1.3rem !important;
        width: 26px !important;
    }
    
    .dropdown-divider {
        margin: 0.5rem 0 !important;
    }
}

.dropdown-item {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    padding: 0.875rem 1rem !important;
    min-height: 48px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 2px solid rgba(255, 165, 0, 0.2) !important;
    border-radius: 12px !important;
    color: #ffffff !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    text-align: left !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: rgba(255, 165, 0, 0.3) !important;
    user-select: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
    position: relative !important;
    overflow: hidden !important;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 165, 0, 0.15), transparent);
    transition: left 0.5s ease;
}

.dropdown-item:hover::before {
    left: 100%;
}

.dropdown-item:hover {
    background: rgba(255, 165, 0, 0.15) !important;
    border-color: rgba(255, 165, 0, 0.5) !important;
    color: #ffa500 !important;
    transform: translateX(4px) !important;
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.3) !important;
}

.dropdown-item:active {
    transform: translateX(2px) scale(0.98) !important;
    transition: transform 0.1s ease !important;
}

.dropdown-item i {
    width: 20px !important;
    text-align: center !important;
    font-size: 1.1rem !important;
    color: rgba(255, 165, 0, 0.8) !important;
    transition: transform 0.3s ease, color 0.3s ease !important;
    flex-shrink: 0 !important;
}

.dropdown-item:hover i {
    color: #ffa500 !important;
    transform: scale(1.1) !important;
}

.dropdown-item span {
    font-weight: 500 !important;
    letter-spacing: 0.2px !important;
    flex: 1 !important;
}

.logout-btn {
    color: #ffffff !important;
    background: linear-gradient(135deg, rgba(255, 77, 77, 0.3), rgba(255, 60, 60, 0.25)) !important;
    border: 3px solid rgba(255, 77, 77, 0.8) !important;
    border-radius: 14px !important;
    min-height: 56px !important;
    padding: 1rem 1.25rem !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    box-shadow: 
        0 6px 20px rgba(255, 77, 77, 0.5),
        0 0 30px rgba(255, 77, 77, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.2) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.75rem !important;
}

.logout-btn:hover {
    background: linear-gradient(135deg, rgba(255, 77, 77, 0.45), rgba(255, 60, 60, 0.35)) !important;
    border-color: rgba(255, 77, 77, 1) !important;
    color: #ffffff !important;
    box-shadow: 
        0 8px 25px rgba(255, 77, 77, 0.7),
        0 0 40px rgba(255, 77, 77, 0.5),
        inset 0 1px 2px rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-3px) !important;
}

.logout-btn:active {
    background: linear-gradient(135deg, rgba(255, 77, 77, 0.5), rgba(255, 60, 60, 0.4)) !important;
    transform: translateY(-1px) scale(0.98) !important;
}

.logout-btn i {
    color: #ff4d4d !important;
    font-size: 1.3rem !important;
    filter: drop-shadow(0 2px 6px rgba(255, 77, 77, 0.8)) !important;
    text-shadow: 0 0 10px rgba(255, 77, 77, 0.8) !important;
}

.logout-btn span {
    color: #ffffff !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5) !important;
}

/* Mobile Verbesserungen für Logout-Button */
@media (max-width: 768px) {
    .logout-btn {
        min-height: 60px !important;
        padding: 1.25rem 1.5rem !important;
        font-size: 1.1rem !important;
        border-width: 3px !important;
        border-radius: 16px !important;
        gap: 1rem !important;
    }
    
    .logout-btn i {
        font-size: 1.5rem !important;
    }
    
    .logout-btn span {
        font-size: 1.1rem !important;
        font-weight: 800 !important;
    }
}

@media (max-width: 480px) {
    .logout-btn {
        min-height: 64px !important;
        padding: 1.5rem 1.25rem !important;
        font-size: 1.15rem !important;
        border-width: 4px !important;
        border-radius: 18px !important;
        gap: 1.25rem !important;
    }
    
    .logout-btn i {
        font-size: 1.6rem !important;
    }
    
    .logout-btn span {
        font-size: 1.15rem !important;
    }
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(255, 165, 0, 0.3);
    min-height: 44px;
    min-width: 44px;
}

.btn-primary {
    background: linear-gradient(45deg, #ffa500, #ff8c00);
    color: #000;
    box-shadow: 
        0 8px 25px rgba(255, 165, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 165, 0, 0.8);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 35px rgba(255, 165, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    filter: brightness(1.1);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 165, 0, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.2);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Inline Favoriten-Ansicht im Profil */
.favorites-inline {
    margin-top: 16px;
    border: 1px solid rgba(255, 184, 0, 0.25);
    border-radius: 12px;
    padding: 16px;
    background: rgba(255, 184, 0, 0.06);
}
.favorites-inline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.favorites-inline-actions {
    display: flex;
    gap: 8px;
}
#favorites-search {
    background: #1f1f1f;
    border: 1px solid #333;
    color: #eee;
    padding: 10px 12px;
    border-radius: 8px;
    min-width: 200px;
}
.favorites-inline-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 12px;
    margin-top: 14px;
}
.favorite-item-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.favorite-item-inline:hover {
    background: #222;
    border-color: rgba(255, 165, 0, 0.3);
    transform: translateY(-1px);
}

.favorite-item-inline .favorite-content {
    display: flex;
    gap: 12px;
    align-items: center;
    flex: 1;
}

.favorite-item-inline .favorite-avatar, .favorite-item-inline .favorite-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background: linear-gradient(135deg, #ffa500, #ff8c00);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.2rem;
    font-weight: bold;
}

.favorite-item-inline .favorite-info {
    flex: 1;
}

.favorite-item-inline .favorite-info h4 {
    margin: 0 0 4px 0;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
}

.favorite-item-inline .favorite-category {
    margin: 0 0 4px 0;
    font-size: 12px;
    font-weight: 500;
}

.favorite-item-inline .favorite-details {
    margin: 0 0 2px 0;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

.favorite-item-inline .favorite-location {
    margin: 0;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.favorite-item-inline .favorite-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Desktop: Bessere vertikale Zentrierung */
@media (min-width: 769px) {
    .hero {
        padding: 0;
        min-height: calc(100vh - 80px);
        margin-top: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    
    .hero-content {
        width: 100%;
        max-width: 1600px;
        margin: 0 auto;
        padding: 60px 60px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
        align-items: center;
        justify-items: stretch;
    }
    
    .hero-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }
    
    .hero-visual {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        padding: 1.5rem;
        height: auto;
        max-height: none;
        overflow: visible;
    }
}

/* Große Desktop-Bildschirme: Noch mehr Platz */
@media (min-width: 1400px) {
    .hero-content {
        max-width: 1800px;
        padding: 80px 80px;
        gap: 8rem;
    }
    
    .hero-visual {
        gap: 2rem;
        padding: 2rem;
    }
}

.hero-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(255, 165, 0, 0.5);
}

/* Desktop: Größerer Titel für bessere Lesbarkeit */
@media (min-width: 769px) {
    .hero-title {
        font-size: 4rem;
        margin-bottom: 2rem;
    }
}

@media (min-width: 1400px) {
    .hero-title {
        font-size: 4.5rem;
        margin-bottom: 2.5rem;
    }
}

.gradient-text {
    background: linear-gradient(45deg, #ffa500, #ffffff, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Chat Customization Animations */
@keyframes rainbowShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes goldenShine {
    0%, 100% { 
        background-position: 0% 50%;
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
    }
    50% { 
        background-position: 100% 50%;
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 1));
    }
}
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Desktop: Größere Beschreibung */
@media (min-width: 769px) {
    .hero-description {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
}

@media (min-width: 1400px) {
    .hero-description {
        font-size: 1.3rem;
        margin-bottom: 2.5rem;
    }
}

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

/* Desktop: Mehr Abstand zwischen Buttons */
@media (min-width: 769px) {
    .hero-buttons {
        gap: 1.5rem;
        margin-top: 1rem;
    }
}

@media (min-width: 1400px) {
    .hero-buttons {
        gap: 2rem;
    }
}

.hero-free-note {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(50, 205, 50, 0.1);
    border: 1px solid rgba(50, 205, 50, 0.3);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: pulse-glow 2s ease-in-out infinite;
}

.hero-free-note strong {
    color: #32cd32;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(50, 205, 50, 0.5);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(50, 205, 50, 0.2);
    }
    50% {
        box-shadow: 0 0 15px rgba(50, 205, 50, 0.4);
    }
}

/* Hero Features - Neues kompaktes Grid-Design */
.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 0;
}

/* Desktop: Mehr Abstand zwischen Feature-Cards */
@media (min-width: 769px) {
    .hero-features-grid {
        gap: 1rem;
        margin-bottom: 2rem;
    }
}

@media (min-width: 1400px) {
    .hero-features-grid {
        gap: 1.25rem;
    }
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 0.75rem;
    background: rgba(45, 45, 45, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 165, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    background: rgba(45, 45, 45, 0.85);
    border-color: rgba(255, 165, 0, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.25);
}

.feature-icon-wrapper {
    position: relative;
    margin-bottom: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.feature-card i {
    font-size: 2rem;
    color: #ffa500;
    filter: drop-shadow(0 0 8px rgba(255, 165, 0, 0.6));
    transition: all 0.3s ease;
}

.feature-card:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px rgba(255, 165, 0, 0.8));
}

.free-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: linear-gradient(135deg, #32cd32, #228b22);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(50, 205, 50, 0.4);
    animation: pulse-glow 2s ease-in-out infinite;
}

.feature-card-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.feature-card-content h3 {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.feature-card-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0;
}

/* Desktop: Größere Feature Cards */
@media (min-width: 769px) {
    .feature-card {
        padding: 1.25rem 1rem;
    }
    
    .feature-card i {
        font-size: 2.25rem;
    }
    
    .feature-card-content h3 {
        font-size: 1rem;
    }
    
    .free-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
}

@media (min-width: 1400px) {
    .feature-card {
        padding: 1.5rem 1.25rem;
    }
    
    .feature-card i {
        font-size: 2.5rem;
    }
    
    .feature-card-content h3 {
        font-size: 1.1rem;
    }
    
    .free-badge {
        font-size: 0.75rem;
        padding: 0.35rem 0.7rem;
    }
}

/* Free Feature Highlight */
.feature-card.feature-free-highlight {
    background: rgba(34, 139, 34, 0.15);
    border: 2px solid rgba(50, 205, 50, 0.4);
    position: relative;
}

.feature-card.feature-free-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(50, 205, 50, 0.15), transparent);
    animation: shine 3s infinite;
}

.feature-card.feature-free-highlight:hover {
    background: rgba(34, 139, 34, 0.25);
    border-color: rgba(50, 205, 50, 0.6);
    box-shadow: 0 8px 20px rgba(50, 205, 50, 0.3);
}

.feature-card.feature-free-highlight i {
    color: #32cd32;
    filter: drop-shadow(0 0 8px rgba(50, 205, 50, 0.8));
}

.feature-card.feature-free-highlight .feature-card-content h3 {
    color: #32cd32;
    text-shadow: 0 0 8px rgba(50, 205, 50, 0.3);
}

/* Responsive Design für Feature Grid */
@media (max-width: 968px) {
    .hero-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.875rem;
    }
    
    .feature-card {
        padding: 1rem 0.875rem;
    }
    
    .feature-card i {
        font-size: 1.75rem;
    }
    
    .feature-card-content h3 {
        font-size: 0.9rem;
    }
    
    .feature-card-content p {
        font-size: 0.75rem;
    }
}

@media (max-width: 640px) {
    .hero-features-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .feature-card {
        padding: 1rem;
        flex-direction: row;
        text-align: left;
    }
    
    .feature-icon-wrapper {
        margin-bottom: 0;
        margin-right: 1rem;
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .feature-card i {
        font-size: 1.5rem;
    }
    
    .feature-card-content {
        flex: 1;
    }
}

/* Legacy Support - Alte hero-features Klasse */
.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem 0;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(45, 45, 45, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 165, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-badge:hover {
    background: rgba(45, 45, 45, 0.8);
    border-color: rgba(255, 165, 0, 0.5);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.2);
}

.feature-badge i {
    font-size: 1.5rem;
    color: #ffa500;
    min-width: 24px;
    text-align: center;
    filter: drop-shadow(0 0 8px rgba(255, 165, 0, 0.6));
}

.feature-badge-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.feature-badge-content strong {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    display: block;
}

.feature-badge-content span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Free Feature Badge - Hervorhebung für kostenlose Features */
.feature-badge.feature-free {
    background: rgba(34, 139, 34, 0.15);
    border: 2px solid rgba(50, 205, 50, 0.4);
    position: relative;
    overflow: hidden;
}

.feature-badge.feature-free::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(50, 205, 50, 0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.feature-badge.feature-free:hover {
    background: rgba(34, 139, 34, 0.25);
    border-color: rgba(50, 205, 50, 0.6);
    box-shadow: 0 5px 15px rgba(50, 205, 50, 0.3);
}

.feature-badge.feature-free i {
    color: #32cd32;
    filter: drop-shadow(0 0 8px rgba(50, 205, 50, 0.8));
}

.feature-badge.feature-free .feature-badge-content strong {
    color: #32cd32;
    text-shadow: 0 0 10px rgba(50, 205, 50, 0.5);
}

/* Floating Cards - Grid Layout ohne Scroll */
.hero-visual {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1rem;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: auto;
    overflow: visible;
    justify-items: center;
    align-items: center;
}

.floating-card {
    position: relative;
    background: rgba(45, 45, 45, 0.9);
    backdrop-filter: blur(20px);
    padding: 1rem 0.75rem;
    border-radius: 15px;
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #ffffff;
    animation: float3D 6s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 165, 0, 0.3);
    width: 100%;
    max-width: 140px;
    height: 100px;
    font-size: 0.85rem;
    text-align: center;
}

/* Desktop: Größere Floating Cards */
@media (min-width: 769px) {
    .floating-card {
        max-width: 160px;
        height: 110px;
        padding: 1.25rem 1rem;
        font-size: 0.9rem;
    }
    
    .floating-card i {
        font-size: 1.75rem;
    }
    
    .floating-card span {
        font-size: 0.9rem;
    }
}

@media (min-width: 1400px) {
    .floating-card {
        max-width: 180px;
        height: 120px;
        padding: 1.5rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .floating-card i {
        font-size: 2rem;
    }
    
    .floating-card span {
        font-size: 0.95rem;
    }
}

.floating-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 165, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 165, 0, 0.6);
}

.floating-card:active {
    transform: translateY(-2px) scale(1.02);
}

.floating-card i {
    font-size: 1.5rem;
    background: linear-gradient(45deg, #ffa500, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(255, 165, 0, 0.8));
}

.floating-card span {
    font-size: 0.85rem;
    line-height: 1.2;
    word-break: break-word;
}

/* Animation Delays für visuellen Effekt */
.card-1 {
    animation-delay: 0s;
}

.card-2 {
    animation-delay: 0.5s;
}

.card-3 {
    animation-delay: 1s;
}

.card-4 {
    animation-delay: 1.5s;
}

.card-5 {
    animation-delay: 2s;
}

.card-6 {
    animation-delay: 2.5s;
}

.card-7 {
    animation-delay: 3s;
}

.card-8 {
    animation-delay: 3.5s;
}

.card-9 {
    animation-delay: 4s;
}

@keyframes float3D {
    0%, 100% { 
        transform: translateY(0px);
    }
    50% { 
        transform: translateY(-8px);
    }
}

/* Services Section */
.services {
    padding: 40px 0;
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(20px);
    border-top: 2px solid rgba(255, 165, 0, 0.3);
    border-bottom: 2px solid rgba(255, 165, 0, 0.3);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 165, 0, 0.5);
}

.service-filters {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 20px;
    border: 2px solid rgba(255, 165, 0, 0.3);
    border-radius: 25px;
    background: rgba(45, 45, 45, 0.8);
    color: #ffffff;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.filter-btn i {
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.filter-btn span {
    font-size: 0.9rem;
    font-weight: 600;
}

.filter-btn:hover, .filter-btn.active {
    background: linear-gradient(45deg, #ffa500, #ff8c00);
    color: #000;
    border-color: rgba(255, 165, 0, 0.8);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(255, 165, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.filter-btn:hover i, .filter-btn.active i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3));
}

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

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

/* Vereinfachte Kategorien */
.service-filters-compact {
    margin-bottom: 0.5rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 600;
    color: #ffffff;
    font-size: 1.1rem;
}

.category-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    max-width: 800px;
}

.category-chip {
    padding: 10px 18px;
    border: 2px solid rgba(255, 165, 0, 0.4);
    border-radius: 20px;
    background: rgba(45, 45, 45, 0.9);
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 0.95rem;
    min-height: 48px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(255, 165, 0, 0.5);
    user-select: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.category-chip:hover, .category-chip.active {
    background: linear-gradient(45deg, #ffa500, #ff8c00);
    color: #000;
    border-color: rgba(255, 165, 0, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
}

/* PLZ und Entfernungssuche */
.location-search {
    background: rgba(45, 45, 45, 0.6);
    border-radius: 15px;
    padding: 1rem;
    margin-bottom: 0.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 165, 0, 0.2);
}

.location-input-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.location-input-group label {
    font-weight: 600;
    color: #ffffff;
    font-size: 1rem;
}

.location-input-group input {
    padding: 10px 15px;
    border: 2px solid rgba(255, 165, 0, 0.3);
    border-radius: 10px;
    background: rgba(30, 30, 30, 0.8);
    color: #ffffff;
    font-size: 1rem;
    width: 120px;
    text-align: center;
}

.location-input-group input:focus {
    outline: none;
    border-color: #ffa500;
    box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.2);
}

.location-input-group button {
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(45deg, #ffa500, #ff8c00);
    color: #000;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-input-group button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
}

.distance-filters {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.distance-filters label {
    font-weight: 600;
    color: #ffffff;
    font-size: 1rem;
}

.distance-chips {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.distance-chip {
    padding: 10px 16px;
    border: 2px solid rgba(79, 172, 254, 0.4);
    border-radius: 15px;
    background: rgba(45, 45, 45, 0.9);
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
    min-height: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(79, 172, 254, 0.5);
    user-select: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.distance-chip:hover, .distance-chip.active {
    background: linear-gradient(45deg, #4facfe, #00f2fe);
    color: #000;
    border-color: rgba(79, 172, 254, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.4);
}

.location-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 165, 0, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 165, 0, 0.3);
}

.location-info i {
    color: #ffa500;
    font-size: 1.2rem;
}

.location-info span {
    color: #ffffff;
    font-weight: 500;
}

.location-info button {
    padding: 6px 12px;
    border: 1px solid rgba(255, 165, 0, 0.5);
    border-radius: 8px;
    background: rgba(255, 165, 0, 0.1);
    color: #ffa500;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.location-info button:hover {
    background: rgba(255, 165, 0, 0.2);
    transform: translateY(-1px);
}

/* Kompakte Sortierung */
.sorting-controls-compact {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.sorting-controls-compact .sort-options {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(45, 45, 45, 0.6);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 165, 0, 0.2);
}

.sorting-controls-compact label {
    color: #ffffff;
    font-weight: 500;
    margin: 0;
    font-size: 0.95rem;
}

.sorting-controls-compact .sort-select {
    padding: 8px 12px;
    border: 2px solid rgba(255, 165, 0, 0.3);
    border-radius: 10px;
    background: rgba(30, 30, 30, 0.8);
    color: #ffffff;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.sorting-controls-compact .sort-select:focus {
    outline: none;
    border-color: #ffa500;
    box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.2);
}

.sorting-controls-compact .sort-select option {
    background: rgba(30, 30, 30, 0.95);
    color: #ffffff;
}

/* Gender Filters */
.gender-filters {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.gender-filter-btn {
    padding: 12px 22px;
    border: 2px solid rgba(255, 165, 0, 0.4);
    border-radius: 20px;
    background: rgba(45, 45, 45, 0.9);
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 0.95rem;
    min-height: 48px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(79, 172, 254, 0.5);
    user-select: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.gender-filter-btn:hover, .gender-filter-btn.active {
    background: linear-gradient(45deg, #4facfe, #00f2fe);
    color: #000;
    border-color: rgba(79, 172, 254, 0.8);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(79, 172, 254, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Sorting Controls */
.sorting-controls {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(45, 45, 45, 0.8);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 165, 0, 0.3);
    backdrop-filter: blur(10px);
}

.sort-options label {
    color: #ffffff;
    font-weight: 500;
    margin: 0;
}

.sort-select {
    padding: 12px 16px;
    border: 2px solid rgba(255, 165, 0, 0.4);
    border-radius: 10px;
    background: rgba(30, 30, 30, 0.9);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 48px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(255, 165, 0, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.sort-select:focus {
    outline: none;
    border-color: #ffa500;
    box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.2);
}

.sort-select option {
    background: rgba(30, 30, 30, 0.95);
    color: #ffffff;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: auto; /* Auto für flexible Höhe */
    gap: 1rem; /* Reduzierter Abstand */
    margin-bottom: 0.5rem; /* Reduzierter Abstand */
    min-height: auto;
    max-height: none; /* Entferne Höhenbegrenzung */
    padding-bottom: 0.5rem; /* Weniger Padding unten */
}

/* Responsive Grid für verschiedene Bildschirmgrößen */
@media (max-width: 1400px) {
    .service-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.75rem;
    }
}

@media (max-width: 1200px) {
    .service-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
}

@media (max-width: 900px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto; /* Auto für flexible Höhe */
        max-height: none; /* Entferne Höhenbegrenzung */
        gap: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .service-card {
        height: auto; /* Auto für flexible Höhe */
        min-height: 400px; /* Mindesthöhe */
        max-height: none; /* Keine Maximalhöhe */
        padding-bottom: 1.5rem; /* Extra Padding für Action-Buttons */
        overflow: visible; /* Sichtbar machen */
    }
    
    #service-grid .service-card {
        min-height: 450px; /* Größere Mindesthöhe für alle Inhalte */
        padding-bottom: 2rem; /* Mehr Platz für Action-Buttons */
    }
    
    .service-card-content-new {
        padding-bottom: 1rem; /* Extra Abstand vor Actions */
    }
    
    .service-card-actions-new {
        margin-top: 1rem;
        padding-bottom: 0.5rem; /* Extra Padding unten */
        position: relative;
        z-index: 20;
    }
    
    .service-card-actions-compact {
        margin-top: 1rem;
        padding-bottom: 1rem; /* Extra Padding unten */
        position: relative;
        z-index: 100;
        pointer-events: auto;
    }
}

/* Pagination */
.pagination-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin: 0.5rem 0;
    padding: 0.75rem;
    background: rgba(30, 30, 30, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(255, 165, 0, 0.2);
}

.pagination-info {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 16px;
    border: 2px solid rgba(255, 165, 0, 0.3);
    border-radius: 20px;
    background: rgba(45, 45, 45, 0.8);
    color: #ffffff;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
    min-height: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(255, 165, 0, 0.3);
    user-select: none;
}

.pagination-btn:hover:not(:disabled) {
    background: linear-gradient(45deg, #ffa500, #ff8c00);
    color: #000;
    border-color: rgba(255, 165, 0, 0.8);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(255, 165, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: rgba(45, 45, 45, 0.4);
}

.page-numbers {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.page-number {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 165, 0, 0.3);
    border-radius: 50%;
    background: rgba(45, 45, 45, 0.8);
    color: #ffffff;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    /* Verhindere Scrollen beim Fokus */
    scroll-margin: 0;
    scroll-margin-block: 0;
    scroll-margin-inline: 0;
}

.page-number:focus {
    outline: none;
    /* Verhindere Scrollen beim Fokus */
    scroll-margin: 0;
}

.page-number:hover {
    background: linear-gradient(45deg, #ffa500, #ff8c00);
    color: #000;
    border-color: rgba(255, 165, 0, 0.8);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 165, 0, 0.5);
}

.page-number.active {
    background: linear-gradient(45deg, #ffa500, #ff8c00);
    color: #000;
    border-color: rgba(255, 165, 0, 0.8);
    box-shadow: 
        0 0 15px rgba(255, 165, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.page-number.ellipsis {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: default;
    transform: none;
}

.page-number.ellipsis:hover {
    background: transparent;
    transform: none;
    box-shadow: none;
}

.service-card {
    background: rgba(45, 45, 45, 0.9);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 165, 0, 0.2);
    height: 400px; /* Höher für alle Elemente */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 165, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 165, 0, 0.5);
}

/* Streifen oben entfernt - kein ::before Element mehr */

.service-card.pushed {
    border-color: rgba(255, 215, 0, 0.8);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.push-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    padding: 3px 6px;
    border-radius: 10px;
    font-size: 0.55rem;
    font-weight: 700;
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
    z-index: 15;
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 45px;
    text-align: center;
    line-height: 1.0;
    min-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.push-badge i {
    margin-right: 3px;
}

.push-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.7);
    transition: all 0.3s ease;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    position: relative;
    min-height: 35px; /* Kompaktere Mindesthöhe */
    padding-right: 5px; /* Etwas Padding für bessere Abstände */
}

.service-username {
    font-weight: 600;
    font-size: 1.05rem;
    color: #ffffff;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.service-category {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #000;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
    z-index: 5;
}

/* Kategorie-Anpassung nur wenn Push-Badge vorhanden ist */
.service-card.has-push-badge .service-category {
    max-width: 100px;
    margin-right: 50px;
    font-size: 0.75rem;
    padding: 3px 10px;
    border-radius: 12px;
    font-weight: 600;
}

/* Kategorie-Anpassung für mehrere Kategorien */
.service-card.multiple-categories .service-category {
    max-width: 80px;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
}

.service-category.livecam { background: linear-gradient(45deg, #ff6b9d, #e91e63); }
.service-category.videos { background: linear-gradient(45deg, #4ecdc4, #44a08d); }
.service-category.pictures { background: linear-gradient(45deg, #f093fb, #f5576c); }
.service-category.chat { background: linear-gradient(45deg, #4facfe, #00f2fe); }
.service-category.lingerie { background: linear-gradient(45deg, #43e97b, #38f9d7); }
.service-category.escort { background: linear-gradient(45deg, #e91e63, #f06292); }
.service-category.callboy { background: linear-gradient(45deg, #2196f3, #64b5f6); }

.service-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.service-description {
    color: #ffffff;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    max-height: none; /* Entfernt Höhenbegrenzung */
    overflow: visible; /* Zeigt den ganzen Text */
    text-overflow: unset; /* Entfernt Ellipsis */
    display: block; /* Normale Anzeige */
    word-wrap: break-word; /* Zeilenumbruch bei langen Wörtern */
}

.service-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 0.5rem;
    margin-bottom: 1rem;
    min-height: 60px; /* Mindesthöhe für Images */
}

.service-image {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 165, 0, 0.2);
    min-height: 80px; /* Feste Mindesthöhe */
}

.service-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: auto; /* Buttons nach unten drücken */
    padding-top: 1rem; /* Mehr Abstand nach oben */
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
    border-radius: 15px;
}

/* Neue Profile Card Styles - exakt wie in den Referenzbildern */
#service-grid .service-card {
    border: 2px solid transparent;
    transition: all 0.3s ease;
    overflow: visible; /* Sichtbar für Action-Buttons */
    position: relative;
    background: rgba(30, 30, 30, 0.95);
    border-radius: 20px;
    padding: 1rem;
    padding-bottom: 1.5rem; /* Extra Padding für Action-Buttons */
    height: auto;
    min-height: 420px;
    max-height: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

/* Leuchtende Border für Push-Profile (gelb/orange) */
.service-card.pushed {
    border-color: #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.service-card-header-new {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    position: relative;
    padding: 0;
    flex-shrink: 0;
}

.service-card-badges {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.service-card-username-new {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    flex: 1;
    line-height: 1.2;
}

.service-category-new {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    flex-shrink: 0;
}

.service-category-new.livecam {
    background: linear-gradient(45deg, #ff6b9d, #e91e63);
}

.service-category-new.videos {
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
}

.service-category-new.pictures {
    background: linear-gradient(45deg, #f093fb, #f5576c);
}

.service-category-new.chat {
    background: linear-gradient(45deg, #4facfe, #00f2fe);
}

.service-category-new.lingerie {
    background: linear-gradient(45deg, #43e97b, #38f9d7);
}

.service-category-new.treffen {
    background: linear-gradient(45deg, #fa709a, #fee140);
}

.push-badge-card {
    position: relative;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #ff8c00;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.push-badge-card i {
    font-size: 0.7rem;
    color: #ff8c00;
}

.push-badge-card .push-countdown-text {
    color: #ff8c00;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.service-card-content-new {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 0;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.service-profile-info-new {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-bottom: 0.4rem;
    padding: 0;
}

.service-profile-info-new p {
    margin: 0.15rem 0;
    padding: 0;
}

.service-date-new {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.service-card-description-new {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    margin: 0.4rem 0 0.5rem 0;
    padding: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 2.8rem;
}

.service-card-image-new {
    width: 100%;
    height: 180px;
    min-height: 180px;
    max-height: 180px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.75rem 0;
    position: relative;
    isolation: isolate;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.service-card-image-new img,
.profile-card-img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    display: block !important;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
    user-select: none;
}

.profile-card-img.loaded {
    opacity: 1 !important;
}

/* Compact Version - Profilbild */
.service-card-image-compact-wrapper {
    width: 100%;
    margin-bottom: 1rem;
}

.service-card-image-compact-frame {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.service-card-image-compact {
    width: 100%;
    height: 250px;
    min-height: 250px;
    max-height: 250px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.profile-card-img-compact {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
    display: block !important;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    opacity: 1;
    transition: opacity 0.3s ease;
    border-radius: 8px;
    pointer-events: none;
    user-select: none;
}

.profile-card-img-compact.loaded {
    opacity: 1 !important;
}

.service-image-placeholder-compact {
    width: 100%;
    height: 100%;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(60, 60, 60, 0.5);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 3rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.profile-card-img-compact {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
    display: block !important;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    opacity: 1;
    transition: opacity 0.3s ease;
    border-radius: 8px;
    pointer-events: none;
    user-select: none;
}

.profile-card-img-compact.loaded {
    opacity: 1 !important;
}

.service-image-placeholder-compact {
    width: 100%;
    height: 100%;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 4rem;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: rgba(30, 30, 30, 0.5);
}

.service-card-image-new .service-image-placeholder-new {
    position: relative;
    z-index: 1;
}

.service-image-placeholder-new {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 3.5rem;
}

.service-card-actions-new {
    display: flex;
    gap: 0.4rem;
    margin-top: auto;
    padding-top: 0.75rem;
    padding-bottom: 0.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

.service-card-actions-new button {
    flex: 1;
    padding: 0.6rem 0.8rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: 38px;
    white-space: nowrap;
}

.btn-contact-new {
    background: linear-gradient(135deg, #ffa500, #ff8c00);
    color: #fff;
    border: none;
}

.btn-contact-new:hover {
    background: linear-gradient(45deg, #ff8c00, #ff7700);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.5);
}

.btn-favorite-new {
    background: rgba(60, 60, 60, 0.9);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-favorite-new:hover {
    background: rgba(80, 80, 80, 1);
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-favorite-new.favorited {
    background: linear-gradient(135deg, #ff4757, #ff3742);
    border-color: #ff4757;
}

.btn-profile-new {
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-profile-new i {
    color: #1a1a1a;
}

.btn-profile-new:hover {
    background: rgba(240, 240, 240, 1);
}

@media (max-width: 768px) {
    .service-card-image-new {
        min-height: 180px;
        max-height: 220px;
    }
    
    .service-card-actions-new {
        flex-direction: column;
    }
    
    .service-card-actions-new button {
        width: 100%;
    }
}

/* Shop Section */
.shop-section {
    padding: 30px 0;
    background: rgba(25, 25, 25, 0.8);
    backdrop-filter: blur(20px);
    border-top: 2px solid rgba(255, 165, 0, 0.3);
    border-bottom: 2px solid rgba(255, 165, 0, 0.3);
}

.shop-header {
    text-align: center;
    margin-bottom: 1rem;
}

.shop-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.shop-content {
    display: grid;
    gap: 1.5rem;
}

/* Modern Shop Design */
.shop-category {
    background: linear-gradient(135deg, rgba(20, 20, 35, 0.95), rgba(15, 15, 30, 0.95));
    border-radius: 20px;
    padding: 2rem 2rem;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.shop-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 179, 0, 0.5), transparent);
}

.shop-category-header {
    text-align: center;
    margin-bottom: 2rem;
}

.shop-category h3 {
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    background: linear-gradient(135deg, #ffb300, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.shop-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 400;
    margin: 0;
}

/* Coin Packages Grid */
.coin-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    position: relative;
    padding-top: 0.5rem;
}

/* Modern Package Cards */
.coin-package {
    position: relative;
    background: linear-gradient(135deg, rgba(30, 30, 45, 0.8), rgba(25, 25, 40, 0.8));
    border-radius: 18px;
    padding: 1.5rem;
    padding-top: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    overflow: visible;
    cursor: pointer;
    margin-top: 0.75rem;
}

.coin-package::before {
    content: '';
    position: absolute;
    top: 0.75rem;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 179, 0, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 18px;
    pointer-events: none;
}

.coin-package:hover::before {
    opacity: 1;
}

.coin-package:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 179, 0, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 179, 0, 0.15);
}

.package-glow {
    position: absolute;
    top: 0.75rem;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 179, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
    border-radius: 18px;
}

.coin-package:hover .package-glow {
    opacity: 1;
}

.package-content {
    position: relative;
    z-index: 1;
}

/* Package Header */
.package-header {
    margin-bottom: 1.25rem;
}

.package-header h4 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    letter-spacing: -0.3px;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0;
}

.price-amount {
    color: #ffb300;
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 179, 0, 0.4);
}

.price-currency {
    color: rgba(255, 179, 0, 0.8);
    font-size: 1.3rem;
    font-weight: 600;
}

/* Package Coins Section */
.package-coins {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    margin: 1.5rem 0;
    padding: 1.25rem 0;
    position: relative;
}

.package-coins::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 179, 0, 0.3), transparent);
}

.coin-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 179, 0, 0.2), rgba(255, 140, 0, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.4rem;
    border: 2px solid rgba(255, 179, 0, 0.2);
    transition: all 0.3s ease;
}

.coin-package:hover .coin-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(255, 179, 0, 0.4);
    box-shadow: 0 0 20px rgba(255, 179, 0, 0.3);
}

.coin-icon-wrapper i {
    font-size: 1.75rem;
    color: #ffb300;
    filter: drop-shadow(0 0 10px rgba(255, 179, 0, 0.5));
}

.coin-amount {
    color: #ffffff;
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1;
    margin: 0.2rem 0;
}

.coin-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.85rem;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(56, 142, 60, 0.1));
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 10px;
    margin-top: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #4caf50;
    transition: all 0.3s ease;
}

.bonus-badge i {
    font-size: 0.7rem;
}

.bonus-badge.premium {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.15), rgba(63, 81, 181, 0.1));
    border-color: rgba(79, 172, 254, 0.3);
    color: #4facfe;
}

.bonus-badge.deluxe {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.15), rgba(123, 31, 162, 0.1));
    border-color: rgba(156, 39, 176, 0.3);
    color: #9c27b0;
}

.bonus-badge.vip {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 193, 7, 0.15));
    border-color: rgba(255, 215, 0, 0.4);
    color: #ffd700;
}

/* Package Buttons */
.package-btn {
    width: 100%;
    padding: 0.85rem 1.25rem;
    background: linear-gradient(135deg, #ffb300, #ff8c00);
    border: none;
    border-radius: 10px;
    color: #1a1a2e;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 179, 0, 0.3);
    margin-top: 1.25rem;
    position: relative;
    overflow: hidden;
}

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

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

.package-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 179, 0, 0.4);
}

.package-btn:active {
    transform: translateY(0);
}

.package-btn i {
    transition: transform 0.3s ease;
}

.package-btn:hover i {
    transform: translateX(4px);
}

/* Popular Package */
.coin-package.popular {
    border-color: rgba(79, 172, 254, 0.3);
    background: linear-gradient(135deg, rgba(30, 30, 50, 0.9), rgba(25, 25, 45, 0.9));
}

.coin-package.popular:hover {
    border-color: rgba(79, 172, 254, 0.5);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(79, 172, 254, 0.2);
}

.popular-glow {
    background: radial-gradient(circle, rgba(79, 172, 254, 0.15) 0%, transparent 70%);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: #000;
    padding: 0.5rem 1.1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.5);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.popular-badge i {
    font-size: 0.65rem;
}

.popular-btn {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: #000;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.4);
}

.popular-btn:hover {
    box-shadow: 0 6px 20px rgba(79, 172, 254, 0.5);
}

/* VIP Package */
.coin-package.vip {
    border-color: rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, rgba(40, 30, 20, 0.9), rgba(35, 25, 15, 0.9));
}

.coin-package.vip:hover {
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 215, 0, 0.25);
}

.vip-glow {
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
}

.vip-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    padding: 0.4rem 1rem;
    border-radius: 18px;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vip-badge i {
    font-size: 0.65rem;
}

.vip-icon {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 193, 7, 0.2));
    border-color: rgba(255, 215, 0, 0.4);
}

.vip-icon i {
    color: #ffd700;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
}

.vip-btn {
    background: linear-gradient(135deg, #ffd700, #ffc107);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.vip-btn:hover {
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.package-bonus {
    margin: 0.85rem 0;
    padding: 0.6rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 193, 7, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
}

.bonus-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    color: #ffd700;
    font-weight: 600;
    font-size: 0.85rem;
}

.bonus-item i {
    font-size: 1rem;
}

/* Special Packages */
.coin-package.special {
    background: linear-gradient(135deg, rgba(30, 30, 45, 0.6), rgba(25, 25, 40, 0.6));
    border-color: rgba(255, 179, 0, 0.2);
}

.special-glow {
    background: radial-gradient(circle, rgba(255, 179, 0, 0.1) 0%, transparent 70%);
}

.coin-package.special .package-header h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 1.2rem;
}

.coin-package.special .package-header h4 i {
    font-size: 1.1rem;
    color: #ffb300;
}

.package-price.free,
.package-price.active {
    color: #ffb300;
    font-size: 1.3rem;
    font-weight: 600;
}

.special-icon {
    font-size: 2.5rem;
    margin: 0.85rem 0;
    filter: drop-shadow(0 0 10px rgba(255, 179, 0, 0.3));
}

.special-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    line-height: 1.6;
    text-align: center;
}

.special-description strong {
    color: #ffb300;
    font-weight: 600;
}

.special-btn {
    background: linear-gradient(135deg, #ffb300, #ff8c00);
    color: #1a1a2e;
}

.goals-container {
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.goals-loading {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

.loading-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.loading-text {
    font-size: 0.85rem;
}

/* Responsive Shop Styles */
@media (max-width: 768px) {
    .shop-category {
        padding: 1.75rem 1.25rem;
        border-radius: 18px;
    }
    
    .shop-category-header {
        margin-bottom: 1.75rem;
    }
    
    .shop-category h3 {
        font-size: 1.6rem;
    }
    
    .shop-subtitle {
        font-size: 0.85rem;
    }
    
    .coin-packages {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding-top: 0.5rem;
    }
    
    .coin-package {
        padding: 1.5rem;
        padding-top: 1.75rem;
        border-radius: 16px;
        margin-top: 0.75rem;
    }
    
    .package-header h4 {
        font-size: 1.2rem;
    }
    
    .price-amount {
        font-size: 1.9rem;
    }
    
    .price-currency {
        font-size: 1.2rem;
    }
    
    .coin-icon-wrapper {
        width: 55px;
        height: 55px;
    }
    
    .coin-icon-wrapper i {
        font-size: 1.6rem;
    }
    
    .coin-amount {
        font-size: 1.75rem;
    }
    
    .package-btn {
        padding: 0.8rem 1.15rem;
        font-size: 0.9rem;
    }
    
    .popular-badge,
    .vip-badge {
        font-size: 0.65rem;
        padding: 0.45rem 0.95rem;
        top: -12px;
    }
}

@media (max-width: 480px) {
    .shop-category {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }
    
    .shop-category h3 {
        font-size: 1.4rem;
    }
    
    .shop-subtitle {
        font-size: 0.8rem;
    }
    
    .coin-packages {
        gap: 1.15rem;
        padding-top: 0.5rem;
    }
    
    .coin-package {
        padding: 1.35rem;
        padding-top: 1.6rem;
        border-radius: 14px;
        margin-top: 0.75rem;
    }
    
    .package-header h4 {
        font-size: 1.15rem;
    }
    
    .price-amount {
        font-size: 1.75rem;
    }
    
    .price-currency {
        font-size: 1.15rem;
    }
    
    .coin-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .coin-icon-wrapper i {
        font-size: 1.5rem;
    }
    
    .coin-amount {
        font-size: 1.6rem;
    }
    
    .coin-label {
        font-size: 0.8rem;
    }
    
    .bonus-badge {
        font-size: 0.75rem;
        padding: 0.35rem 0.75rem;
    }
    
    .package-btn {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    .popular-badge,
    .vip-badge {
        font-size: 0.6rem;
        padding: 0.4rem 0.85rem;
        top: -12px;
    }
    
    .special-icon {
        font-size: 2.25rem;
    }
    
    .special-description {
        font-size: 0.8rem;
    }
}

/* Push Package */
.push-package {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    background: rgba(30, 30, 30, 0.8);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid rgba(255, 165, 0, 0.3);
    backdrop-filter: blur(10px);
}

.push-info {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.push-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ffa500, #ff8c00);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.5rem;
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.5);
    flex-shrink: 0;
}

.push-details h4 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.push-details p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.push-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.push-features span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.push-features i {
    color: #4caf50;
    font-size: 0.8rem;
}

.push-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.price-coins {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffa500;
    font-size: 1.2rem;
    font-weight: 600;
}

.price-coins i {
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 165, 0, 0.5);
}

/* Purchases List */
.purchases-list {
    background: rgba(30, 30, 30, 0.8);
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid rgba(255, 165, 0, 0.2);
    backdrop-filter: blur(10px);
}

.no-purchases {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    margin: 0;
}

.purchase-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(45, 45, 45, 0.8);
    border-radius: 10px;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(255, 165, 0, 0.2);
}

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

.purchase-name {
    color: #ffffff;
    font-weight: 600;
}

.purchase-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.purchase-coins {
    color: #ffa500;
    font-weight: 600;
}

/* Profile Stats */
.profile-stats {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(30, 30, 30, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(255, 165, 0, 0.2);
}

.stat-item i {
    color: #ffa500;
    font-size: 1rem;
}

.stat-item span {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Service Profile Stats */
.service-profile-stats {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.profile-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(30, 30, 30, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(255, 165, 0, 0.2);
}

.profile-stat i {
    color: #ffa500;
    font-size: 1rem;
}

.profile-stat span {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Chat Section */
.chat-section {
    padding: 20px 0;
    background: rgba(20, 20, 20, 0.8);
}

/* Level Display Container */
.level-display-container {
    max-width: 800px;
    margin: 0 auto 15px auto;
    position: relative;
}

.level-info-card {
    background: rgba(45, 45, 45, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 10px;
    padding: 0.5rem 0.75rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 165, 0, 0.3);
}

.level-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.35rem;
}

.level-title {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffa500;
    text-shadow: 0 0 10px rgba(255, 165, 0, 0.5);
}

.level-info-btn {
    background: transparent;
    border: 2px solid rgba(255, 165, 0, 0.5);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffa500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.7rem;
    padding: 0;
}

.level-info-btn:hover {
    background: rgba(255, 165, 0, 0.2);
    border-color: #ffa500;
    transform: scale(1.1);
}

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

.level-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    padding: 0.35rem;
    border-radius: 8px;
    background: rgba(255, 165, 0, 0.2);
    border: 2px solid rgba(255, 165, 0, 0.5);
    transition: all 0.3s ease;
}

.level-number {
    font-size: 1rem;
    font-weight: 700;
    color: #ffa500;
    text-shadow: 0 0 15px rgba(255, 165, 0, 0.8);
    line-height: 1;
}

.level-label {
    font-size: 0.55rem;
    color: #ffffff;
    opacity: 0.8;
    margin-top: 0.1rem;
}

.xp-bar-container {
    flex: 1;
    min-width: 120px;
}

.xp-bar {
    width: 100%;
    height: 16px;
    background: rgba(30, 30, 30, 0.8);
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(255, 165, 0, 0.3);
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.xp-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffa500, #ff8c00);
    border-radius: 15px;
    transition: width 0.5s ease;
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.xp-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.xp-text {
    margin-top: 0.2rem;
    text-align: center;
    font-size: 0.65rem;
    color: #ffffff;
    font-weight: 500;
}

/* Level Explanation Modal */
.level-explanation-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.level-explanation-content {
    background: rgba(45, 45, 45, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border: 2px solid rgba(255, 165, 0, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
}

.close-level-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: 2px solid rgba(255, 165, 0, 0.5);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffa500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-level-modal:hover {
    background: rgba(255, 165, 0, 0.2);
    border-color: #ffa500;
}

.level-explanation-content h3 {
    margin: 0 0 1.5rem 0;
    font-size: 1.5rem;
    color: #ffa500;
    text-shadow: 0 0 10px rgba(255, 165, 0, 0.5);
}

.level-explanation-body {
    color: #ffffff;
}

.level-explanation-body p {
    margin: 1rem 0;
    line-height: 1.6;
}

.level-explanation-body ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.level-explanation-body li {
    margin: 0.5rem 0;
    line-height: 1.6;
}

.level-colors-preview {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1rem 0;
}

.color-preview {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 2px solid rgba(255, 165, 0, 0.3);
    color: #000;
    font-weight: 600;
    text-align: center;
}

/* ALTE CHAT-STYLES ENTFERNT - Verwende jetzt css/chat-styles.css */
/* Diese Styles werden nicht mehr verwendet, um Konflikte zu vermeiden */

/* Profile Section */
.profile-section {
    padding: 80px 0;
    background: rgba(30, 30, 30, 0.8);
}

.profile-container {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(45, 45, 45, 0.9);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 165, 0, 0.3);
}

.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 165, 0, 0.3);
}

.profile-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
}

.profile-info {
    text-align: center;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ffa500, #ff8c00);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 3rem;
    color: #000;
    box-shadow: 
        0 0 30px rgba(255, 165, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 3px solid rgba(255, 165, 0, 0.8);
}

.profile-details h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.profile-details p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.25rem;
}

/* Profilauswahl für Chat */
.profile-selector-container {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(30, 30, 30, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(255, 165, 0, 0.2);
    backdrop-filter: blur(10px);
}

.profile-selector-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
}

.profile-selector-header i {
    color: #ffa500;
    font-size: 1rem;
    animation: neonPulse 2s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% {
        filter: drop-shadow(0 0 3px rgba(255, 165, 0, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 8px rgba(255, 165, 0, 0.9));
    }
}

.profile-selector-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

#profile-select {
    width: 100%;
    padding: 12px 40px 12px 14px;
    background: rgba(20, 20, 20, 0.9);
    border: 2px solid rgba(255, 165, 0, 0.3);
    border-radius: 10px;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: all 0.3s ease;
    outline: none;
}

#profile-select:hover {
    border-color: rgba(255, 165, 0, 0.5);
    box-shadow: 0 0 15px rgba(255, 165, 0, 0.2);
}

#profile-select:focus {
    border-color: #ffa500;
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.4);
}

#profile-select option {
    background: #2c2c2c;
    color: #ffffff;
    padding: 10px;
    border: none;
}

#profile-select option:hover {
    background: rgba(255, 165, 0, 0.2);
}

#profile-select option:checked {
    background: rgba(255, 165, 0, 0.3);
    border-left: 3px solid #ffa500;
    padding-left: 7px;
}

.profile-select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffa500;
    pointer-events: none;
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

#profile-select:hover ~ .profile-select-arrow,
#profile-select:focus ~ .profile-select-arrow {
    color: #ffb300;
    transform: translateY(-50%) scale(1.1);
}

.profile-select-indicator {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.2), rgba(255, 140, 0, 0.2));
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffa500;
    pointer-events: none;
    opacity: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 165, 0, 0.3);
    box-shadow: 0 2px 8px rgba(255, 165, 0, 0.2);
}

.profile-select-indicator.show {
    opacity: 1;
}

.profile-select-indicator i {
    font-size: 0.7rem;
    filter: drop-shadow(0 0 3px rgba(255, 165, 0, 0.6));
}

#profile-select:focus ~ .profile-select-indicator {
    opacity: 1;
    transform: translateY(-50%) scale(1.05);
}

.profile-ads h3 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.ads-list {
    display: grid;
    gap: 1rem;
}

.ad-item {
    background: rgba(30, 30, 30, 0.8);
    padding: 1rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 165, 0, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ad-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.3);
}

.ad-thumbnail {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(45, 45, 45, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ad-thumbnail-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 2rem;
}

.ad-content {
    flex: 1;
    min-width: 0;
}

.ad-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.ad-header h4 {
    margin: 0;
    color: #fff;
    font-size: 1.2rem;
}

.ad-details {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
}

.ad-details p {
    margin: 0.3rem 0;
}

.ad-description {
    margin-top: 0.5rem;
    color: #aaa;
    font-style: italic;
}

.ad-actions {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.edit-ad-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    white-space: nowrap;
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.active {
    background: #4CAF50;
    color: #fff;
}

.status-badge.draft {
    background: #FF9800;
    color: #000;
}

@media (max-width: 768px) {
    .ad-item {
        flex-direction: column;
    }
    
    .ad-thumbnail {
        width: 100%;
        height: 200px;
    }
    
    .ad-actions {
        width: 100%;
    }
    
    .edit-ad-btn {
        width: 100%;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    touch-action: manipulation;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-content {
    background: rgba(45, 45, 45, 0.95);
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 165, 0, 0.3);
    animation: modalSlideIn3D 0.3s ease;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    position: relative;
    z-index: 10001;
}

@keyframes modalSlideIn3D {
    from { 
        transform: translateY(-50px) rotateX(10deg); 
        opacity: 0; 
    }
    to { 
        transform: translateY(0) rotateX(0deg); 
        opacity: 1; 
    }
}

.modal-header {
    background: linear-gradient(45deg, #ffa500, #ff8c00);
    color: #000;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px 20px 0 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

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

.close {
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.close:hover {
    opacity: 1;
}

.modal-body {
    padding: 2rem;
    background: rgba(30, 30, 30, 0.8);
}

/* Beichten Löschen-Bestätigung: kompakt wie Beichte pushen */
#confirm-delete-beichten-modal {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
#confirm-delete-beichten-modal .modal-content.confirm-delete-beichten-content {
    height: auto !important;
    max-height: none !important;
    margin: auto;
    flex-shrink: 0;
}
.confirm-delete-beichten-content {
    max-width: 360px;
    width: max-content;
    min-width: 260px;
}
.confirm-delete-beichten-content .modal-header {
    padding: 0.5rem 0.85rem;
    border-radius: 14px 14px 0 0;
}
.confirm-delete-beichten-content .modal-header h3 {
    font-size: 1.05rem;
}
.confirm-delete-beichten-content .modal-body {
    padding: 0.5rem 1rem 0.6rem;
    border-radius: 0 0 14px 14px;
    min-height: 0;
}
.confirm-delete-beichten-text {
    margin: 0 0 0.6rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.35;
    font-size: 0.9rem;
}
.confirm-delete-beichten-content .modal-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
    margin-top: 0;
    padding-top: 0;
}
.confirm-delete-beichten-content .modal-actions button {
    padding: 0.45rem 0.9rem;
    font-size: 0.875rem;
}

/* Beichten-Push-Modal: Höhe nur so groß wie Inhalt (kein 90vh-Stretch) */
#beichten-push-modal {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
#beichten-push-modal .modal-content.beichten-push-modal-content {
    height: auto !important;
    max-height: none !important;
    margin: auto;
    flex-shrink: 0;
}
.beichten-push-modal-content {
    max-width: 360px;
    width: max-content;
    min-width: 260px;
}
.beichten-push-modal-content .modal-header {
    padding: 0.5rem 0.85rem;
    border-radius: 14px 14px 0 0;
}
.beichten-push-modal-content .modal-header h3 {
    font-size: 1.05rem;
}
.beichten-push-modal-content .modal-body {
    padding: 0.5rem 1rem 0.6rem;
    border-radius: 0 0 14px 14px;
    min-height: 0;
}
.beichten-push-modal-text {
    margin: 0 0 0.6rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.35;
    font-size: 0.9rem;
}
.beichten-push-modal-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
    margin-top: 0;
    padding-top: 0;
}
.beichten-push-modal-actions .btn-secondary,
.beichten-push-modal-actions .btn-primary {
    padding: 0.45rem 0.9rem;
    font-size: 0.875rem;
}

/* Report-Beichten-Modal: kompakter */
#report-beichten-modal .modal-content {
    max-width: 420px;
}
#report-beichten-modal .modal-header {
    padding: 0.7rem 1rem;
}
#report-beichten-modal .modal-header h3 {
    font-size: 1.2rem;
}
#report-beichten-modal .modal-body {
    padding: 1rem 1.25rem;
}
#report-beichten-modal .form-group {
    margin-bottom: 0.85rem;
}
#report-beichten-modal .form-group:last-of-type {
    margin-bottom: 1rem;
}
#report-beichten-modal .modal-actions {
    margin-top: 0;
    padding-top: 0;
}

.btn-danger {
    background: linear-gradient(45deg, #c0392b, #a93226);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
}
.btn-danger:hover {
    opacity: 0.95;
    transform: translateY(-1px);
}
.btn-danger:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Progress Bar */
.progress-container {
    margin-bottom: 2rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 2px solid rgba(255, 165, 0, 0.2);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(45deg, #ffa500, #ff8c00);
    border-radius: 10px;
    transition: width 0.3s ease;
    width: 33.33%;
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.8);
}

.step-indicators {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.step.active {
    opacity: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border: 2px solid rgba(255, 165, 0, 0.3);
    color: #ffffff;
}

.step.active .step-number {
    background: linear-gradient(45deg, #ffa500, #ff8c00);
    color: #000;
    border-color: rgba(255, 165, 0, 0.8);
    box-shadow: 0 0 15px rgba(255, 165, 0, 0.5);
}

.step-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.step.active .step-label {
    color: #ffa500;
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.form-step h4 {
    color: #ffa500;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-shadow: 0 0 10px rgba(255, 165, 0, 0.5);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #ffffff;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(255, 165, 0, 0.3);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(30, 30, 30, 0.8);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffa500;
    box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input[readonly] {
    background: rgba(30, 30, 30, 0.6);
    color: rgba(255, 255, 255, 0.7);
    cursor: not-allowed;
    border-color: rgba(255, 165, 0, 0.2);
}

.field-note {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 165, 0, 0.8);
    margin-top: 0.25rem;
    font-style: italic;
}

/* File Upload */
.file-upload-area {
    border: 2px dashed rgba(255, 165, 0, 0.5);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(30, 30, 30, 0.5);
}

.file-upload-area:hover {
    border-color: #ffa500;
    background: rgba(255, 165, 0, 0.1);
}

.file-upload-area i {
    font-size: 2rem;
    color: #ffa500;
    margin-bottom: 1rem;
}

.file-upload-area p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.file-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.file-preview-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(255, 165, 0, 0.3);
}

.file-preview-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.file-preview-item .remove-file {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(255, 0, 0, 0.8);
    color: white;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(255, 165, 0, 0.3);
}

/* Push Display Styles */
.push-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    animation: pulse-glow 2s infinite;
    /* Reserviere Platz um Layout-Verschiebungen zu vermeiden */
    min-width: 60px;
    height: 40px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.push-display[style*="display: flex"],
.push-display[style*="display:block"] {
    opacity: 1;
    visibility: visible;
}

.push-display i {
    color: #fff;
    font-size: 1rem;
}

.push-display span {
    color: #fff;
    font-weight: 700;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(255, 107, 53, 0.5); }
}

/* Push Info Header */
.push-info-header {
    margin-bottom: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.free-pushes-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ff6b35;
}

.free-pushes-info i {
    font-size: 1.2rem;
    color: #f7931e;
}

/* Push Explanation */
.push-explanation {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.push-explanation i {
    color: #f7931e;
}

/* Push Packages */
.push-packages {
    margin-top: 2rem;
}

.push-packages h4 {
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
}

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

.push-package-item {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 3px solid transparent;
    overflow: hidden;
}

.push-package-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
}

.push-package-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.push-package-item.popular {
    border-color: #ff6b9d;
    transform: scale(1.05);
}

.push-package-item.vip {
    border-color: #ffd700;
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
}

.push-package-item .package-header {
    text-align: center;
    margin-bottom: 1rem;
}

.push-package-item .package-header h5 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.2rem;
}

.push-package-item .package-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
}

.push-package-item .package-features {
    margin-bottom: 1.5rem;
}

.push-package-item .package-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #555;
}

.push-package-item .package-features i {
    color: #4CAF50;
    font-size: 0.8rem;
}

.push-package-item .package-features .fa-gift {
    color: #ff6b9d;
}

.push-package-item button {
    width: 100%;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.push-package-item button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.push-package-item.popular button {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
}

.push-package-item.vip button {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    color: #333;
}

.push-package-item.popular button:hover {
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
}

.push-package-item.vip button:hover {
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

/* Direct Push Buttons */
.buy-push-direct {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.buy-push-direct:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.use-free-push-direct {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.use-free-push-direct:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.auth-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-style: italic;
}

/* Push Purchase Confirmation Modal */
.push-purchase-confirmation-modal-content {
    max-width: 500px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.push-purchase-confirmation-modal-content .modal-header {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border-radius: 20px 20px 0 0;
    padding: 1.5rem;
    text-align: center;
}

.push-purchase-confirmation-modal-content .modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.push-purchase-confirmation-modal-content .modal-header .close {
    color: white;
    font-size: 1.5rem;
    opacity: 0.8;
}

.push-purchase-confirmation-modal-content .modal-header .close:hover {
    opacity: 1;
}

.push-confirmation-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.push-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.push-confirmation-details h4 {
    margin: 0 0 0.5rem 0;
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
}

.push-confirmation-details p {
    margin: 0 0 1rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.5;
}

.push-confirmation-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    font-size: 0.95rem;
}

.push-confirmation-note i {
    color: #4CAF50;
    font-size: 1rem;
}

.push-confirmation-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.push-confirmation-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.push-confirmation-features .feature-item i {
    color: #4CAF50;
    font-size: 1rem;
}

.push-confirmation-cost {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.push-confirmation-cost .cost-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffd700;
}

.push-confirmation-cost .cost-display i {
    font-size: 1.5rem;
}

.push-confirmation-cost .current-coins {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.push-confirmation-cost .free-pushes-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 10px;
    color: #4CAF50;
    font-weight: 600;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.push-confirmation-cost .free-pushes-info i {
    color: #4CAF50;
    font-size: 1.1rem;
}

.push-confirmation-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.push-confirmation-actions button {
    flex: 1;
    min-width: 120px;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
}

.push-confirmation-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.push-confirmation-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
}

.push-confirmation-actions .btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.push-confirmation-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.push-confirmation-actions .btn-success {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

/* Coin Purchase Confirmation Modal */
.coin-purchase-confirmation-modal-content {
    max-width: 500px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.coin-purchase-confirmation-modal-content .modal-header {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border-radius: 20px 20px 0 0;
    padding: 1.5rem;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.coin-purchase-confirmation-modal-content .modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    flex: 1;
    text-align: center;
}

.coin-purchase-confirmation-modal-content .modal-header .close {
    color: white;
    font-size: 1.5rem;
    opacity: 0.8;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coin-purchase-confirmation-modal-content .modal-header .close:hover {
    opacity: 1;
}

.coin-confirmation-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.coin-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    flex-shrink: 0;
}

.coin-confirmation-details {
    flex: 1;
}

.coin-confirmation-details h4 {
    margin: 0 0 0.5rem 0;
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
}

.coin-confirmation-details p {
    margin: 0 0 1rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.5;
}

.coin-confirmation-package {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.coin-confirmation-package .package-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.coin-confirmation-package .package-item:last-child {
    margin-bottom: 0;
}

.coin-confirmation-package .package-item-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.coin-confirmation-package .package-item-value {
    color: #ff6b35;
    font-weight: 600;
    font-size: 1.1rem;
}

.coin-confirmation-bonus {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    font-size: 0.95rem;
    font-weight: 600;
}

.coin-confirmation-bonus i {
    color: #4CAF50;
    font-size: 1.1rem;
}

.coin-confirmation-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 1.5rem 1.5rem;
}

.coin-confirmation-actions button {
    flex: 1;
    min-width: 120px;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
}

.coin-confirmation-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.coin-confirmation-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
}

.coin-confirmation-actions .btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.coin-confirmation-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

@media (max-width: 768px) {
    .coin-confirmation-info {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .coin-icon-large {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .coin-confirmation-actions {
        flex-direction: column;
    }
    
    .coin-confirmation-actions button {
        width: 100%;
    }
}

/* Neue Push-Pakete Design */
.push-packages {
    margin: 2rem 0;
}

.push-packages h4 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.push-package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.push-package-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    overflow: hidden;
}

.push-package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4ecdc4, #44a08d);
    border-radius: 20px 20px 0 0;
}

.push-package-card.basic::before {
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.push-package-card.popular::before {
    background: linear-gradient(90deg, #f093fb, #f5576c);
}

.push-package-card.vip::before {
    background: linear-gradient(90deg, #ffecd2, #fcb69f);
}

.push-package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(78, 205, 196, 0.3);
}

.package-badge {
    position: absolute;
    top: -2px;
    right: 20px;
    padding: 0.5rem 1rem;
    border-radius: 0 0 15px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    z-index: 10;
}

.popular-badge {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
}

.vip-badge {
    background: linear-gradient(135deg, #ffecd2, #fcb69f);
    color: #333;
}

.package-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.package-icon i {
    font-size: 3rem;
    color: #4ecdc4;
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.package-content h5 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

.package-price {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4ecdc4;
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-currency {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 0.5rem;
}

.package-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.feature-item i {
    color: #4ecdc4;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.package-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.package-btn:hover {
    background: linear-gradient(135deg, #44a08d, #4ecdc4);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(78, 205, 196, 0.3);
}

.package-btn:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .push-package-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .push-package-card {
        padding: 1.5rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .package-icon i {
        font-size: 2.5rem;
    }
}

/* Verstecken für nicht eingeloggte Benutzer */
.push-packages.hidden {
    display: none;
}

/* Responsive Design für Push Confirmation Modal */
@media (max-width: 768px) {
    .push-purchase-confirmation-modal-content {
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }
    
    .push-confirmation-info {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .push-icon-large {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .push-confirmation-actions {
        flex-direction: column;
    }
    
    .push-confirmation-actions button {
        width: 100%;
    }
}

/* Push Options */
.push-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.use-free-push {
    background: linear-gradient(135deg, #ff6b35, #f7931e) !important;
    border: none !important;
    color: #fff !important;
}

.use-free-push:hover {
    background: linear-gradient(135deg, #e55a2b, #e0841a) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Free Pushes Available */
.free-pushes-available {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    margin-top: 0.5rem;
}

.free-pushes-available i {
    color: #ff6b35;
    font-size: 1.1rem;
}

.free-pushes-available span {
    font-weight: 600;
    color: #ff6b35;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 0;
    }
    
    .nav-container {
        padding: 0 10px;
        gap: 0.5rem;
    }
    
    .nav-logo {
        font-size: 1.2rem;
        gap: 6px;
    }
    
    .nav-logo i {
        font-size: 1.5rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-actions {
        gap: 0.5rem;
        flex-wrap: nowrap;
        min-width: 0;
        overflow: hidden;
    }
    
    .user-dropdown {
        flex-shrink: 0;
    }
    
    .coin-display {
        padding: 6px 10px;
        font-size: 0.85rem;
        min-width: auto;
    }
    
    .coin-display i {
        font-size: 0.9rem;
    }
    
    .push-display {
        padding: 6px 10px;
        font-size: 0.8rem;
        min-width: 50px;
        height: 36px;
    }
    
    .push-display i {
        font-size: 0.85rem;
    }
    
    .user-profile-btn {
        padding: 8px !important;
        width: 48px !important;
        height: 48px !important;
        min-width: 48px !important;
        min-height: 48px !important;
        max-width: 48px !important;
        gap: 0 !important;
        border-radius: 50% !important;
        font-size: 0.875rem !important;
        background: linear-gradient(135deg, rgba(255, 165, 0, 0.2), rgba(255, 140, 0, 0.15)) !important;
        border: 2px solid rgba(255, 165, 0, 0.5) !important;
        box-shadow: 0 4px 12px rgba(255, 165, 0, 0.3), 0 0 15px rgba(255, 165, 0, 0.2) !important;
        flex-shrink: 0 !important;
    }
    
    .user-avatar {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.9rem !important;
    }
    
    .user-name {
        display: none !important;
    }
    
    .dropdown-arrow {
        display: none !important;
    }
    
    @media (max-width: 480px) {
        .user-profile-btn {
            width: 48px !important;
            height: 48px !important;
            min-width: 48px !important;
            min-height: 48px !important;
        }
        
        .user-avatar {
            width: 36px !important;
            height: 36px !important;
            font-size: 1rem !important;
        }
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-features {
        margin-bottom: 1.5rem;
        gap: 0.75rem;
    }
    
    .feature-badge {
        padding: 0.875rem 1rem;
        gap: 0.75rem;
    }
    
    .feature-badge i {
        font-size: 1.25rem;
        min-width: 20px;
    }
    
    .feature-badge-content strong {
        font-size: 0.9rem;
    }
    
    .feature-badge-content span {
        font-size: 0.8rem;
    }
    
    .hero-visual {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 0.75rem;
        margin-top: 1.5rem;
        height: auto;
        max-height: none;
        overflow: visible;
    }
    
    .floating-card {
        width: 100%;
        max-width: 100%;
        height: 90px;
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
        gap: 0.4rem;
    }
    
    .floating-card i {
        font-size: 1.3rem;
    }
    
    .floating-card span {
        font-size: 0.75rem;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .form-navigation {
        flex-direction: column;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .step-indicators {
        flex-direction: column;
        gap: 1rem;
    }
    
    .popup-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .popup-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .popup-content h3 {
        font-size: 1.3rem;
    }
    
    .popup-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .popup-actions .btn-primary,
    .popup-actions .btn-secondary {
        width: 100%;
        min-width: auto;
        min-height: 48px;
        padding: 14px 20px;
    }
    
    /* Service Options Mobile Optimierung */
    .service-options {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 0.75rem;
    }
    
    .service-option {
        min-height: 100px;
        padding: 1.25rem 0.75rem;
    }
    
    .service-option h5 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    /* Time Options Mobile */
    .time-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .time-option label {
        min-height: 70px;
        padding: 1rem 1.25rem;
    }
    
    /* Buttons auf Mobile größer machen */
    .btn-primary, .btn-secondary {
        min-height: 48px;
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    /* Profile Cards Mobile */
    .service-card, .service-card-compact {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    /* Z-index Fixes für Mobile */
    .modal {
        z-index: 10000;
    }
    
    .modal-content {
        max-height: 90vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Touch-friendly Links */
    a, button {
        -webkit-tap-highlight-color: rgba(255, 165, 0, 0.3);
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .nav-container {
        padding: 0 8px;
        gap: 0.25rem;
    }
    
    .nav-logo {
        font-size: 1rem;
        gap: 4px;
    }
    
    .nav-logo i {
        font-size: 1.2rem;
    }
    
    .nav-actions {
        gap: 0.25rem;
    }
    
    .coin-display {
        padding: 5px 8px;
        font-size: 0.75rem;
    }
    
    /* Hero Visual optimiert für sehr kleine Bildschirme */
    .hero-visual {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
        padding: 0.5rem;
        margin-top: 1rem;
    }
    
    .floating-card {
        height: 85px;
        padding: 0.6rem 0.4rem;
        font-size: 0.75rem;
        gap: 0.3rem;
        max-width: 100%;
    }
    
    .floating-card i {
        font-size: 1.2rem;
    }
    
    .floating-card span {
        font-size: 0.7rem;
        line-height: 1.1;
    }
    
    .coin-display i {
        font-size: 0.8rem;
    }
    
    .push-display {
        padding: 5px 8px;
        font-size: 0.7rem;
        min-width: 45px;
        height: 32px;
    }
    
    .push-display i {
        font-size: 0.75rem;
    }
    
    .user-profile-btn {
        padding: 8px !important;
        min-width: 48px !important;
        min-height: 48px !important;
        width: 48px !important;
        height: 48px !important;
        border-radius: 50% !important;
        justify-content: center !important;
        background: linear-gradient(135deg, rgba(255, 165, 0, 0.2), rgba(255, 140, 0, 0.15)) !important;
        border: 2px solid rgba(255, 165, 0, 0.5) !important;
        box-shadow: 0 4px 12px rgba(255, 165, 0, 0.3), 0 0 15px rgba(255, 165, 0, 0.2) !important;
    }
    
    .user-avatar {
        width: 36px !important;
        height: 36px !important;
        font-size: 1rem !important;
    }
    
    .user-name {
        display: none !important;
    }
    
    .dropdown-arrow {
        display: none !important;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-free-note {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
        margin-top: 0.625rem;
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .hero-features {
        margin-bottom: 1.25rem;
        gap: 0.625rem;
    }
    
    .feature-badge {
        padding: 0.75rem 0.875rem;
        gap: 0.625rem;
    }
    
    .feature-badge i {
        font-size: 1.1rem;
        min-width: 18px;
    }
    
    .feature-badge-content strong {
        font-size: 0.85rem;
    }
    
    .feature-badge-content span {
        font-size: 0.75rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 200px;
    }
    
    .gender-filters {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .gender-filter-btn {
        width: 200px;
        min-height: 52px;
        font-size: 1rem;
        padding: 14px 24px;
    }
    
    .category-chip {
        min-height: 52px;
        font-size: 1rem;
        padding: 12px 20px;
        font-weight: 700;
    }
    
    .distance-chip {
        min-height: 48px;
        font-size: 0.95rem;
        padding: 12px 18px;
        font-weight: 700;
    }
    
    .sort-select {
        min-height: 52px;
        font-size: 1rem;
        padding: 14px 18px;
    }
    
    /* Service-Option Buttons im Modal */
    .service-option {
        min-height: 100px;
        padding: 1.5rem 1rem;
        font-size: 1.1rem;
        font-weight: 700;
    }
    
    .service-option h5 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .sorting-controls {
        flex-direction: column;
        align-items: center;
    }
    
    .sort-options {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .pagination-container {
        margin: 0.5rem 0;
        padding: 0.75rem;
        background: rgba(30, 30, 30, 0.8);
        border: 2px solid rgba(255, 165, 0, 0.3);
    }
    
    .pagination-controls {
        flex-direction: row;
        gap: 0.75rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .pagination-btn {
        min-height: 52px;
        padding: 14px 22px;
        font-size: 1rem;
        font-weight: 700;
        border-width: 3px;
    }
    
    .pagination-info {
        font-weight: 600;
        color: #ffffff;
        font-size: 0.95rem;
    }
    
    .page-numbers {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Category Chips auf Mobile */
    .category-chip {
        min-height: 52px;
        font-size: 1rem;
        padding: 12px 20px;
        font-weight: 700;
        border-width: 2.5px;
    }
    
    .gender-filter-btn {
        min-height: 52px;
        font-size: 1rem;
        padding: 14px 24px;
        font-weight: 700;
        border-width: 2.5px;
    }
    
    .distance-chip {
        min-height: 48px;
        font-size: 0.95rem;
        padding: 12px 18px;
        font-weight: 700;
        border-width: 2.5px;
    }
    
    .sort-select {
        min-height: 52px;
        font-size: 1rem;
        padding: 14px 18px;
        font-weight: 600;
        border-width: 2.5px;
    }
    
    /* Service-Option Buttons im Modal */
    .service-option {
        min-height: 110px;
        padding: 1.5rem 1rem;
        font-weight: 700;
        border-width: 3px;
    }
    
    .service-option h5 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
        font-weight: 800;
    }
    
    .chat-messages {
        height: 85vh; /* Größere Höhe für mobile Geräte */
        max-height: 85vh;
    }
    
    .chat-container {
        max-width: 100%; /* Vollbreite auf mobilen Geräten */
        margin: 0;
    }
    
    .message {
        max-width: 90%; /* Mehr Platz für Nachrichten auf mobilen Geräten */
        min-width: 150px;
    }
    
    .coin-packages {
        grid-template-columns: 1fr;
    }
    
    .push-package {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .push-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .service-profile-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .profile-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(30, 30, 30, 0.8);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ffa500, #ff8c00);
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(255, 165, 0, 0.5);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #ff8c00, #ffa500);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 165, 0, 0.3);
    border-radius: 50%;
    border-top-color: #ffa500;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success/Error Messages */
.message-success {
    background: linear-gradient(45deg, #4caf50, #8bc34a);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
    text-align: center;
    border: 2px solid rgba(76, 175, 80, 0.5);
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.3);
}

.message-info {
    background: linear-gradient(45deg, #2196f3, #21cbf3);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
    text-align: center;
    border: 2px solid rgba(33, 150, 243, 0.5);
    box-shadow: 0 0 15px rgba(33, 150, 243, 0.3);
}

.message-error {
    background: linear-gradient(45deg, #f44336, #e91e63);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
    text-align: center;
    border: 2px solid rgba(244, 67, 54, 0.5);
    box-shadow: 0 0 15px rgba(244, 67, 54, 0.3);
}

/* Login Required Popup */
.login-required-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: popupFadeIn 0.3s ease;
}

@keyframes popupFadeIn {
    from { 
        opacity: 0; 
        transform: scale(0.8) translateY(-20px);
    }
    to { 
        opacity: 1; 
        transform: scale(1) translateY(0);
    }
}

.popup-content {
    background: rgba(45, 45, 45, 0.95);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 165, 0, 0.3);
    animation: popupSlideIn 0.3s ease;
}

@keyframes popupSlideIn {
    from { 
        transform: translateY(-50px) rotateX(10deg); 
        opacity: 0; 
    }
    to { 
        transform: translateY(0) rotateX(0deg); 
        opacity: 1; 
    }
}

.popup-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ffa500, #ff8c00);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #000;
    box-shadow: 
        0 0 30px rgba(255, 165, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 3px solid rgba(255, 165, 0, 0.8);
    animation: iconPulse 2s infinite;
}

@keyframes iconPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 0 30px rgba(255, 165, 0, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 
            0 0 40px rgba(255, 165, 0, 0.7),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
}

.popup-content h3 {
    color: #ffa500;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 165, 0, 0.5);
}

.popup-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.popup-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.popup-actions .btn-primary,
.popup-actions .btn-secondary {
    min-width: 120px;
    padding: 12px 20px;
    font-weight: 600;
}

.popup-actions .btn-primary {
    background: linear-gradient(45deg, #ffa500, #ff8c00);
    color: #000;
    border: 2px solid rgba(255, 165, 0, 0.8);
    box-shadow: 
        0 8px 25px rgba(255, 165, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.popup-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 35px rgba(255, 165, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.popup-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.popup-actions .btn-tertiary {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 165, 0, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.btn-tertiary:hover {
    background: rgba(255, 165, 0, 0.1);
    border-color: rgba(255, 165, 0, 0.6);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(255, 165, 0, 0.2),
        0 0 20px rgba(255, 165, 0, 0.1);
    color: #ffa500;
}

.btn-tertiary.liked {
    background: linear-gradient(45deg, #ff6b9d, #e91e63);
    color: #ffffff;
    border-color: rgba(255, 107, 157, 0.8);
    box-shadow: 
        0 8px 25px rgba(255, 107, 157, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 30px rgba(255, 107, 157, 0.3);
    animation: heartPulse 1.5s ease-in-out infinite;
    transform: scale(1.05);
}

.btn-tertiary.liked:hover {
    background: linear-gradient(45deg, #e91e63, #c2185b);
    transform: translateY(-2px);
    box-shadow: 
        0 12px 35px rgba(255, 107, 157, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

@keyframes heartPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 8px 25px rgba(255, 107, 157, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 
            0 12px 35px rgba(255, 107, 157, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
}

/* Service Profile Modal */
.service-profile-content {
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.service-profile-container {
    display: grid;
    gap: 1rem;
}

.service-profile-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(30, 30, 30, 0.8);
    border-radius: 12px;
    border: 2px solid rgba(255, 165, 0, 0.3);
}

.service-profile-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ffa500, #ff8c00);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.5rem;
    box-shadow: 0 0 15px rgba(255, 165, 0, 0.5);
    flex-shrink: 0;
}

.service-profile-info h2 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
}

.service-profile-category {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #000;
    display: inline-block;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.service-profile-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(30, 30, 30, 0.8);
    border-radius: 12px;
    border: 2px solid rgba(255, 165, 0, 0.3);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 165, 0, 0.2);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: #ffa500;
}

.detail-value {
    color: #ffffff;
    font-weight: 500;
}

.service-profile-description {
    padding: 1.5rem;
    background: rgba(30, 30, 30, 0.8);
    border-radius: 15px;
    border: 2px solid rgba(255, 165, 0, 0.3);
}

.service-profile-description h4 {
    color: #ffa500;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.service-profile-description p {
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
}

.service-profile-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
}

.service-profile-image-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1;
}

.profile-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.profile-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.profile-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.profile-image-wrapper:hover .profile-image-overlay {
    opacity: 1;
}

.profile-image-like-btn {
    align-self: flex-end;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    font-size: 1rem;
}

.profile-image-like-btn:hover:not(:disabled) {
    background: rgba(255, 107, 157, 0.9);
    color: #fff;
    transform: scale(1.1);
}

.profile-image-like-btn.liked,
.profile-image-like-btn:disabled {
    background: linear-gradient(135deg, #ff4757, #ff3742) !important;
    border-color: #ff4757 !important;
    color: white !important;
    cursor: not-allowed;
    box-shadow: 0 0 15px rgba(255, 71, 87, 0.4);
}

.profile-image-like-count {
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(0, 0, 0, 0.6);
    padding: 0.3rem 0.6rem;
    border-radius: 15px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
}

.profile-image-like-count i {
    font-size: 0.75rem;
    color: #ff6b9d;
}

.like-count-number {
    color: #fff;
}

.service-profile-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(30, 30, 30, 0.8);
    border-radius: 15px;
    border: 2px solid rgba(255, 165, 0, 0.3);
}

.service-profile-actions .btn-primary,
.service-profile-actions .btn-secondary {
    flex: 1;
    max-width: 200px;
    padding: 12px 20px;
    font-weight: 600;
}

.service-profile-actions .btn-tertiary {
    flex: 1;
    max-width: 200px;
    padding: 12px 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.service-profile-actions .btn-tertiary i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.service-profile-actions .btn-tertiary:hover i {
    transform: scale(1.2);
}

.service-profile-actions .btn-tertiary.liked i {
    animation: heartBeat 1s ease-in-out infinite;
}

@keyframes heartBeat {
    0%, 100% { 
        transform: scale(1);
    }
    25% { 
        transform: scale(1.1);
    }
    50% { 
        transform: scale(1.2);
    }
    75% { 
        transform: scale(1.1);
    }
}

/* Like Button Click Effect */
.btn-tertiary:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

.btn-tertiary.liked:active {
    transform: scale(1.0);
    transition: transform 0.1s ease;
}

/* Ripple Effect für Like Button */
.btn-tertiary {
    position: relative;
    overflow: hidden;
}

.btn-tertiary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-tertiary:active::after {
    width: 300px;
    height: 300px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(45, 45, 45, 0.95);
    backdrop-filter: blur(20px);
    border-top: 2px solid rgba(255, 165, 0, 0.3);
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-icon {
    font-size: 2rem;
    color: #ffa500;
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h3 {
    color: #ffa500;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.cookie-text p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

.cookie-link {
    color: #ffa500;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: #ff8c00;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-decline {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-decline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Cookie Settings Modal */
.cookie-category {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(30, 30, 30, 0.8);
    border-radius: 15px;
    border: 2px solid rgba(255, 165, 0, 0.2);
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cookie-category-header h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

.cookie-category p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

/* Cookie Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    cursor: pointer;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    transition: 0.3s;
    border-radius: 30px;
    border: 2px solid rgba(255, 165, 0, 0.3);
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 2px;
    bottom: 2px;
    background: rgba(255, 255, 255, 0.8);
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input:checked + .toggle-slider {
    background: linear-gradient(45deg, #ffa500, #ff8c00);
    border-color: rgba(255, 165, 0, 0.8);
}

.cookie-toggle input:checked + .toggle-slider:before {
    transform: translateX(30px);
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(255, 165, 0, 0.3);
}

.cookie-toggle input:disabled + .toggle-slider {
    background: rgba(255, 165, 0, 0.3);
    border-color: rgba(255, 165, 0, 0.5);
    cursor: not-allowed;
}

.cookie-toggle input:disabled + .toggle-slider:before {
    background: rgba(255, 255, 255, 0.6);
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 1rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-icon {
        font-size: 1.5rem;
    }
    
    .cookie-text {
        min-width: auto;
        width: 100%;
    }
    
    .cookie-text h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .cookie-text p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .cookie-actions {
        width: 100%;
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }
    
    .cookie-actions .btn-primary,
    .cookie-actions .btn-secondary {
        width: 100%;
        max-width: none;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        min-height: 44px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .cookie-category-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    /* Success/Error Messages auf Mobile */
    .success-message,
    .error-message {
        top: 20%;
        left: 5%;
        right: 5%;
        transform: translate(0, 0);
        max-width: none;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 0.75rem;
    }
    
    .cookie-text h3 {
        font-size: 0.9rem;
    }
    
    .cookie-text p {
        font-size: 0.8rem;
    }
    
    .cookie-actions {
        gap: 0.5rem;
    }
    
    .cookie-actions .btn-primary,
    .cookie-actions .btn-secondary {
        padding: 0.65rem 0.75rem;
        font-size: 0.85rem;
        min-height: 42px;
    }
}

/* Profile Actions */
.profile-actions {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.profile-actions .btn-primary {
    background: linear-gradient(45deg, #ffa500, #ff8c00);
    color: #000;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

.profile-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
}

/* Profile Actions Buttons - Optimiertes Design */
.profile-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.profile-actions .btn-primary {
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
    color: #000;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 25px rgba(255, 165, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-height: 56px;
}

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

.profile-actions .btn-primary:hover::before {
    left: 100%;
}

.profile-actions .btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(255, 165, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    filter: brightness(1.1);
}

.profile-actions .btn-primary:active {
    transform: translateY(-1px) scale(0.98);
    transition: transform 0.1s ease;
}

.profile-actions .btn-secondary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-height: 56px;
}

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

.profile-actions .btn-secondary:hover::before {
    left: 100%;
}

.profile-actions .btn-secondary:hover {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.2) 0%, rgba(255, 165, 0, 0.1) 100%);
    border-color: rgba(255, 165, 0, 0.5);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(255, 165, 0, 0.3),
        0 0 20px rgba(255, 165, 0, 0.1);
    color: #ffa500;
}

.profile-actions .btn-secondary:active {
    transform: translateY(-1px) scale(0.98);
    transition: transform 0.1s ease;
}

.profile-actions .btn-tertiary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-height: 56px;
}

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

.profile-actions .btn-tertiary:hover::before {
    left: 100%;
}

.profile-actions .btn-tertiary:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px) scale(1.01);
    box-shadow: 
        0 10px 25px rgba(255, 255, 255, 0.1),
        0 0 15px rgba(255, 255, 255, 0.05);
}

.profile-actions .btn-tertiary:active {
    transform: translateY(0) scale(0.99);
    transition: transform 0.1s ease;
}

/* Button Icons */
.profile-actions .btn-primary i,
.profile-actions .btn-secondary i,
.profile-actions .btn-tertiary i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.profile-actions .btn-primary:hover i,
.profile-actions .btn-secondary:hover i,
.profile-actions .btn-tertiary:hover i {
    transform: scale(1.1);
}

/* Mobile Navigation Buttons - Fixed Position - Modern Design */
.mobile-nav-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.98) 0%, rgba(30, 30, 30, 0.98) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-top: 2px solid rgba(255, 165, 0, 0.4);
    padding: 1rem;
    display: none;
    z-index: 1000;
    box-shadow: 
        0 -4px 20px rgba(0, 0, 0, 0.5),
        0 -1px 0 rgba(255, 165, 0, 0.2) inset;
    pointer-events: auto;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.mobile-nav-buttons .nav-button {
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 50%, #ff9500 100%);
    color: #000;
    border: none;
    padding: 14px 22px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 120px;
    min-height: 52px;
    justify-content: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(255, 165, 0, 0.5);
    user-select: none;
    box-shadow: 
        0 4px 12px rgba(255, 165, 0, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.mobile-nav-buttons .nav-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.mobile-nav-buttons .nav-button:hover::before {
    left: 100%;
}

.mobile-nav-buttons .nav-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 8px 24px rgba(255, 165, 0, 0.5),
        0 4px 8px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffb300 0%, #ff9500 50%, #ffa500 100%);
}

.mobile-nav-buttons .nav-button:active {
    transform: translateY(-1px) scale(0.98);
    transition: transform 0.1s ease;
}

.mobile-nav-buttons .nav-button.secondary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.08) 100%);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.mobile-nav-buttons .nav-button.secondary:hover {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.25) 0%, rgba(255, 165, 0, 0.15) 100%);
    border-color: rgba(255, 165, 0, 0.6);
    box-shadow: 
        0 4px 16px rgba(255, 165, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-2px) scale(1.01);
}

.mobile-nav-buttons .nav-button.secondary:active {
    transform: translateY(0) scale(0.99);
}

/* Responsive Design für Profile Actions */
@media (max-width: 768px) {
    .profile-container {
        padding: 1rem;
        margin: 1rem;
        border-radius: 15px;
    }
    
    .profile-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .profile-content {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .profile-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .profile-details {
        margin-top: 1rem;
    }
    
    .profile-stats {
        justify-content: center;
        margin: 1rem 0;
    }
    
    .profile-actions {
        display: none; /* Verstecke normale Buttons auf Mobile */
    }
    
    .mobile-nav-buttons {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    /* Anpassung für Profile Section Padding */
    .profile-section {
        padding-bottom: 100px; /* Platz für mobile Navigation */
    }
}

@media (max-width: 480px) {
    .profile-container {
        margin: 0.5rem;
        padding: 0.75rem;
    }
    
    .profile-header h2 {
        font-size: 1.5rem;
    }
    
    .profile-details h3 {
        font-size: 1.3rem;
    }
    
    .mobile-nav-buttons {
        padding: 0.75rem;
    }
    
    .mobile-nav-buttons .nav-button {
        padding: 10px 16px;
        font-size: 0.85rem;
        min-width: 100px;
    }
    
    .profile-section {
        padding-bottom: 90px;
    }
    
    /* Noch kleinere Buttons auf sehr kleinen Screens */
    .btn-action-compact {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }
    
    /* Profile Cards auf sehr kleinen Screens */
    #service-grid .service-card {
        min-height: 480px; /* Größere Mindesthöhe */
        padding-bottom: 2.5rem; /* Noch mehr Platz für Action-Buttons */
    }
    
    .service-card-actions-new {
        margin-top: 1.5rem;
        padding-bottom: 1rem; /* Extra Padding unten */
        position: relative;
        z-index: 20;
    }
    
    .service-card-actions-compact {
        margin-top: 1.5rem;
        padding-bottom: 1.5rem; /* Extra Padding unten */
        position: relative;
        z-index: 100;
        gap: 10px; /* Mehr Abstand zwischen Buttons */
        pointer-events: auto;
    }
    
    .service-card-content-new {
        padding-bottom: 1.5rem; /* Extra Abstand vor Actions */
    }
    
    .service-option {
        min-height: 90px;
        padding: 1rem 0.5rem;
    }
    
    .service-options {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    /* Mobile Navigation Buttons */
    .mobile-nav-buttons .nav-button {
        padding: 10px 14px;
        font-size: 0.8rem;
        min-width: 100px;
    }
    
    /* Pagination auf sehr kleinen Screens */
    .pagination-container {
        margin: 0.5rem 0;
        padding: 0.75rem;
        background: rgba(30, 30, 30, 0.8);
        border: 2px solid rgba(255, 165, 0, 0.3);
    }
    
    .pagination-btn {
        min-height: 52px;
        padding: 14px 20px;
        font-size: 1rem;
        font-weight: 700;
        border-width: 3px;
    }
    
    .pagination-info {
        font-size: 0.9rem;
        font-weight: 600;
        color: #ffffff;
    }
    
    /* Service-Option Buttons im Modal auf sehr kleinen Screens */
    .service-option {
        min-height: 110px;
        padding: 1.5rem 0.75rem;
        font-weight: 700;
    }
    
    .service-option h5 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
}

/* Mobile Favoriten Styles */
.no-favorites-mobile {
    text-align: center;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.6);
}

.no-favorites-mobile i {
    font-size: 3rem;
    color: rgba(255, 165, 0, 0.5);
    margin-bottom: 1rem;
}

.no-favorites-mobile h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.favorite-item-mobile {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.favorite-item-mobile:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 165, 0, 0.3);
    transform: translateY(-2px);
}

.favorite-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ffa500, #ff8c00);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.favorite-info {
    flex: 1;
}

.favorite-info h4 {
    color: #ffffff;
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
}

.favorite-info p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.3;
}

.favorite-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.btn-small {
    padding: 8px 12px;
    font-size: 0.8rem;
    border-radius: 8px;
    min-width: auto;
}

.btn-small i {
    font-size: 0.9rem;
}

/* Favoriten Modal */
.favorites-list {
    max-height: 500px;
    overflow-y: auto;
}

.favorite-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.favorite-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 165, 0, 0.3);
    transform: translateY(-2px);
}

.favorite-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.favorite-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffa500, #ff8c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.2rem;
    font-weight: bold;
}

.favorite-info h4 {
    color: #ffffff;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.favorite-category {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.favorite-details {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.25rem;
}

.favorite-location {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

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

.favorite-actions .btn-small {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
    border-radius: 8px;
    min-width: auto;
}

.no-favorites {
    text-align: center;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.no-favorites i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.3);
}

.no-favorites h4 {
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.no-favorites p {
    margin-bottom: 1.5rem;
}

/* Favoriten Button Styles - Spezifische Selektoren */
.service-card .favorite-btn {
    transition: all 0.3s ease;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

.service-card .favorite-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.service-card .favorite-btn.favorited {
    background: linear-gradient(135deg, #ff4757, #ff3742) !important;
    border-color: #ff4757 !important;
    color: white !important;
    box-shadow: 0 0 15px rgba(255, 71, 87, 0.4);
}

.service-card .favorite-btn.favorited i {
    color: #ff4757 !important;
    animation: heartBeat 0.6s ease-in-out;
}

.service-card .favorite-btn.favorited:hover {
    background: linear-gradient(135deg, #ff3742, #ff2f3a) !important;
    transform: scale(1.05);
}

/* Service Profile Modal Favoriten Button */
.service-profile-actions .favorite-btn {
    transition: all 0.3s ease;
}

.service-profile-actions .favorite-btn.favorited {
    background: linear-gradient(135deg, #ff4757, #ff3742) !important;
    border-color: #ff4757 !important;
    color: white !important;
    box-shadow: 0 0 15px rgba(255, 71, 87, 0.4) !important;
}

.service-profile-actions .favorite-btn.favorited i {
    color: white !important;
}

.service-profile-actions .favorite-btn.favorited:hover {
    background: linear-gradient(135deg, #ff3742, #ff2f3a) !important;
    transform: scale(1.05) !important;
}

/* Herz-Animation */
@keyframes heartBeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(1.1); }
    75% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* Service Management Styles */
.service-management-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.current-services h4,
.add-service-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 165, 0, 0.3);
    transform: translateY(-2px);
}

.service-item-content {
    flex: 1;
}

.service-item-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.service-item-header h5 {
    color: #ffffff;
    font-weight: 600;
    margin: 0;
}

.service-category {
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
}

.service-item-details {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.service-item-actions {
    display: flex;
    gap: 0.5rem;
}

.service-item-actions .btn-small {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
    border-radius: 8px;
    min-width: auto;
}

.btn-danger {
    background: linear-gradient(135deg, #ff4757, #ff3742);
    color: #ffffff;
    border: none;
    transition: all 0.3s ease;
}

.btn-danger:hover {
    background: linear-gradient(135deg, #ff3742, #ff2f3a);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.4);
}

.no-services {
    text-align: center;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.no-services i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.3);
}

.no-services p {
    margin-bottom: 1.5rem;
}

/* Profile Edit Modal Styles */
.profile-edit-modal .form-group {
    margin-bottom: 1.5rem;
}

.profile-edit-modal .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 600;
}

.profile-edit-modal .form-group input,
.profile-edit-modal .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.profile-edit-modal .form-group input:focus,
.profile-edit-modal .form-group textarea:focus {
    outline: none;
    border-color: #ffa500;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.1);
}

.profile-edit-modal .form-group input[readonly] {
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.6);
    cursor: not-allowed;
}

.profile-edit-modal .field-note {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.profile-edit-modal .form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.profile-edit-modal .form-actions button {
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Step-by-Step Profile Edit Styles */
.profile-edit-modal-content {
    max-width: 600px;
    width: 90%;
}

.edit-step {
    animation: fadeIn 0.3s ease-in-out;
}

.step-header {
    text-align: center;
    margin-bottom: 2rem;
}

.step-header h4 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.step-header p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Anzeige-Auswahl */
.ads-selection {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.ad-selection-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ad-selection-card:hover {
    border-color: #ffa500;
    background: rgba(255, 165, 0, 0.1);
    transform: translateY(-2px);
}

.ad-selection-card.selected {
    border-color: #ffa500;
    background: rgba(255, 165, 0, 0.15);
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.3);
}

.ad-selection-card h5 {
    color: #fff;
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.ad-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ad-id {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-family: monospace;
}

.ad-categories {
    font-size: 0.8rem;
    color: #ffa500;
    font-weight: 500;
}

/* Form Row für nebeneinander liegende Felder */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Kategorie-Auswahl */
.categories-selection {
    margin-bottom: 2rem;
}

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

.category-option {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.category-option:hover {
    border-color: #ffa500;
    background: rgba(255, 165, 0, 0.1);
    transform: translateY(-2px);
}

.category-option.selected {
    border-color: #ffa500;
    background: rgba(255, 165, 0, 0.15);
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.3);
}

.category-option i {
    font-size: 2rem;
    color: #ffa500;
    margin-bottom: 0.5rem;
}

.category-option span {
    color: #fff;
    font-weight: 600;
}

/* Bild-Upload Bereich */
.image-upload-section {
    margin-bottom: 2rem;
}

.upload-area {
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.upload-area:hover {
    border-color: #ffa500;
    background: rgba(255, 165, 0, 0.05);
}

.upload-content i {
    font-size: 3rem;
    color: #ffa500;
    margin-bottom: 1rem;
}

.upload-content h5 {
    color: #fff;
    margin: 0 0 0.5rem 0;
}

.upload-content p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 1rem 0;
}

.upload-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 1rem;
}

.upload-preview img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

/* Geschlecht-Auswahl */
.gender-selection {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 0.5rem;
}

.gender-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    justify-content: center;
    gap: 0.5rem;
}

.gender-option:hover {
    background: rgba(255, 165, 0, 0.1);
    border-color: rgba(255, 165, 0, 0.3);
    transform: translateY(-2px);
}

.gender-option.selected {
    background: linear-gradient(135deg, #ffa500, #ff8c00);
    border-color: #ffa500;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.3);
}

.gender-option i {
    font-size: 1.2rem;
    color: #ffa500;
}

.gender-option.selected i {
    color: #000;
}

.gender-option span {
    font-weight: 500;
    color: #fff;
}

.gender-option.selected span {
    color: #000;
    font-weight: 600;
}

/* Zusammenfassung */
.summary-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.summary-label {
    color: #fff !important;
    font-weight: 600;
}

.summary-value {
    color: #ffa500 !important;
    font-weight: 700;
}

.image-preview-item {
    position: relative;
    display: inline-block;
}

.image-preview-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.remove-image-btn {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4757;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
}

.remove-image-btn:hover {
    background: #ff3742;
    transform: scale(1.1);
}

.no-ads-message {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 2px dashed rgba(255, 255, 255, 0.2);
}

.no-ads-message i {
    font-size: 3rem;
    color: #ffa500;
    margin-bottom: 1rem;
}

.no-ads-message h5 {
    color: #fff;
    margin: 0 0 0.5rem 0;
}

.no-ads-message p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 1.5rem 0;
}

/* Responsive Design für Profile Edit Modal */
@media (max-width: 768px) {
    .profile-edit-modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .profile-edit-modal .form-actions {
        flex-direction: column;
    }
    
    .profile-edit-modal .form-actions button {
        width: 100%;
    }
}

/* Verbesserte Message Notifications */
.message-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.message-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.message-success .message-content {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.9) 0%, rgba(22, 163, 74, 0.9) 100%);
    border-color: rgba(34, 197, 94, 0.3);
}

.message-error .message-content {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.9) 0%, rgba(220, 38, 38, 0.9) 100%);
    border-color: rgba(239, 68, 68, 0.3);
}

.message-info .message-content {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9) 0%, rgba(37, 99, 235, 0.9) 100%);
    border-color: rgba(59, 130, 246, 0.3);
}

.message-warning .message-content {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.9) 0%, rgba(217, 119, 6, 0.9) 100%);
    border-color: rgba(245, 158, 11, 0.3);
}

.message-icon {
    font-size: 1.25rem;
    color: #ffffff;
    flex-shrink: 0;
}

.message-text {
    color: #ffffff;
    font-weight: 500;
    flex: 1;
    line-height: 1.4;
}

.message-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.message-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* File Upload Styles */
.file-upload-area {
    border: 2px dashed rgba(255, 165, 0, 0.5);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    background: rgba(30, 30, 30, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.file-upload-area:hover {
    border-color: #ffa500;
    background: rgba(255, 165, 0, 0.1);
}

.file-upload-area i {
    font-size: 2rem;
    color: #ffa500;
    margin-bottom: 0.5rem;
    display: block;
}

.file-upload-area p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.file-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}


.file-preview-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.file-preview-item:hover {
    transform: scale(1.02);
    border-color: #ffa500;
}

.file-preview-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    border-radius: 6px;
}

.remove-file {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(239, 68, 68, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
    transition: all 0.2s ease;
    z-index: 10;
}

.remove-file:hover {
    background: #dc2626;
    transform: scale(1.1);
}

/* File Preview Container */
.file-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
@media (max-width: 768px) {
    .file-upload-area {
        padding: 1.5rem;
    }
    
    .file-upload-area i {
        font-size: 1.5rem;
    }
    
    .file-preview {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 0.75rem;
    }
    
    .file-preview-item img {
        height: 120px;
    }
}

/* Responsive Design für Messages */
@media (max-width: 768px) {
    .message-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .message-content {
        padding: 0.875rem 1rem;
    }
    
    .message-text {
        font-size: 0.9rem;
    }
}
    padding: 1rem;
    background: rgba(30, 30, 30, 0.8);
    border-radius: 15px;
    margin-bottom: 1rem;
    border: 2px solid rgba(255, 165, 0, 0.2);
    transition: all 0.3s ease;
}

.favorite-item:hover {
    border-color: rgba(255, 165, 0, 0.5);
    transform: translateY(-2px);
}

.favorite-item-info {
    flex: 1;
}

.favorite-item-info h4 {
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.favorite-item-info p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

.favorite-item-actions {
    display: flex;
    gap: 0.5rem;
}

.favorite-item-actions .btn-small {
    padding: 6px 12px;
    font-size: 0.8rem;
}

.no-favorites {
    text-align: center;
    padding: 3rem 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.no-favorites i {
    font-size: 4rem;
    color: rgba(255, 165, 0, 0.3);
    margin-bottom: 1rem;
}

.no-favorites h4 {
    color: #ffffff;
    margin: 1rem 0;
    font-size: 1.2rem;
}

.no-favorites p {
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* Success Message */
.success-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(45deg, #4caf50, #45a049);
    color: #ffffff;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    font-weight: 600;
    z-index: 10000;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: successMessageSlide 0.5s ease-out;
    max-width: 400px;
    text-align: center;
}

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

/* Error Message */
.error-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(45deg, #f44336, #d32f2f);
    color: #ffffff;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    font-weight: 600;
    z-index: 10000;
    box-shadow: 0 10px 30px rgba(244, 67, 54, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: errorMessageSlide 0.5s ease-out;
    max-width: 400px;
    text-align: center;
}

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

/* Kontakt Modal Styles */
.contact-step {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.service-selection h4,
.time-selection h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
}

.time-selection-subtitle {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.service-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-option {
    background: rgba(30, 30, 30, 0.8);
    border: 2px solid rgba(255, 165, 0, 0.3);
    border-radius: 15px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(255, 165, 0, 0.3);
    min-height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    user-select: none;
}

.service-option:hover {
    border-color: rgba(255, 165, 0, 0.6);
    transform: translateY(-2px);
}

.service-option.selected {
    border-color: #ffa500;
    background: rgba(255, 165, 0, 0.1);
}

.service-option h5 {
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
}

.service-option p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

.time-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.time-option {
    position: relative;
}

.time-option input[type="radio"] {
    display: none;
}

.time-option label {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(30, 30, 30, 0.9);
    border: 2px solid rgba(255, 165, 0, 0.3);
    border-radius: 18px;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #ffffff;
    min-height: 80px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(255, 165, 0, 0.3);
    user-select: none;
}

.time-option label:hover {
    border-color: rgba(255, 165, 0, 0.7);
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(255, 165, 0, 0.3);
    background: rgba(40, 40, 40, 0.95);
}

.time-option input[type="radio"]:checked + label {
    border-color: #ffa500;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.15) 0%, rgba(255, 140, 0, 0.1) 100%);
    box-shadow: 0 4px 20px rgba(255, 165, 0, 0.4);
    transform: translateY(-2px);
}

.time-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 165, 0, 0.15);
    border-radius: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.time-option input[type="radio"]:checked + label .time-icon-wrapper {
    background: rgba(255, 165, 0, 0.3);
    transform: scale(1.1);
}

.time-icon-wrapper i {
    color: #ffa500;
    font-size: 1.5rem;
}

.time-label-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.time-label-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
}

.time-label-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.2;
}

.time-option input[type="radio"]:checked + label .time-label-desc {
    color: rgba(255, 255, 255, 0.8);
}

.time-option i {
    color: #ffa500;
    font-size: 1.2rem;
}

.confirmation {
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    color: #4caf50;
    margin-bottom: 1rem;
}

.confirmation h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.confirmation p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.booking-details {
    background: rgba(30, 30, 30, 0.8);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 165, 0, 0.3);
}

.booking-details h5 {
    color: #ffa500;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
}

.booking-details p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0.5rem 0;
}

.waiting {
    text-align: center;
}

.loading-animation {
    margin-bottom: 2rem;
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.loading-dots span {
    width: 12px;
    height: 12px;
    background: #ffa500;
    border-radius: 50%;
    animation: loadingDots 1.5s infinite ease-in-out;
}

.loading-dots span:nth-child(1) { animation-delay: 0s; }
.loading-dots span:nth-child(2) { animation-delay: 0.3s; }
.loading-dots span:nth-child(3) { animation-delay: 0.6s; }

@keyframes loadingDots {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.waiting h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.waiting-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.waiting-progress {
    margin-top: 2rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(45deg, #ffa500, #ff8c00);
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 0%;
}

.progress-text {
    color: #ffa500;
    font-weight: 600;
    font-size: 1rem;
}

.ready-to-start {
    text-align: center;
}

.ready-icon {
    font-size: 4rem;
    color: #ffa500;
    margin-bottom: 1rem;
}

.ready-to-start h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.ready-to-start p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 1rem;
}

.contact-navigation button {
    flex: 1;
    max-width: 150px;
}

/* Typing Animation Styles */
.typing-modal-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 40px;
    min-width: 300px;
    text-align: center;
}

.typing-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.typing-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px;
    width: fit-content;
}

.typing-indicator.hidden {
    display: none;
}

.dot {
    width: 10px;
    height: 10px;
    background: #999;
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

.confirmation {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 20px 30px;
    background: #10b981;
    color: white;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    animation: slideIn 0.5s ease-out;
}

.confirmation.show {
    display: flex;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #10b981;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Model Confirmation Styles */
.model-confirmation {
    text-align: center;
    padding: 2rem;
}

.confirmation-icon {
    font-size: 4rem;
    color: #4caf50;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.model-confirmation h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.model-confirmation p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.confirmation-details {
    background: rgba(76, 175, 80, 0.1);
    border: 2px solid rgba(76, 175, 80, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-size: 1rem;
}

.detail-item i {
    color: #4caf50;
    width: 20px;
}

.detail-item strong {
    color: #4caf50;
}

/* Model No Time Styles */
.model-no-time {
    text-align: center;
    padding: 2rem;
}

.no-time-icon {
    font-size: 4rem;
    color: #ff9800;
    margin-bottom: 1rem;
    animation: shake 2s infinite;
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}

.model-no-time h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.model-no-time p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.no-time-details {
    background: rgba(255, 152, 0, 0.1);
    border: 2px solid rgba(255, 152, 0, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.no-time-details .detail-item i {
    color: #ff9800;
}

.no-time-details .detail-item strong {
    color: #ff9800;
}

.no-time-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.no-time-options button {
    flex: 1;
    min-width: 200px;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

/* Service Categories Checkbox Styles */
.service-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 12px;
    margin-top: 0.5rem;
}

.category-option {
    position: relative;
}

.category-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.category-option label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.category-option label:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 165, 0, 0.35);
    transform: translateY(-1px);
}

.category-option input[type="checkbox"]:checked + label {
    background: rgba(255, 165, 0, 0.12);
    border-color: #ffa500;
    color: #ffffff;
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.18);
}

.category-option label i {
    font-size: 1rem;
    color: #ffa500;
    width: 18px;
    text-align: center;
}

.category-option input[type="checkbox"]:checked + label i {
    color: #ffa500;
    animation: pulse 1s ease-in-out;
}

.field-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: block;
}

/* Kontakt Modal Styles */
.contact-step {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.service-selection h4,
.time-selection h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
}

.time-selection-subtitle {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.service-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-option {
    background: rgba(30, 30, 30, 0.8);
    border: 2px solid rgba(255, 165, 0, 0.3);
    border-radius: 15px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(255, 165, 0, 0.3);
    min-height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    user-select: none;
}

.service-option:hover {
    border-color: rgba(255, 165, 0, 0.6);
    transform: translateY(-2px);
}

.service-option.selected {
    border-color: #ffa500;
    background: rgba(255, 165, 0, 0.1);
}

.service-option h5 {
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
}

.service-option p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.time-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.time-option {
    position: relative;
}

.time-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.time-option label {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(30, 30, 30, 0.8);
    border: 2px solid rgba(255, 165, 0, 0.3);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.time-option label:hover {
    border-color: rgba(255, 165, 0, 0.6);
    transform: translateY(-2px);
}

.time-option input[type="radio"]:checked + label {
    border-color: #ffa500;
    background: rgba(255, 165, 0, 0.1);
}

.time-option label i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.confirmation {
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.confirmation h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.confirmation p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.booking-details {
    background: rgba(30, 30, 30, 0.8);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.booking-details h5 {
    color: #ffa500;
    margin-bottom: 1rem;
}

.booking-details p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.waiting {
    text-align: center;
}

.loading-animation {
    margin-bottom: 2rem;
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.loading-dots span {
    width: 12px;
    height: 12px;
    background: #ffa500;
    border-radius: 50%;
    animation: loadingDots 1.4s infinite ease-in-out both;
}

.loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.loading-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes loadingDots {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

.waiting h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.waiting-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.model-confirmation {
    text-align: center;
}

.confirmation-icon {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.model-confirmation h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.model-confirmation p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.confirmation-details {
    background: rgba(30, 30, 30, 0.8);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

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

.detail-item i {
    margin-right: 0.75rem;
    color: #ffa500;
    width: 20px;
    text-align: center;
}

.model-no-time {
    text-align: center;
}

.no-time-icon {
    font-size: 4rem;
    color: #ff9800;
    margin-bottom: 1rem;
}

.model-no-time h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.model-no-time p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.no-time-details {
    background: rgba(30, 30, 30, 0.8);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.no-time-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.no-time-options button {
    flex: 1;
    min-width: 200px;
}

.contact-navigation {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.contact-navigation button {
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 150px;
}

/* Hide navigation buttons in specific steps */
#contact-step-5 .contact-navigation,
#contact-step-6 .contact-navigation {
    display: none;
}

/* Token Package Popup Styles */
#token-popup {
    z-index: 99999 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.8) !important;
}

.token-popup-content {
    max-width: 500px;
    width: 90%;
    background: #2d3748;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideInUp 0.4s ease-out;
    color: white;
    position: relative;
    z-index: 10000;
}

.token-popup-header {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    color: white;
    padding: 30px;
    border-radius: 20px 20px 0 0;
    text-align: center;
}

.token-popup-header h3 {
    margin: 0 0 15px 0;
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.token-popup-header p {
    margin: 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.token-packages {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.token-package {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.token-package:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 165, 0, 0.3);
    transform: translateY(-2px);
}

.token-package input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.token-package input[type="radio"]:checked + label {
    color: #ffffff;
}

.token-package input[type="radio"]:checked ~ * {
    background: rgba(255, 165, 0, 0.1);
    border-color: #ffa500;
    box-shadow: 0 0 15px rgba(255, 165, 0, 0.2);
}

.token-package label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-weight: 600;
    cursor: pointer;
}

.token-amount {
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.token-price {
    font-size: 16px;
    font-weight: 500;
    color: #ffa500;
}

.username-section {
    padding: 0 30px 30px 30px;
}

.username-section label {
    display: block;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.username-section input {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    transition: border-color 0.3s ease;
}

.username-section input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.username-section input:focus {
    outline: none;
    border-color: #ffa500;
}

.token-popup-actions {
    padding: 0 30px 30px 30px;
    display: flex;
    gap: 15px;
}

.token-popup-actions button {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.token-popup-actions .btn-secondary {
    background: #4a5568;
    color: white;
}

.token-popup-actions .btn-secondary:hover {
    background: #718096;
}

.token-popup-actions .btn-primary {
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
    color: white;
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.3);
}

.token-popup-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 165, 0, 0.4);
}


.username-section input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.token-popup-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.token-popup-actions button {
    flex: 1;
    max-width: 200px;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

/* Appointment Modal Styles */
.appointment-modal-content {
    max-width: 600px;
    width: 90%;
    background: rgba(45, 45, 45, 0.95);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 165, 0, 0.3);
    animation: slideInUp 0.4s ease-out;
}

.appointment-modal-content .modal-header {
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
    color: #000;
    padding: 25px 30px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.appointment-modal-content .modal-header h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #000;
}

.appointment-modal-content .close {
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    color: #000;
}

.appointment-modal-content .close:hover {
    opacity: 1;
}

.appointment-body {
    padding: 30px;
    background: rgba(30, 30, 30, 0.9);
}

.appointment-info {
    margin-bottom: 25px;
    text-align: center;
}

.appointment-info p {
    margin: 0;
    font-size: 16px;
    color: #ffffff;
}

.appointment-info p strong {
    color: #ffa500;
}

.appointment-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.appointment-option {
    position: relative;
}

.appointment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.appointment-option label {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border: 2px solid rgba(255, 165, 0, 0.3);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(30, 30, 30, 0.8);
    color: #ffffff;
}

.appointment-option label:hover {
    border-color: rgba(255, 165, 0, 0.6);
    background: rgba(40, 40, 40, 0.9);
    transform: translateY(-2px);
}

.appointment-option input[type="radio"]:checked + label {
    border-color: #ffa500;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.2) 0%, rgba(255, 140, 0, 0.15) 100%);
    color: #ffa500;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

.appointment-option i {
    font-size: 20px;
    width: 24px;
    text-align: center;
    color: #ffa500;
}

.appointment-option input[type="radio"]:checked + label i {
    color: #ffa500;
}

.appointment-option span {
    font-size: 16px;
    font-weight: 500;
}

.specific-date-section {
    margin-top: 20px;
    padding: 20px;
    background: rgba(30, 30, 30, 0.8);
    border-radius: 12px;
    border: 2px solid rgba(255, 165, 0, 0.3);
}

.date-time-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #ffa500;
    font-size: 14px;
}

.input-group input[type="date"],
.input-group select {
    padding: 12px;
    border: 2px solid rgba(255, 165, 0, 0.3);
    border-radius: 8px;
    background: rgba(30, 30, 30, 0.9);
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.input-group input[type="date"]:focus,
.input-group select:focus {
    outline: none;
    border-color: #ffa500;
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.3);
}

.input-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.appointment-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 25px;
}

.appointment-actions .btn-primary {
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.appointment-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
}

.appointment-actions .btn-secondary {
    background: rgba(30, 30, 30, 0.8);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.appointment-actions .btn-secondary:hover {
    background: rgba(40, 40, 40, 0.9);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Input styles sind bereits oben definiert für appointment-modal */

/* Input focus styles sind bereits oben für appointment-modal definiert */

.appointment-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.appointment-actions button {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.appointment-actions .btn-secondary {
    background: #f3f4f6;
    color: #6b7280;
}

.appointment-actions .btn-secondary:hover {
    background: #e5e7eb;
}

.appointment-actions .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.appointment-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

/* Appointment Confirmation Modal Styles */
.confirmation-modal-content {
    max-width: 500px;
    width: 90%;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.confirmation-body {
    padding: 30px;
}

.success-icon {
    text-align: center;
    margin-bottom: 20px;
}

.success-icon i {
    font-size: 60px;
    color: #10b981;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.confirmation-message {
    text-align: center;
    margin-bottom: 25px;
}

.confirmation-message h4 {
    color: #1f2937;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.confirmation-message p {
    color: #6b7280;
    font-size: 16px;
}

.contact-method-selection {
    margin-bottom: 25px;
}

.contact-method-selection h5 {
    color: #374151;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.contact-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-option {
    position: relative;
}

.contact-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.contact-option label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #374151;
}

.contact-option label:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

.contact-option input[type="radio"]:checked + label {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.contact-option label i {
    font-size: 20px;
}

.contact-input-section {
    margin-bottom: 25px;
    animation: slideDown 0.3s ease;
}

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

.contact-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-input-group label {
    color: #374151;
    font-weight: 600;
    font-size: 14px;
}

.contact-input-group input {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: white;
}

.contact-input-group input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.input-hint {
    color: #6b7280;
    font-size: 12px;
    font-style: italic;
}

.appointment-summary {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    border-left: 4px solid #10b981;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1f2937;
    font-weight: 500;
}

.summary-item i {
    color: #10b981;
    font-size: 18px;
}

.confirmation-actions {
    display: flex;
    gap: 15px;
}

.confirmation-actions button {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.confirmation-actions .btn-secondary {
    background: #f3f4f6;
    color: #6b7280;
}

.confirmation-actions .btn-secondary:hover {
    background: #e5e7eb;
}

.confirmation-actions .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.confirmation-actions .btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.confirmation-actions .btn-primary:disabled {
    background: #d1d5db;
    color: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Responsive Design für Confirmation Modal */
@media (max-width: 768px) {
    .confirmation-modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .confirmation-body {
        padding: 20px;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .confirmation-actions {
        flex-direction: column;
    }
    
    .success-icon i {
        font-size: 50px;
    }
    
    .confirmation-message h4 {
        font-size: 20px;
    }
}

/* Model Message Step Styles */
.model-message-step {
    text-align: center;
    animation: slideInFromRight 0.5s ease;
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.model-message-icon {
    margin-bottom: 20px;
}

.model-message-icon i {
    font-size: 60px;
    color: #10b981;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.model-message-content {
    margin-bottom: 25px;
}

.model-message-content h4 {
    color: #1f2937;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.model-message-text {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.model-message-text strong {
    color: #374151;
    font-weight: 600;
}

.contact-info-display {
    background: #f8fafc;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    border-left: 4px solid #667eea;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.contact-info-display i {
    color: #667eea;
    font-size: 16px;
}

.contact-info-display span {
    color: #374151;
    font-weight: 500;
}

.contact-info-display strong {
    color: #1f2937;
    font-weight: 600;
}

.waiting-indicator {
    margin-bottom: 25px;
}

.loading-spinner {
    margin-bottom: 15px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e5e7eb;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.waiting-text {
    color: #6b7280;
    font-size: 14px;
    font-style: italic;
}

.model-message-actions {
    display: flex;
    justify-content: center;
}

.model-message-actions button {
    padding: 15px 30px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.model-message-actions button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

/* Responsive Design für Model Message Step */
@media (max-width: 768px) {
    .model-message-content h4 {
        font-size: 20px;
    }
    
    .model-message-text {
        font-size: 14px;
    }
    
    .contact-info-display {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    .model-message-icon i {
        font-size: 50px;
    }
    
    .spinner {
        width: 35px;
        height: 35px;
    }
}

/* Service Management Modal Styles */
.service-management-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.current-services h4,
.add-service-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.current-services-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 165, 0, 0.3);
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 165, 0, 0.5);
}

.service-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-name {
    font-weight: 600;
    color: #ffffff;
}

.service-details {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

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

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-danger {
    background: linear-gradient(45deg, #ff4757, #ff3742);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-danger:hover {
    background: linear-gradient(45deg, #ff3742, #ff2f3a);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 71, 87, 0.4);
}

.add-service-section {
    text-align: center;
    padding: 2rem;
    border: 2px dashed rgba(255, 165, 0, 0.3);
    border-radius: 10px;
    background: rgba(255, 165, 0, 0.05);
}

.add-service-section button {
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

/* Service Edit Modal Styles */
.service-edit-modal .form-group {
    margin-bottom: 1.5rem;
}

.service-edit-modal .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 600;
}

.service-edit-modal .form-group select,
.service-edit-modal .form-group textarea,
.service-edit-modal .form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.service-edit-modal .form-group select:focus,
.service-edit-modal .form-group textarea:focus,
.service-edit-modal .form-group input:focus {
    outline: none;
    border-color: #ffa500;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.1);
}

.service-edit-modal .form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.service-edit-modal .form-actions button {
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .service-item {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .service-actions {
        justify-content: center;
    }
    
    .service-edit-modal .form-actions {
        flex-direction: column;
    }
    
    .service-edit-modal .form-actions button {
        width: 100%;
    }
}

/* Profile Cost Display Styles */
.modal-title-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.profile-cost-info {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    padding: 12px;
    margin-top: 8px;
}

.cost-display {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
}

.cost-display i {
    color: #ffc107;
    font-size: 18px;
}

.cost-text {
    color: #ffffff;
}

.cost-explanation {
    font-size: 14px;
    color: #cccccc;
    margin-top: 4px;
    font-style: italic;
}

.btn-cost-info, .submit-cost-info {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.8;
    margin-left: 8px;
}

.btn-cost-info.paid, .submit-cost-info.paid {
    color: #ff6b6b;
    font-weight: 600;
}

.btn-cost-info.free, .submit-cost-info.free {
    color: #4ecdc4;
    font-weight: 600;
}

/* Push Purchase Modal Styles */
.push-purchase-modal-content {
    max-width: 500px;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    border: 1px solid rgba(255, 165, 0, 0.3);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.push-purchase-info {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}

.push-icon-large {
    background: linear-gradient(135deg, #ff6b6b, #ffa500);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.push-icon-large i {
    font-size: 24px;
    color: white;
}

.push-details h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.push-details p {
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.push-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #ffffff;
}

.feature-item i {
    color: #4ecdc4;
    font-size: 12px;
}

.push-cost-info {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
}

.push-cost-info .cost-display {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.push-cost-info .cost-display i {
    color: #ffc107;
    font-size: 20px;
}

.push-cost-info .current-coins {
    font-size: 14px;
    color: #cccccc;
}

.push-cost-info .current-coins strong {
    color: #4ecdc4;
}

.push-purchase-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.push-purchase-actions button {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.push-purchase-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.push-purchase-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.push-purchase-actions .btn-primary {
    background: linear-gradient(135deg, #ff6b6b, #ffa500);
    border: none;
    color: white;
}

.push-purchase-actions .btn-primary:hover {
    background: linear-gradient(135deg, #ff5252, #ff9800);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

/* Push Profile Selection Modal Styles */
.push-profile-selection-modal-content {
    max-width: 600px;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    border: 1px solid rgba(255, 165, 0, 0.3);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.profile-selection-info {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}

.selection-details h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.selection-details p {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.5;
}

.profile-list {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
}

.profile-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.profile-item:hover {
    background: rgba(255, 165, 0, 0.15);
    border-color: rgba(255, 165, 0, 0.4);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.2);
}

.profile-item.selected {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.3), rgba(255, 165, 0, 0.2));
    border: 3px solid #ffa500;
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.5), 0 4px 16px rgba(255, 165, 0, 0.3);
    transform: translateX(8px);
    animation: selectedPulse 0.5s ease-out;
}

.profile-item.selected::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(78, 205, 196, 0.5);
    z-index: 10;
}

@keyframes selectedPulse {
    0% {
        transform: translateX(8px) scale(1);
        box-shadow: 0 0 20px rgba(255, 165, 0, 0.5);
    }
    50% {
        transform: translateX(8px) scale(1.02);
        box-shadow: 0 0 30px rgba(255, 165, 0, 0.7);
    }
    100% {
        transform: translateX(8px) scale(1);
        box-shadow: 0 0 20px rgba(255, 165, 0, 0.5);
    }
}

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

.profile-thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.profile-thumbnail-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ff6b6b, #ffa500);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.profile-thumbnail-placeholder i {
    font-size: 24px;
    color: white;
}

.profile-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.profile-name {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

.profile-details {
    color: #cccccc;
    font-size: 14px;
}

.profile-id {
    color: #999999;
    font-size: 12px;
}

.select-profile-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    white-space: nowrap;
    min-width: 120px;
}

.select-profile-btn:hover {
    background: rgba(255, 165, 0, 0.2);
    border-color: #ffa500;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.3);
}

.profile-item.selected .select-profile-btn {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    border-color: #4ecdc4;
    color: white;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(78, 205, 196, 0.4);
}

.profile-item.selected .select-profile-btn:hover {
    background: linear-gradient(135deg, #44a08d, #4ecdc4);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(78, 205, 196, 0.5);
}

.no-profiles-message {
    text-align: center;
    padding: 40px 20px;
    color: #cccccc;
}

.no-profiles-message i {
    font-size: 48px;
    color: #ffa500;
    margin-bottom: 16px;
}

.no-profiles-message p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.profile-item-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b, #ffa500);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.profile-item-avatar i {
    font-size: 20px;
    color: white;
}

.profile-item-info h5 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.profile-item-info p {
    color: #cccccc;
    font-size: 12px;
    margin: 0;
}

.profile-item-categories {
    display: flex;
    gap: 4px;
    margin-top: 4px;
}

.profile-item-category {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 500;
}

.push-selection-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.push-selection-actions button {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.push-selection-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.push-selection-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.push-selection-actions .btn-primary {
    background: linear-gradient(135deg, #ff6b6b, #ffa500);
    border: none;
    color: white;
}

.push-selection-actions .btn-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, #ff5252, #ff9800);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.push-selection-actions .btn-primary:disabled {
    background: rgba(255, 255, 255, 0.1);
    color: #666;
    cursor: not-allowed;
}

/* Coin Purchase Modal Styles */
.coin-purchase-modal-content {
    max-width: 500px;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.coin-purchase-info {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}

.coin-icon-large {
    background: linear-gradient(135deg, #ffc107, #ff9800);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.coin-icon-large i {
    font-size: 24px;
    color: white;
}

.coin-details h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.coin-details p {
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.coin-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.coin-price-info {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
}

.price-display {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.price-display i {
    color: #ffc107;
    font-size: 20px;
}

.value-info {
    font-size: 14px;
    color: #cccccc;
}

.value-info strong {
    color: #4ecdc4;
}

.coin-purchase-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.coin-purchase-actions button {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.coin-purchase-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.coin-purchase-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.coin-purchase-actions .btn-primary {
    background: linear-gradient(135deg, #ffc107, #ff9800);
    border: none;
    color: white;
}

.coin-purchase-actions .btn-primary:hover {
    background: linear-gradient(135deg, #ffb300, #f57c00);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
}

/* Responsive Design für neue Modals */
@media (max-width: 768px) {
    .push-profile-selection-modal-content,
    .coin-purchase-modal-content {
        max-width: 90%;
        margin: 20px;
    }
    
    .profile-selection-info,
    .coin-purchase-info {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .push-icon-large,
    .coin-icon-large {
        align-self: center;
    }
    
    .push-selection-actions,
    .coin-purchase-actions {
        flex-direction: column;
    }
    
    .push-selection-actions button,
    .coin-purchase-actions button {
        width: 100%;
        justify-content: center;
    }
    
    .profile-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .profile-item-avatar {
        align-self: center;
    }
}

/* Responsive Design für Cost Display */
@media (max-width: 768px) {
    .modal-title-section {
        gap: 8px;
    }
    
    .profile-cost-info {
        padding: 10px;
    }
    
    .cost-display {
        font-size: 14px;
    }
    
    .cost-explanation {
        font-size: 12px;
    }
}

/* Service Management Modal Styles */
.service-management-modal {
    max-width: 900px;
    width: 95%;
}

.service-management-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.section-header h4 {
    color: #fff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-count {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-card-mini {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 1px solid #444;
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card-mini:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
    border-color: #ff6b35;
}

.service-card-mini::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
}

.service-card-mini .service-preview {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-card-mini .service-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.service-card-mini .service-info h5 {
    color: #fff;
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
}

.service-card-mini .service-info p {
    color: #aaa;
    margin: 0;
    font-size: 0.875rem;
}

.service-card-mini .service-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.service-card-mini .stat-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #aaa;
}

.service-card-mini .stat-item i {
    color: #ff6b35;
}

.service-card-mini .service-actions {
    display: flex;
    gap: 0.5rem;
}

.service-card-mini .btn-small {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    border-radius: 6px;
}

/* Empty State */
.no-services-state {
    text-align: center;
    padding: 3rem 1rem;
}

.empty-state {
    color: #aaa;
}

.empty-state i {
    font-size: 4rem;
    color: #444;
    margin-bottom: 1rem;
}

.empty-state h4 {
    color: #fff;
    margin: 0 0 0.5rem 0;
}

.empty-state p {
    margin: 0;
    color: #aaa;
}

/* Quick Actions */
.quick-actions {
    margin: 2rem 0;
}

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

.action-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 1px solid #444;
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.action-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
    border-color: #ff6b35;
}

.action-card:hover::before {
    transform: scaleX(1);
}

.action-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.action-content {
    flex: 1;
}

.action-content h4 {
    color: #fff;
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
}

.action-content p {
    color: #aaa;
    margin: 0;
    font-size: 0.875rem;
}

.action-arrow {
    color: #666;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.action-card:hover .action-arrow {
    color: #ff6b35;
    transform: translateX(4px);
}

/* Service Statistics */
.service-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 1px solid #444;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.1);
    border-color: #ff6b35;
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    margin: 0 auto 1rem auto;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.stat-label {
    font-size: 0.875rem;
    color: #aaa;
}

/* Image Upload Modal */
.image-upload-modal {
    max-width: 600px;
    width: 95%;
}

.upload-area {
    border: 2px dashed #444;
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.upload-area:hover {
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.05);
}

.upload-area.dragover {
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    transform: scale(1.02);
}

.upload-content i {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.upload-content h4 {
    color: #fff;
    margin: 0 0 0.5rem 0;
}

.upload-content p {
    color: #aaa;
    margin: 0 0 1.5rem 0;
}

.upload-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.upload-preview-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
}

.upload-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.upload-preview-item .remove-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.8);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.upload-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

/* Gallery Manager Modal */
.gallery-manager-modal {
    max-width: 1000px;
    width: 95%;
}

.gallery-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-radius: 8px;
    border: 1px solid #444;
}

.toolbar-left {
    display: flex;
    gap: 0.5rem;
}

.toolbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.selected-count {
    color: #aaa;
    font-size: 0.875rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    max-height: 500px;
    overflow-y: auto;
    padding: 1rem;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    border-radius: 8px;
    border: 1px solid #444;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.gallery-item.selected {
    border: 2px solid #ff6b35;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item .select-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 107, 53, 0.3);
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.gallery-item.selected .select-overlay {
    display: flex;
}

.gallery-item .image-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 0.5rem;
    font-size: 0.75rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

/* Gallery Button Styles */
.btn-gallery {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border: none;
    border-radius: 12px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-gallery:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-gallery:active {
    transform: translateY(0);
}

.btn-gallery-content {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    gap: 1rem;
}

.btn-gallery-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.btn-gallery-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}

.btn-gallery-title {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.btn-gallery-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.2;
}

.btn-gallery-arrow {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-gallery:hover .btn-gallery-arrow {
    color: white;
    transform: translateX(4px);
}

/* Vereinfachte Service Management Styles */
.service-management-modal {
    max-width: 800px;
    width: 95%;
}

.service-management-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Hauptaktionen */
.main-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-action-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 1px solid #444;
    border-radius: 16px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.main-action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.main-action-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.2);
    border-color: #ff6b35;
}

.main-action-card:hover::before {
    transform: scaleX(1);
}

.main-action-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.main-action-content {
    flex: 1;
}

.main-action-content h4 {
    color: #fff;
    margin: 0 0 0.5rem 0;
    font-size: 1.125rem;
    font-weight: 600;
}

.main-action-content p {
    color: #aaa;
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.4;
}

.main-action-arrow {
    color: #666;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.main-action-card:hover .main-action-arrow {
    color: #ff6b35;
    transform: translateX(6px);
}

/* Service Übersicht */
.services-overview {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid #333;
}

.overview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.overview-header h4 {
    color: #fff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
}

.stat-badge {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.services-grid-simple {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.service-item-simple {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 1px solid #444;
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
}

.service-item-simple:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
    border-color: #ff6b35;
}

.service-item-simple .service-header-simple {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.service-item-simple .service-avatar-simple {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.service-item-simple .service-info-simple h5 {
    color: #fff;
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-item-simple .service-info-simple p {
    color: #aaa;
    margin: 0;
    font-size: 0.75rem;
}

.service-item-simple .service-meta-simple {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #aaa;
    margin-bottom: 0.75rem;
}

.service-item-simple .service-actions-simple {
    display: flex;
    gap: 0.5rem;
}

.service-item-simple .btn-micro {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    border-radius: 6px;
    flex: 1;
}

/* Empty State Simple */
.no-services-simple {
    text-align: center;
    padding: 2rem;
}

.empty-state-simple {
    color: #aaa;
}

.empty-state-simple i {
    font-size: 3rem;
    color: #444;
    margin-bottom: 1rem;
}

.empty-state-simple h4 {
    color: #fff;
    margin: 0 0 0.5rem 0;
    font-size: 1.125rem;
}

.empty-state-simple p {
    margin: 0 0 1.5rem 0;
    color: #aaa;
}

/* Schnelle Statistiken */
.quick-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid #333;
}

.quick-stat {
    text-align: center;
    padding: 1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 1px solid #444;
    transition: all 0.3s ease;
}

.quick-stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.1);
    border-color: #ff6b35;
}

.quick-stat i {
    font-size: 1.5rem;
    color: #ff6b35;
    margin-bottom: 0.5rem;
    display: block;
}

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

.quick-stat label {
    font-size: 0.875rem;
    color: #aaa;
    margin: 0;
}

/* Responsive Design für neue Styles */
@media (max-width: 768px) {
    .btn-gallery-content {
        padding: 0.75rem 1rem;
        gap: 0.75rem;
    }
    
    .btn-gallery-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .btn-gallery-title {
        font-size: 0.875rem;
    }
    
    .btn-gallery-subtitle {
        font-size: 0.75rem;
    }
    
    .main-action-card {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .main-action-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .main-action-content h4 {
        font-size: 1rem;
    }
    
    .main-action-content p {
        font-size: 0.8rem;
    }
    
    .services-grid-simple {
        grid-template-columns: 1fr;
    }
    
    .quick-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

/* Optimierte Service-Karten - Kompakt und modern */
.service-card-compact {
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card-compact:hover {
    border-color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.service-info h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 4px 0;
}

.service-type {
    font-size: 0.8rem;
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 500;
}

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

.btn-compact {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.btn-compact.btn-edit {
    background: #3a3a3a;
    color: #ffffff;
}

.btn-compact.btn-edit:hover {
    background: #4a4a4a;
    color: #ff6b35;
}

.btn-compact.btn-delete {
    background: #4a1a1a;
    color: #ff6b6b;
}

.btn-compact.btn-delete:hover {
    background: #6a2a2a;
    color: #ff4444;
}

.service-card-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #888;
}

.service-id {
    font-family: 'Courier New', monospace;
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 6px;
    border-radius: 4px;
}

.service-date {
    color: #aaa;
}

.service-description {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.4;
    margin: 4px 0;
}

.service-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 8px;
}

.category-tag {
    font-size: 0.75rem;
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    padding: 2px 6px;
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

/* Kompaktes Modal */
.modal-compact .modal-content {
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-compact .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.modal-compact .form-group {
    margin-bottom: 16px;
}

.modal-compact .form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}

.modal-compact select,
.modal-compact textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    background: #2a2a2a;
    color: #ffffff;
    font-size: 0.9rem;
}

.modal-compact textarea {
    resize: vertical;
    min-height: 80px;
}

.modal-compact .image-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 8px;
    margin: 12px 0;
}

.modal-compact .image-grid-compact .image-item {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.modal-compact .image-grid-compact .image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-compact .image-upload-compact {
    display: flex;
    gap: 12px;
    align-items: center;
}

.modal-compact .image-upload-compact input[type="file"] {
    flex: 1;
    padding: 8px;
    border: 1px dashed #3a3a3a;
    border-radius: 8px;
    background: transparent;
    color: #ffffff;
}

.modal-compact .form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #3a3a3a;
}

.modal-compact .btn-small {
    padding: 8px 12px;
    font-size: 0.85rem;
}

/* Responsive Design für kompakte Service-Karten */
@media (max-width: 768px) {
    .service-card-compact {
        padding: 12px;
    }
    
    .service-card-header {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .service-actions {
        align-self: flex-end;
    }
    
    .service-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .modal-compact .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .modal-compact .form-actions {
        flex-direction: column;
    }
}

/* Service Selection Modal Styles */
.service-selection-content {
    padding: 20px 0;
}

.selection-description {
    color: #ccc;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.service-selection-item {
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.service-selection-item:hover {
    border-color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

.service-selection-item.selected {
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
}

.service-selection-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.service-selection-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.service-selection-type {
    font-size: 0.8rem;
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 500;
}

.service-selection-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-selection-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #888;
}

.service-selection-id {
    font-family: 'Courier New', monospace;
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 6px;
    border-radius: 4px;
}

.service-selection-date {
    color: #aaa;
}

.service-selection-description {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.4;
    margin: 4px 0;
}

.service-selection-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 8px;
}

.service-selection-category-tag {
    font-size: 0.75rem;
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    padding: 2px 6px;
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.service-selection-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #3a3a3a;
}

.service-selection-actions .btn-primary {
    flex: 1;
    padding: 8px 12px;
    font-size: 0.9rem;
}

.service-selection-actions .btn-secondary {
    flex: 1;
    padding: 8px 12px;
    font-size: 0.9rem;
}

.no-services-message {
    text-align: center;
    padding: 40px 20px;
}

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.empty-state i {
    font-size: 3rem;
    color: #666;
}

.empty-state h4 {
    color: #ccc;
    margin: 0;
}

.empty-state p {
    color: #888;
    margin: 0;
}

/* Responsive Design für Service Selection */
@media (max-width: 768px) {
    .service-selection-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .service-selection-item {
        padding: 12px;
    }
    
    .service-selection-header {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .service-selection-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .service-selection-actions {
        flex-direction: column;
    }
}

/* Service Details Modal Styles */
.service-details-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #3a3a3a;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row label {
    font-weight: 600;
    color: #ff6b35;
    min-width: 120px;
}

.detail-row span {
    color: #ccc;
    text-align: right;
    flex: 1;
}

.service-details-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #3a3a3a;
}

.service-details-actions .btn-primary,
.service-details-actions .btn-secondary {
    padding: 10px 16px;
    font-size: 0.9rem;
}

/* Responsive Design für Service Details */
@media (max-width: 768px) {
    .detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .detail-row label {
        min-width: auto;
    }
    
    .detail-row span {
        text-align: left;
    }
    
    .service-details-actions {
        flex-direction: column;
    }
}

/* ========================================
   AFFILIATE SYSTEM - 3D CARTOON STYLE
   ======================================== */

/* Footer */
.site-footer {
    position: relative;
    z-index: 100;
}

.affiliate-footer-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 179, 0, 0.6);
}

/* Pulse Animation für Level Badge */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ========================================
   AFFILIATE EXPLANATION - 3D CARTOON STYLE
   ======================================== */

/* 3D Card Hover Effects */
.explanation-card-3d {
    transition: all 0.3s ease;
    position: relative;
}

.explanation-card-3d:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8) !important;
}

/* Progressbar Animation */
#demo-progress {
    animation: progressGlow 2s ease-in-out infinite;
}

@keyframes progressGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 179, 0, 0.6);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 179, 0, 0.9);
    }
}

/* Level Cards Hover Effect */
.explanation-card-3d > div[style*="grid-template-columns"] > div[style*="border-radius: 15px"] {
    transition: all 0.3s ease;
    cursor: pointer;
}

.explanation-card-3d > div[style*="grid-template-columns"] > div[style*="border-radius: 15px"]:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6) !important;
}

/* Coin Calculation Cards Hover */
.explanation-card-3d > div[style*="grid-template-columns"] > div[style*="text-align: center"] {
    transition: all 0.3s ease;
}

.explanation-card-3d > div[style*="grid-template-columns"] > div[style*="text-align: center"]:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5) !important;
}

/* Summary Cards Hover */
.explanation-card-3d > div[style*="grid-template-columns"] > div[style*="border-radius: 12px"] {
    transition: all 0.3s ease;
}

.explanation-card-3d > div[style*="grid-template-columns"] > div[style*="border-radius: 12px"]:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6) !important;
}

/* Icon Animations */
.explanation-card-3d div[style*="font-size: 3rem"] {
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design für Affiliate Explanation */
@media (max-width: 768px) {
    .affiliate-explanation-3d {
        padding: 1rem !important;
    }
    
    .explanation-card-3d {
        padding: 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .explanation-card-3d h4 {
        font-size: 1.1rem !important;
    }
    
    .explanation-card-3d > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
    
    .explanation-card-3d > div[style*="grid-template-columns"] > div[style*="font-size: 2rem"] {
        display: none !important; /* Verstecke Pfeile auf Mobile */
    }
}

/* ========================================
   MOBILE OPTIMIERUNG - AFFILIATE DASHBOARD
   ======================================== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    #affiliate-dashboard-modal .modal-content {
        margin: 1% auto;
        padding: 1.5rem;
        max-width: 95%;
    }
    
    .affiliate-stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
    }
    
    .charts-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Mobile Landscape & Portrait (max-width: 768px) */
@media (max-width: 768px) {
    /* Modal Anpassungen */
    #affiliate-dashboard-modal .modal-content {
        margin: 0;
        padding: 1rem;
        max-width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }
    
    /* Header */
    #affiliate-dashboard-modal h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    #affiliate-dashboard-modal h2 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    /* Stats Grid - 2 Spalten */
    .affiliate-stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem;
    }
    
    .stat-card-3d {
        padding: 1rem !important;
    }
    
    .stat-icon {
        font-size: 2rem !important;
    }
    
    .stat-value {
        font-size: 1.8rem !important;
    }
    
    .stat-label {
        font-size: 0.75rem !important;
    }
    
    /* Streak Container */
    .streak-container-3d {
        padding: 1rem !important;
    }
    
    .streak-current-level {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .level-badge-3d {
        width: 100px !important;
        height: 100px !important;
    }
    
    .level-number {
        font-size: 2.5rem !important;
    }
    
    .multiplier-display-3d {
        padding: 1rem 1.5rem !important;
    }
    
    .multiplier-value {
        font-size: 2rem !important;
    }
    
    /* Daily Stats - kompakter */
    .streak-daily-stats {
        gap: 0.25rem !important;
        margin: 1rem 0 !important;
    }
    
    .aff-daily-card-3d {
        padding: 0.5rem 0.25rem !important;
        border-radius: 10px !important;
    }
    
    .day-label {
        font-size: 0.6rem !important;
    }
    
    .day-count {
        font-size: 1rem !important;
        margin: 0.25rem 0 !important;
    }
    
    .day-status {
        font-size: 0.9rem !important;
    }
    
    /* Requirements */
    .streak-requirements {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .requirement-card-3d {
        min-width: 100% !important;
        padding: 1rem 1.5rem !important;
    }
    
    .req-value {
        font-size: 2rem !important;
    }
    
    .requirement-arrow {
        transform: rotate(90deg);
        font-size: 1.5rem !important;
    }
    
    /* Link Section */
    .affiliate-links-section .section-header {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    
    .btn-primary-3d {
        width: 100%;
        justify-content: center;
    }
    
    .link-card-3d {
        padding: 1rem !important;
    }
    
    .link-url input {
        font-size: 0.75rem !important;
        padding: 0.5rem !important;
    }
    
    .link-stats {
        gap: 0.5rem !important;
    }
    
    .link-stat .stat-value {
        font-size: 1.2rem !important;
    }
    
    /* Charts */
    .charts-grid {
        grid-template-columns: 1fr !important;
    }
    
    .chart-container-3d {
        padding: 1rem !important;
    }
    
    .chart-container-3d h3 {
        font-size: 1rem !important;
    }
    
    /* Tabelle - Horizontal Scroll */
    .table-container-3d {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    #aff-stats-table {
        min-width: 600px;
        font-size: 0.85rem;
    }
    
    #aff-stats-table th,
    #aff-stats-table td {
        padding: 0.5rem !important;
        white-space: nowrap;
    }
    
    /* Modal Actions */
    .modal-actions {
        flex-direction: column !important;
    }
    
    .modal-actions button {
        width: 100%;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    /* Stats Grid - 1 Spalte */
    .affiliate-stats-grid {
        grid-template-columns: 1fr !important;
    }
    
    .stat-card-3d {
        padding: 0.75rem !important;
    }
    
    .stat-value {
        font-size: 1.5rem !important;
    }
    
    /* Streak Badge kleiner */
    .level-badge-3d {
        width: 80px !important;
        height: 80px !important;
    }
    
    .level-number {
        font-size: 2rem !important;
    }
    
    .multiplier-value {
        font-size: 1.5rem !important;
    }
    
    /* Daily Cards noch kompakter */
    .aff-daily-card-3d {
        padding: 0.4rem 0.2rem !important;
    }
    
    .day-label {
        font-size: 0.55rem !important;
    }
    
    .day-count {
        font-size: 0.9rem !important;
    }
    
    .day-status {
        font-size: 0.8rem !important;
    }
    
    /* Requirements */
    .req-value {
        font-size: 1.8rem !important;
    }
    
    /* Link Actions vertikal */
    .link-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.5rem;
    }
    
    .link-actions {
        width: 100%;
        justify-content: flex-end;
    }
    
    /* Buttons kleiner */
    .btn-primary-3d,
    .btn-secondary-3d {
        padding: 0.6rem 1rem !important;
        font-size: 0.9rem !important;
    }
    
    /* Footer Button */
    .affiliate-footer-btn {
        padding: 0.75rem 1.5rem !important;
        font-size: 1rem !important;
    }
}

/* Touch Optimierung */
@media (hover: none) and (pointer: coarse) {
    /* Größere Touch-Targets */
    .btn-icon {
        min-width: 44px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .link-card-3d:active {
        transform: scale(0.98);
    }
    
    .stat-card-3d:active {
        transform: translateY(-5px) scale(0.98);
    }
    
    /* Scroll-Hinweis für Tabelle */
    .table-container-3d::after {
        content: '← Wische für mehr →';
        display: block;
        text-align: center;
        color: rgba(255, 179, 0, 0.6);
        font-size: 0.75rem;
        margin-top: 0.5rem;
        animation: fade-in-out 2s ease-in-out infinite;
    }
    
    @keyframes fade-in-out {
        0%, 100% { opacity: 0.3; }
        50% { opacity: 1; }
    }
}

/* Modal Overlay Fixes */
.modal {
    animation: fadeIn 0.3s ease-in-out;
}

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

.modal.show .modal-content {
    animation: slideIn 0.3s ease-out;
}

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

/* Scrollbar Styling für Modal */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: rgba(255, 179, 0, 0.5);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 179, 0, 0.7);
}

/* Button Hover Effects */
.btn-primary-3d:hover,
.affiliate-footer-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 179, 0, 0.6);
}

.btn-primary-3d:active,
.affiliate-footer-btn:active {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(255, 179, 0, 0.4);
}

/* Link Card Hover */
.link-card-3d {
    transition: all 0.3s ease;
}

.link-card-3d:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 179, 0, 0.3);
}

/* Stat Card Hover */
.stat-card-3d {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.stat-card-3d::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 179, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.stat-card-3d:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 179, 0, 0.3);
}

.stat-card-3d:hover::before {
    opacity: 1;
}

/* Daily Card Completed State */
.aff-daily-card-3d.completed {
    background: linear-gradient(145deg, #4caf50 0%, #2e7d32 100%) !important;
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4) !important;
    transform: translateY(-5px);
}

/* Grace Warning Animation */
.grace-period-warning {
    animation: warning-pulse 1.5s ease-in-out infinite;
}

@keyframes warning-pulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(255, 107, 107, 0.5); }
    50% { box-shadow: 0 10px 40px rgba(255, 107, 107, 0.8); }
}

/* Table Styling */
#aff-stats-table tbody tr {
    border-bottom: 1px solid rgba(255, 179, 0, 0.1);
    transition: background 0.2s;
}

#aff-stats-table tbody tr:hover {
    background: rgba(255, 179, 0, 0.05);
}

#aff-stats-table td {
    padding: 0.75rem 1rem;
}

/* Loading State */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 179, 0, 0.3);
    border-radius: 50%;
    border-top-color: #ffb300;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success/Error Messages */
.affiliate-message {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    animation: slideIn 0.3s ease-out;
}

.affiliate-message.success {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.5);
    color: #4caf50;
}

.affiliate-message.error {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid rgba(244, 67, 54, 0.5);
    color: #f44336;
}

/* Print Styles */
@media print {
    .site-footer,
    .affiliate-footer-btn,
    .modal {
        display: none !important;
    }
}

/* ========================================
   COMMUNITY SYSTEM STYLES - 3D CARTOON STYLE
   ======================================== */

/* Communities Section */
.communities-section {
    padding: 120px 0 40px;
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(20px);
    min-height: 100vh;
}

.communities-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-back {
    background: rgba(45, 45, 45, 0.9);
    border: 2px solid rgba(255, 165, 0, 0.3);
    border-radius: 25px;
    padding: 12px 24px;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-back:hover {
    background: linear-gradient(45deg, #ffa500, #ff8c00);
    color: #000;
    border-color: rgba(255, 165, 0, 0.8);
    transform: translateY(-2px);
    box-shadow: 
        0 12px 35px rgba(255, 165, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Community Filters */
.community-filters {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.community-filters .filter-btn {
    padding: 12px 20px;
    border: 2px solid rgba(255, 165, 0, 0.3);
    border-radius: 25px;
    background: rgba(45, 45, 45, 0.8);
    color: #ffffff;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.community-filters .filter-btn:hover,
.community-filters .filter-btn.active {
    background: linear-gradient(45deg, #ffa500, #ff8c00);
    color: #000;
    border-color: rgba(255, 165, 0, 0.8);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(255, 165, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Community Grid */
.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Community Card */
.community-card {
    background: rgba(45, 45, 45, 0.9);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 165, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.community-card:hover::before {
    left: 100%;
}

.community-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 165, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 165, 0, 0.5);
}

.community-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.community-card-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    flex: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.community-access-badge {
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #000;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
    white-space: nowrap;
}

.community-access-badge.free {
    background: linear-gradient(45deg, #43e97b, #38f9d7);
}

.community-access-badge.coins {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
}

.community-access-badge.request {
    background: linear-gradient(45deg, #4facfe, #00f2fe);
}

.community-card-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.community-bio {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.community-stats {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.community-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.community-creator {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

/* Community Detail View */
.community-detail-section {
    padding: 120px 0 40px;
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(20px);
    min-height: 100vh;
}

.community-detail-header {
    margin-bottom: 2rem;
}

.community-detail-card {
    background: rgba(45, 45, 45, 0.9);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 165, 0, 0.2);
    margin-bottom: 2rem;
}

.community-detail-card h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.community-detail-bio {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.community-price-info {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 193, 7, 0.15));
    border: 2px solid rgba(255, 215, 0, 0.5);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    color: #ffd700;
    box-shadow: 
        0 4px 15px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.community-price-info i {
    font-size: 1.3rem;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.5));
}

.community-price-info strong {
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.community-detail-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.community-detail-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.community-detail-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-danger {
    background: linear-gradient(45deg, #f44336, #d32f2f);
    color: #ffffff;
    border: 2px solid rgba(244, 67, 54, 0.3);
    border-radius: 25px;
    padding: 12px 24px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 
        0 8px 25px rgba(244, 67, 54, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-danger:hover {
    background: linear-gradient(45deg, #d32f2f, #b71c1c);
    border-color: rgba(244, 67, 54, 0.8);
    transform: translateY(-2px);
    box-shadow: 
        0 12px 35px rgba(244, 67, 54, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Community Posts Grid */
.community-posts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

@media (max-width: 1400px) {
    .community-posts-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 1200px) {
    .community-posts-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 900px) {
    .community-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .community-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .community-posts-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

/* Community Post Card */
.community-post-card {
    background: rgba(45, 45, 45, 0.9);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 165, 0, 0.2);
    transition: all 0.3s ease;
}

.community-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 165, 0, 0.2);
    border-color: rgba(255, 165, 0, 0.5);
}

.post-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    position: relative;
}

.post-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    pointer-events: none;
}

.post-image-container:hover::after {
    background: rgba(0, 0, 0, 0.1);
}

.post-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.post-image-container:hover img {
    transform: scale(1.05);
}

.post-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.post-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.post-actions {
    display: flex;
    gap: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.post-like-btn,
.post-comment-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 8px 16px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 500;
}

.post-like-btn:hover:not(:disabled) {
    background: rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.5);
    transform: scale(1.05);
}

.post-like-btn.liked {
    background: rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.6);
    color: #ff6b35;
    cursor: not-allowed;
}

.post-like-btn.liked i.fa-heart {
    color: #ff6b35 !important;
}

.post-comment-btn:hover {
    background: rgba(79, 172, 254, 0.2);
    border-color: rgba(79, 172, 254, 0.5);
    transform: scale(1.05);
}

/* Post Comments */
.post-comments {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 0;
    padding-right: 0;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
    max-height: 400px;
    overflow-y: auto;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    padding-right: 0.25rem;
}

.comments-list.comments-collapsed {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-bottom: 0;
}

.comments-list.comments-expanded {
    max-height: 400px;
    opacity: 1;
}

/* Scrollbar für Kommentare */
.comments-list::-webkit-scrollbar {
    width: 6px;
}

.comments-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.comments-list::-webkit-scrollbar-thumb {
    background: rgba(255, 165, 0, 0.3);
    border-radius: 10px;
}

.comments-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 165, 0, 0.5);
}

.comments-toggle-header {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    transition: all 0.2s;
    border: 1px solid rgba(255, 165, 0, 0.2);
    font-size: 0.85rem;
    font-weight: 500;
}

.comments-toggle-header:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255, 165, 0, 0.4);
    transform: translateY(-1px);
}

.comments-toggle-header .comments-arrow {
    font-size: 0.9rem !important;
    color: rgba(255, 165, 0, 0.8) !important;
}

.comment-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 0.75rem;
    border-left: 3px solid rgba(255, 165, 0, 0.6);
    margin-bottom: 0.75rem;
    transition: all 0.2s;
}

.comment-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-left-color: rgba(255, 165, 0, 0.8);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.comment-author-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.comment-item strong {
    color: #ffa500;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.375rem;
    line-height: 1.3;
    font-weight: 600;
}

.comment-role-badge {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.comment-role-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4) !important;
}

.roles-button {
    transition: all 0.2s ease;
}

.roles-button:hover {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.3), rgba(255, 140, 0, 0.3)) !important;
    border-color: rgba(255, 165, 0, 0.6) !important;
    transform: scale(1.05);
}

.comment-date {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
}

.comment-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.225rem;
    margin: 0.125rem 0 0 0;
    line-height: 1.4;
}

.comment-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    margin: 0.375rem 0;
    line-height: 1.5;
}

.comment-item small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    display: block;
    margin-top: 0.375rem;
}

.comment-input {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.comment-input input {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 10px 16px;
    color: #ffffff;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.comment-input input:focus {
    outline: none;
    border-color: rgba(255, 165, 0, 0.6);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 2px rgba(255, 165, 0, 0.2);
}

.comment-input input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.comment-input button {
    background: linear-gradient(45deg, #ffa500, #ff8c00);
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    color: #000;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

.comment-input button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
}

/* Post Modal Styles */
.post-modal-content {
    background: rgba(30, 30, 30, 0.98);
    border-radius: 20px;
    max-width: 95vw;
    width: 1200px;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 165, 0, 0.3);
}

.post-modal-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    height: 100%;
    max-height: 90vh;
}

.post-modal-left {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(45, 45, 45, 0.5);
}

.post-modal-right {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: rgba(40, 40, 40, 0.5);
}

.post-modal-image-container {
    width: 100%;
    max-height: 50vh;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}

.post-modal-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: rgba(0, 0, 0, 0.3);
}

.post-modal-content-section {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.post-modal-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.post-modal-author i {
    color: #ffa500;
    font-size: 1.1rem;
}

.post-modal-author strong {
    color: #ffa500;
    font-size: 1rem;
}

.post-creator-badge {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
}

.post-delete-btn-modal {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid #f44336;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s;
    font-weight: 500;
}

.post-delete-btn-modal:hover {
    background: rgba(244, 67, 54, 0.4);
}

.post-modal-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.post-modal-meta {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-modal-actions {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.post-like-btn-modal,
.post-comment-btn-modal {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 0.75rem 1.25rem;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.post-like-btn-modal:hover:not(:disabled) {
    background: rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.5);
}

.post-like-btn-modal.liked {
    background: rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.6);
    color: #ff6b35;
    cursor: not-allowed;
}

.post-like-btn-modal.liked i.fa-heart {
    color: #ff6b35 !important;
}

.post-like-btn-modal.liked i.fa-heart {
    color: #ff6b35 !important;
}
    background: rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.6);
    color: #ff6b35;
    cursor: not-allowed;
}

.post-modal-comments-section {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.post-modal-comments-list {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 1rem;
    padding-right: 0.5rem;
}

.post-modal-comments-list::-webkit-scrollbar {
    width: 6px;
}

.post-modal-comments-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.post-modal-comments-list::-webkit-scrollbar-thumb {
    background: rgba(255, 165, 0, 0.3);
    border-radius: 10px;
}

.post-modal-comments-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 165, 0, 0.5);
}

.post-modal-comment-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 1rem;
    border-left: 3px solid rgba(255, 165, 0, 0.6);
    margin-bottom: 0.75rem;
}

.post-modal-comment-item strong {
    color: #ffa500;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.post-modal-comment-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin: 0.5rem 0;
    line-height: 1.5;
}

.post-modal-comment-item small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    display: block;
    margin-top: 0.5rem;
}

/* Badge System Styling */

.comment-user-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.comment-username {
    transition: all 0.2s;
}

.comment-username:hover {
    text-shadow: 0 0 8px rgba(255, 165, 0, 0.6);
    transform: scale(1.05);
}

.comment-badges {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.badge-icon {
    display: inline-block;
    font-size: 1rem;
    line-height: 1;
    transition: all 0.3s;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transform: perspective(500px) rotateY(0deg);
    cursor: pointer;
}

.badge-icon:hover {
    transform: perspective(500px) rotateY(15deg) scale(1.2);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 8px currentColor);
}

/* Badge Tooltip (Discord-Style) */
.badge-tooltip {
    position: fixed;
    background: rgba(30, 30, 30, 0.98);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 165, 0, 0.4);
    border-radius: 12px;
    padding: 1rem;
    min-width: 250px;
    max-width: 350px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(255, 165, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 10000;
    pointer-events: auto;
    animation: tooltipFadeIn 0.2s ease-out;
}

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

.badge-tooltip-header {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffa500;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 165, 0, 0.2);
    text-shadow: 0 0 8px rgba(255, 165, 0, 0.4);
}

.badge-tooltip-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badge-tooltip-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all 0.2s;
}

.badge-tooltip-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.badge-tooltip-icon {
    font-size: 1.5rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
    transform: perspective(300px) rotateY(-5deg);
}

.badge-tooltip-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    flex: 1;
}

/* 3D Badge Effects */
.badge-wood {
    filter: drop-shadow(0 2px 4px rgba(139, 69, 19, 0.5)) drop-shadow(0 0 4px rgba(139, 69, 19, 0.3));
}

.badge-stone {
    filter: drop-shadow(0 2px 4px rgba(105, 105, 105, 0.5)) drop-shadow(0 0 4px rgba(105, 105, 105, 0.3));
}

.badge-metal {
    filter: drop-shadow(0 2px 4px rgba(192, 192, 192, 0.5)) drop-shadow(0 0 4px rgba(192, 192, 192, 0.3));
}

.badge-bronze {
    filter: drop-shadow(0 2px 4px rgba(205, 127, 50, 0.5)) drop-shadow(0 0 4px rgba(205, 127, 50, 0.3));
}

.badge-silver {
    filter: drop-shadow(0 2px 4px rgba(232, 232, 232, 0.5)) drop-shadow(0 0 4px rgba(232, 232, 232, 0.3));
}

.badge-gold {
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.5)) drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
    animation: goldShine 3s ease-in-out infinite;
}

@keyframes goldShine {
    0%, 100% {
        filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.5)) drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
    }
    50% {
        filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.7)) drop-shadow(0 0 12px rgba(255, 215, 0, 0.6));
    }
}

.badge-diamond {
    filter: drop-shadow(0 2px 4px rgba(185, 242, 255, 0.5)) drop-shadow(0 0 8px rgba(185, 242, 255, 0.4));
    animation: diamondSparkle 2s ease-in-out infinite;
}

@keyframes diamondSparkle {
    0%, 100% {
        filter: drop-shadow(0 2px 4px rgba(185, 242, 255, 0.5)) drop-shadow(0 0 8px rgba(185, 242, 255, 0.4));
    }
    50% {
        filter: drop-shadow(0 2px 4px rgba(185, 242, 255, 0.8)) drop-shadow(0 0 16px rgba(185, 242, 255, 0.7));
    }
}

.badge-master {
    filter: drop-shadow(0 2px 4px rgba(255, 20, 147, 0.5)) drop-shadow(0 0 8px rgba(255, 20, 147, 0.4));
    animation: masterPulse 2s ease-in-out infinite;
}

@keyframes masterPulse {
    0%, 100% {
        filter: drop-shadow(0 2px 4px rgba(255, 20, 147, 0.5)) drop-shadow(0 0 8px rgba(255, 20, 147, 0.4));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 2px 4px rgba(255, 20, 147, 0.8)) drop-shadow(0 0 16px rgba(255, 20, 147, 0.7));
        transform: scale(1.1);
    }
}

/* Badge Info Modal */
.badge-info-modal-content {
    background: rgba(45, 45, 45, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border: 2px solid rgba(255, 165, 0, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    position: relative;
}

.badge-info-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.badge-info-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.badge-info-modal-content h2 {
    color: #ffa500;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.badge-info-categories {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.badge-info-category {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 165, 0, 0.2);
}

.badge-info-category h3 {
    color: #ffa500;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-info-ranks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.badge-info-rank-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.2s;
}

.badge-info-rank-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

/* Erreichte Badges grün markieren – gut sichtbarer Fortschritt */
.badge-info-rank-item--achieved {
    background: rgba(76, 175, 80, 0.2);
    border-color: rgba(76, 175, 80, 0.6);
    box-shadow: 0 0 0 1px rgba(76, 175, 80, 0.3);
}

.badge-info-rank-item--achieved:hover {
    background: rgba(76, 175, 80, 0.28);
    border-color: rgba(76, 175, 80, 0.8);
}

.badge-info-rank-item--achieved .badge-info-rank-details strong {
    color: #81c784;
}

.badge-info-rank-item--achieved .badge-info-rank-details span {
    color: rgba(255, 255, 255, 0.85);
}

.badge-info-achieved-check {
    margin-left: auto;
    color: #4caf50;
    font-size: 1.25rem;
}

.badge-info-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.badge-info-rank-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.badge-info-rank-details strong {
    color: #fff;
    font-size: 1rem;
}

.badge-info-rank-details span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* User Badges Section */
.user-badges-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 165, 0, 0.2);
}

.user-badges-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 165, 0, 0.2);
    overflow: visible;
    box-sizing: border-box;
}

.user-badges-container h3 {
    color: #ffa500;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    overflow: visible;
    box-sizing: border-box;
}

.badge-row-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 120px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.badge-row-icons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.badge-icon-small {
    font-size: 1.2rem;
    line-height: 1;
    transition: all 0.2s;
    cursor: pointer;
}

.badge-icon-achieved {
    opacity: 1.0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.badge-icon-achieved:hover {
    transform: scale(1.15);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.badge-icon-locked {
    opacity: 0.35;
    filter: grayscale(0.5) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.badge-row-progress {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    min-width: 80px;
    text-align: right;
}

/* Mobile Responsive Styles for Badges */
@media (max-width: 768px) {
    .user-badges-container {
        padding: 1rem !important;
    }
    
    .user-badges-container h3 {
        font-size: 1.1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .badge-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 0.75rem;
    }
    
    .badge-row-label {
        min-width: auto;
        width: 100%;
        font-size: 0.9rem;
    }
    
    .badge-row-icons {
        width: 100%;
        flex-wrap: wrap;
        gap: 0.4rem;
        justify-content: flex-start;
        overflow: visible;
    }
    
    .badge-icon-small {
        font-size: 1rem !important;
        flex-shrink: 0;
    }
    
    .badge-row-progress {
        width: 100%;
        text-align: left;
        margin-top: 0.25rem;
        min-width: auto;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .user-badges-container {
        padding: 0.75rem !important;
    }
    
    .user-badges-container h3 {
        font-size: 1rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .badge-row {
        padding: 0.5rem;
        gap: 0.5rem;
    }
    
    .badge-row-label {
        font-size: 0.85rem;
    }
    
    .badge-row-label i {
        font-size: 0.9rem !important;
    }
    
    .badge-icon-small {
        font-size: 0.9rem !important;
    }
    
    .badge-row-icons {
        gap: 0.3rem;
    }
    
    .badge-row-progress {
        font-size: 0.75rem;
    }
    
    /* Badge Info Modal Mobile */
    .badge-info-modal-content {
        padding: 1rem !important;
        width: 95% !important;
        max-height: 95vh !important;
    }
    
    .badge-info-modal-content h2 {
        font-size: 1.3rem !important;
    }
    
    .badge-info-category {
        padding: 1rem !important;
    }
    
    .badge-info-category h3 {
        font-size: 1rem !important;
    }
    
    .badge-info-ranks {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }
    
    .badge-info-rank-item {
        padding: 0.5rem !important;
    }
    
    .badge-info-icon {
        font-size: 1.2rem !important;
    }
}

/* Invitation Link Modal */
.invitation-link-modal-content {
    background: rgba(45, 45, 45, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    border: 2px solid rgba(255, 165, 0, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    position: relative;
}

.invitation-link-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.invitation-link-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.invitation-link-modal-content h2 {
    color: #ffa500;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.invitation-link-input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.invitation-link-input-group input {
    flex: 1;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 165, 0, 0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 0.9rem;
}

.invitation-link-input-group input:focus {
    outline: none;
    border-color: rgba(255, 165, 0, 0.6);
    box-shadow: 0 0 8px rgba(255, 165, 0, 0.3);
}

.invitation-link-stats {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.invitation-stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: rgba(45, 45, 45, 0.95);
    backdrop-filter: blur(20px);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 165, 0, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
}

.toast-notification.toast-show {
    opacity: 1;
    transform: translateY(0);
}

.post-modal-comment-input {
    display: flex;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    align-items: center;
}

.post-modal-comment-input input {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 12px 18px;
    color: #ffffff;
    font-size: 0.9rem;
    transition: all 0.2s;
    min-width: 0;
}

.post-modal-comment-input input:focus {
    outline: none;
    border-color: rgba(255, 165, 0, 0.6);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 2px rgba(255, 165, 0, 0.2);
}

.post-modal-comment-submit {
    background: linear-gradient(45deg, #ffa500, #ff8c00);
    border: none;
    border-radius: 20px;
    padding: 12px 20px;
    color: #000;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    white-space: nowrap;
}

.post-modal-comment-submit:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
}

@media (max-width: 1024px) {
    .post-modal-layout {
        grid-template-columns: 1fr;
        max-height: 95vh;
    }
    
    .post-modal-left {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        max-height: 50vh;
    }
    
    .post-modal-right {
        max-height: 45vh;
    }
    
    .post-modal-content {
        width: 95vw;
    }
}

/* Dashboard Styles */
.dashboard-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: rgba(45, 45, 45, 0.9);
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid rgba(255, 165, 0, 0.2);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 165, 0, 0.5);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(255, 165, 0, 0.2);
}

.stat-card.highlight {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.2), rgba(255, 140, 0, 0.2));
    border-color: rgba(255, 165, 0, 0.6);
}

.stat-card h4 {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.stat-card .stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #ffa500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Join Requests */
.join-request-item {
    background: rgba(45, 45, 45, 0.9);
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid rgba(255, 165, 0, 0.2);
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.request-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.request-info strong {
    color: #ffffff;
    font-size: 1rem;
}

.request-info small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

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

/* Radio Group */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.radio-group label:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 165, 0, 0.3);
}

.radio-group input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.radio-group input[type="radio"]:checked + span {
    color: #ffa500;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .communities-section {
        padding: 80px 1rem 2rem !important;
        min-height: auto !important;
    }
    
    .community-detail-section {
        padding: 80px 1rem 2rem !important;
        min-height: auto !important;
    }
    
    .communities-header {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .communities-header .section-title {
        font-size: 1.5rem !important;
        text-align: center !important;
        margin: 0 !important;
    }
    
    .communities-header .btn-back {
        width: 100% !important;
        justify-content: center !important;
        padding: 0.875rem 1rem !important;
    }
    
    .communities-header .btn-primary {
        width: 100% !important;
        justify-content: center !important;
        padding: 0.875rem 1rem !important;
    }
    
    .community-filters {
        flex-direction: column !important;
        gap: 0.75rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .community-filters .filter-btn {
        width: 100% !important;
        min-width: auto !important;
        padding: 1rem !important;
        font-size: 0.95rem !important;
    }
    
    .community-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        margin-top: 1rem !important;
    }
    
    .community-card {
        padding: 1.25rem !important;
        border-radius: 16px !important;
    }
    
    .community-card-header h3 {
        font-size: 1.1rem !important;
    }
    
    .community-card-body {
        gap: 0.75rem !important;
    }
    
    .community-bio {
        font-size: 0.85rem !important;
    }
    
    .community-stats {
        flex-direction: column !important;
        gap: 0.5rem !important;
        font-size: 0.8rem !important;
    }
    
    .community-posts-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .dashboard-stats-grid {
        grid-template-columns: 1fr !important;
    }
    
    .community-detail-actions {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }
    
    .community-detail-actions .btn-primary,
    .community-detail-actions .btn-secondary,
    .community-detail-actions .btn-danger {
        width: 100% !important;
        justify-content: center !important;
        padding: 1rem !important;
    }
    
    .community-detail-card {
        padding: 1.25rem !important;
        border-radius: 16px !important;
    }
    
    .community-detail-card h2 {
        font-size: 1.5rem !important;
    }
    
/* Members Management Styles */
.member-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.role-badge {
    display: inline-block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
}

.role-badge:hover {
    transform: scale(1.05);
}

.role-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.role-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

#members-management-modal .modal-content,
#roles-management-modal .modal-content {
    max-height: 80vh;
    overflow-y: auto;
}

#members-list,
#roles-list {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 0.5rem;
}

#members-list::-webkit-scrollbar,
#roles-list::-webkit-scrollbar {
    width: 8px;
}

#members-list::-webkit-scrollbar-track,
#roles-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

#members-list::-webkit-scrollbar-thumb,
#roles-list::-webkit-scrollbar-thumb {
    background: rgba(255, 165, 0, 0.3);
    border-radius: 10px;
}

#members-list::-webkit-scrollbar-thumb:hover,
#roles-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 165, 0, 0.5);
}

/* Enhanced Select Dropdown Styles */
select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffa500' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 16px;
    padding-right: 50px !important;
}

select option {
    background: rgba(45, 45, 45, 0.98);
    color: #fff;
    padding: 12px 18px;
    border: none;
}

select option:hover,
select option:focus,
select option:checked {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
}

select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.2);
}

/* Role Preview Badge */
.role-preview-badge {
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.role-preview-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4) !important;
}

    .community-detail-stats {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }
    
    .request-actions {
        flex-direction: column;
    }
}

/* ========================================
   SUPPORT SYSTEM - 3D CARTOON STYLING
   ======================================== */

/* Support Modal */
.support-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10012;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.support-modal.active {
    display: flex;
    opacity: 1;
}

.support-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.support-modal-content {
    position: relative;
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
    margin: 2% auto;
    padding: 2rem;
    border-radius: 24px;
    max-width: 1000px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 179, 0, 0.2);
    transform: perspective(1000px) rotateX(0deg) translateY(0);
    animation: modalSlideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalSlideUp {
    from {
        transform: perspective(1000px) rotateX(10deg) translateY(50px);
        opacity: 0;
    }
    to {
        transform: perspective(1000px) rotateX(0deg) translateY(0);
        opacity: 1;
    }
}

.support-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    pointer-events: auto;
}

.support-modal-close:hover {
    background: rgba(255, 67, 54, 0.3);
    transform: rotate(90deg) scale(1.1);
}

/* Antwort-Modal (passend zur Support-Seite) */
.support-answer-modal {
    z-index: 10020;
    align-items: center;
    justify-content: center;
}

.support-answer-modal-content {
    max-width: 560px;
    margin: 2rem auto;
}

.support-answer-body {
    padding: 0.5rem 0;
}

.support-answer-ticket-info {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(255, 179, 0, 0.2);
}

.support-answer-ticket-info p {
    margin: 0 0 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.support-answer-preview {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 0.5rem;
    white-space: pre-wrap;
    word-break: break-word;
}

.support-answer-hint {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 1rem 0 1.25rem 0;
    padding: 0.75rem 1rem;
    background: rgba(255, 179, 0, 0.08);
    border-radius: 10px;
    border-left: 3px solid rgba(255, 179, 0, 0.5);
}

.support-answer-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
}

.support-answer-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.support-answer-submit {
    background: linear-gradient(145deg, rgba(255, 179, 0, 0.7) 0%, rgba(255, 140, 0, 0.6) 100%);
    color: #1a1a2e;
    box-shadow: 0 4px 12px rgba(255, 179, 0, 0.4);
}

.support-answer-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 179, 0, 0.5);
}

.support-answer-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.support-answer-cancel {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.support-answer-cancel:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
}

.support-modal-header h2 {
    color: #ffb300;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 2rem;
    text-shadow: 0 0 20px rgba(255, 179, 0, 0.5);
}

/* Tabs */
.support-modal-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 179, 0, 0.2);
}

.support-tab-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.support-tab-btn:hover {
    color: #ffb300;
    transform: translateY(-2px);
}

.support-tab-btn.active {
    color: #ffb300;
    border-bottom-color: #ffb300;
    text-shadow: 0 0 10px rgba(255, 179, 0, 0.5);
}

/* Tab Content */
.support-tab-content {
    display: none;
}

.support-tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

/* Support Form */
.support-form-container {
    padding: 1.5rem 0;
}

.support-form-3d {
    background: linear-gradient(145deg, #2a2a3e 0%, #1f1f2e 100%);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px);
}

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

.form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 179, 0, 0.3);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffb300;
    box-shadow: 0 0 20px rgba(255, 179, 0, 0.3);
    transform: translateZ(10px);
}

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

.importance-btn {
    flex: 1;
    min-width: 120px;
    padding: 1rem;
    background: linear-gradient(145deg, #2a2a3e 0%, #1f1f2e 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: perspective(500px) translateZ(0);
}

.importance-btn:hover {
    transform: perspective(500px) translateZ(10px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.importance-btn.active {
    border-color: #ffb300;
    background: linear-gradient(145deg, rgba(255, 179, 0, 0.2) 0%, rgba(255, 140, 0, 0.15) 100%);
    box-shadow: 0 0 20px rgba(255, 179, 0, 0.4);
}

/* Buttons 3D */
.support-submit-btn-3d,
.idea-submit-btn-3d,
.admin-login-btn-3d {
    background: linear-gradient(145deg, rgba(255, 179, 0, 0.6) 0%, rgba(255, 140, 0, 0.5) 100%);
    border: none;
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(255, 179, 0, 0.3);
    transform: perspective(500px) translateZ(0);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.admin-logout-btn-3d,
.admin-delete-btn-3d {
    background: linear-gradient(145deg, #ffb300 0%, #ff8c00 100%);
    border: none;
    color: #1a1a2e;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(255, 179, 0, 0.4);
    transform: perspective(500px) translateZ(0);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.support-submit-btn-3d:hover,
.idea-submit-btn-3d:hover {
    transform: perspective(500px) translateZ(15px) scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 179, 0, 0.6);
}

.admin-login-btn-3d:hover {
    transform: perspective(500px) translateZ(8px) scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 179, 0, 0.5);
    background: linear-gradient(145deg, rgba(255, 179, 0, 0.8) 0%, rgba(255, 140, 0, 0.7) 100%);
}

.admin-delete-btn-3d {
    background: linear-gradient(145deg, #f44336 0%, #d32f2f 100%);
    box-shadow: 0 4px 12px rgba(244, 67, 54, 0.4);
}

.admin-delete-btn-3d:hover {
    transform: perspective(500px) translateZ(10px) scale(1.05);
    box-shadow: 0 6px 18px rgba(244, 67, 54, 0.6);
}

.admin-logout-btn-3d {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.admin-logout-btn-3d:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

/* Ideas Board */
.ideas-board-container {
    padding: 1.5rem 0;
}

.ideas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.ideas-header h3 {
    color: #ffb300;
    font-size: 1.5rem;
}

.ideas-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.idea-card-3d {
    background: linear-gradient(145deg, #2a2a3e 0%, #1f1f2e 100%);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: perspective(1000px) translateZ(0);
    border: 2px solid rgba(255, 179, 0, 0.1);
}

.idea-card-3d:hover {
    transform: perspective(1000px) translateZ(15px) rotateX(2deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 179, 0, 0.3);
}

.idea-header h4 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.idea-meta {
    display: flex;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.idea-content {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.idea-votes {
    display: flex;
    gap: 1rem;
}

.vote-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0.5rem 1rem;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: perspective(500px) translateZ(0);
}

.vote-btn:hover {
    transform: perspective(500px) translateZ(10px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.upvote-btn:hover {
    background: rgba(76, 175, 80, 0.3);
    border-color: #4caf50;
}

.downvote-btn:hover {
    background: rgba(244, 67, 54, 0.3);
    border-color: #f44336;
}

.no-ideas {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    padding: 3rem;
    font-size: 1.1rem;
}

/* Meine Tickets */
.my-tickets-container {
    padding: 1rem 0;
}

.my-tickets-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.my-tickets-header h3 {
    color: #fff;
    font-size: 1.3rem;
    margin: 0;
}

.my-tickets-info {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    margin: -0.5rem 0 1rem 0;
    padding: 0.5rem 0;
}

.refresh-tickets-btn-3d {
    background: linear-gradient(145deg, rgba(255, 179, 0, 0.2), rgba(255, 179, 0, 0.1));
    border: 2px solid rgba(255, 179, 0, 0.3);
    color: rgba(255, 179, 0, 0.9);
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: perspective(1000px) translateZ(0);
}

.refresh-tickets-btn-3d:hover {
    transform: perspective(1000px) translateZ(5px);
    background: linear-gradient(145deg, rgba(255, 179, 0, 0.3), rgba(255, 179, 0, 0.2));
    border-color: rgba(255, 179, 0, 0.5);
    box-shadow: 0 5px 15px rgba(255, 179, 0, 0.3);
}

.my-tickets-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.my-ticket-card-3d {
    background: linear-gradient(145deg, #2a2a3e 0%, #1f1f2e 100%);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: perspective(1000px) translateZ(0);
    border: 2px solid rgba(255, 179, 0, 0.1);
}

.my-ticket-card-3d:hover {
    transform: perspective(1000px) translateZ(15px) rotateX(2deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 179, 0, 0.3);
}

.my-ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.my-ticket-header h4 {
    color: #fff;
    font-size: 1.2rem;
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.my-ticket-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.badge {
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.badge-status {
    background: rgba(100, 100, 200, 0.2);
    border: 1px solid rgba(100, 100, 200, 0.4);
    color: rgba(150, 150, 255, 0.9);
}

.badge-status.badge-open {
    background: rgba(255, 193, 7, 0.2);
    border-color: rgba(255, 193, 7, 0.4);
    color: rgba(255, 224, 130, 0.9);
}

.badge-status.badge-in_progress {
    background: rgba(33, 150, 243, 0.2);
    border-color: rgba(33, 150, 243, 0.4);
    color: rgba(144, 202, 249, 0.9);
}

.badge-status.badge-resolved {
    background: rgba(76, 175, 80, 0.2);
    border-color: rgba(76, 175, 80, 0.4);
    color: rgba(165, 214, 167, 0.9);
}

.badge-status.badge-closed {
    background: rgba(158, 158, 158, 0.2);
    border-color: rgba(158, 158, 158, 0.4);
    color: rgba(224, 224, 224, 0.9);
}

.badge-importance {
    background: rgba(255, 179, 0, 0.2);
    border: 1px solid rgba(255, 179, 0, 0.4);
    color: rgba(255, 224, 130, 0.9);
}

.badge-importance.badge-normal {
    background: rgba(76, 175, 80, 0.2);
    border-color: rgba(76, 175, 80, 0.4);
    color: rgba(165, 214, 167, 0.9);
}

.badge-importance.badge-important {
    background: rgba(255, 152, 0, 0.2);
    border-color: rgba(255, 152, 0, 0.4);
    color: rgba(255, 183, 77, 0.9);
}

.badge-response {
    background: rgba(156, 39, 176, 0.2);
    border: 1px solid rgba(156, 39, 176, 0.4);
    color: rgba(206, 147, 216, 0.9);
}

.my-ticket-content {
    margin-bottom: 1rem;
}

.my-ticket-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.my-ticket-content p strong {
    color: rgba(255, 179, 0, 0.9);
}

.my-ticket-response {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(156, 39, 176, 0.1);
    border-left: 3px solid rgba(156, 39, 176, 0.5);
    border-radius: 8px;
}

.my-ticket-response p {
    margin-bottom: 0.5rem;
}

.admin-response-text {
    color: rgba(206, 147, 216, 0.95) !important;
    font-style: italic;
    padding-left: 0.5rem;
}

.my-ticket-waiting {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 193, 7, 0.1);
    border-left: 3px solid rgba(255, 193, 7, 0.5);
    border-radius: 8px;
    text-align: center;
}

.my-ticket-waiting p {
    color: rgba(255, 224, 130, 0.9);
    margin: 0;
}

.my-ticket-meta {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.no-tickets, .loading-tickets {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    padding: 3rem;
    font-size: 1.1rem;
}

/* Supporter Dashboard - Klein und dezent */
.support-admin-panel {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 179, 0, 0.1);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.support-admin-panel:hover {
    opacity: 1;
}

.admin-login-section {
    background: rgba(42, 42, 62, 0.5);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 179, 0, 0.15);
}

.admin-login-section h3 {
    color: rgba(255, 179, 0, 0.7);
    margin-bottom: 0.75rem;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
}

.admin-login-form {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
}

.admin-password-input {
    padding: 0.4rem 0.6rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 179, 0, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 0;
}

.admin-password-input:focus {
    outline: none;
    border-color: rgba(255, 179, 0, 0.4);
    box-shadow: 0 0 8px rgba(255, 179, 0, 0.2);
}

.admin-dashboard-section {
    background: rgba(42, 42, 62, 0.6);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 179, 0, 0.15);
}

.admin-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.admin-dashboard-header h3 {
    color: rgba(255, 179, 0, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
}

.admin-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 179, 0, 0.1);
}

.admin-tab-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    padding: 0.4rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.admin-tab-btn:hover {
    color: rgba(255, 179, 0, 0.8);
}

.admin-tab-btn.active {
    color: rgba(255, 179, 0, 0.9);
    border-bottom-color: rgba(255, 179, 0, 0.5);
}

.admin-filters {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.admin-filter-select {
    flex: 1;
    min-width: 100px;
    padding: 0.4rem 0.6rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 179, 0, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-filter-select:focus {
    outline: none;
    border-color: rgba(255, 179, 0, 0.4);
    box-shadow: 0 0 8px rgba(255, 179, 0, 0.2);
}

.admin-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 400px;
    overflow-y: auto;
}

.admin-item-card-3d {
    background: rgba(26, 26, 46, 0.6);
    padding: 0.75rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 179, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: perspective(1000px) translateZ(0);
}

.admin-item-card-3d:hover {
    transform: perspective(1000px) translateZ(10px) rotateX(1deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 179, 0, 0.3);
}

.admin-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.admin-item-header h4 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    flex: 1;
    font-weight: 600;
}

.admin-item-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.badge {
    padding: 0.15rem 0.5rem;
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-support {
    background: rgba(33, 150, 243, 0.3);
    color: #2196f3;
    border: 1px solid rgba(33, 150, 243, 0.5);
}

.badge-idea {
    background: rgba(156, 39, 176, 0.3);
    color: #9c27b0;
    border: 1px solid rgba(156, 39, 176, 0.5);
}

.badge-status {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.badge-status.badge-open {
    background: rgba(76, 175, 80, 0.3);
    color: #4caf50;
}

.badge-status.badge-in_progress {
    background: rgba(255, 179, 0, 0.3);
    color: #ffb300;
}

.badge-status.badge-resolved {
    background: rgba(33, 150, 243, 0.3);
    color: #2196f3;
}

.badge-status.badge-closed {
    background: rgba(158, 158, 158, 0.3);
    color: #9e9e9e;
}

.badge-importance {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.badge-importance.badge-normal {
    background: rgba(76, 175, 80, 0.3);
    color: #4caf50;
}

.badge-importance.badge-important {
    background: rgba(255, 179, 0, 0.3);
    color: #ffb300;
}

.badge-importance.badge-urgent {
    background: rgba(244, 67, 54, 0.3);
    color: #f44336;
}

.admin-item-content {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    line-height: 1.4;
}

.admin-item-meta {
    display: flex;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    margin-top: 0.25rem;
    flex-wrap: wrap;
}

.admin-item-votes {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    margin-top: 0.25rem;
}

.admin-item-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 0.5rem;
}

.admin-action-select {
    padding: 0.3rem 0.6rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 179, 0, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-action-select:focus {
    outline: none;
    border-color: rgba(255, 179, 0, 0.4);
    box-shadow: 0 0 8px rgba(255, 179, 0, 0.2);
}

.no-admin-items {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    padding: 1.5rem;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .support-modal-content {
        margin: 5% auto;
        padding: 1.5rem;
        width: 98%;
    }

    .support-modal-tabs {
        flex-direction: column;
    }

    .importance-buttons {
        flex-direction: column;
    }

    .admin-item-header {
        flex-direction: column;
    }

    .admin-item-actions {
        flex-direction: column;
    }

    .admin-action-select {
        width: 100%;
    }
}

/* ==================== FEED SYSTEM STYLES (kompakt + 3D Cartoon) ==================== */

.feed-section {
    padding: 88px 0 24px;
    background: linear-gradient(180deg, rgba(20, 20, 25, 0.95) 0%, rgba(15, 15, 20, 0.98) 100%);
    backdrop-filter: blur(30px);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
}

.feed-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 160px;
    background: radial-gradient(ellipse at top, rgba(255, 165, 0, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.feed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding: 0.75rem 0;
    position: relative;
    z-index: 1;
}

.feed-header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feed-view-toggle {
    padding: 0.45rem 0.75rem;
    background: rgba(255, 165, 0, 0.12);
    border: 2px solid rgba(255, 165, 0, 0.35);
    border-radius: 14px;
    color: #ffa500;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    box-shadow: 0 4px 0 rgba(0,0,0,0.25), 0 2px 8px rgba(255,165,0,0.15);
}

.feed-view-toggle:hover {
    background: rgba(255, 165, 0, 0.18);
    border-color: rgba(255, 165, 0, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 rgba(0,0,0,0.2), 0 4px 12px rgba(255,165,0,0.25);
}

.feed-view-toggle i {
    font-size: 0.85rem;
}

.feed-header .section-title {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 50%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: -0.5px;
    text-shadow: 0 0 24px rgba(255, 165, 0, 0.3);
    position: relative;
}

.feed-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #ffa500, transparent);
    border-radius: 2px;
}

.feed-layout {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
    transition: grid-template-columns 0.3s ease;
}

.feed-layout.sidebar-open {
    grid-template-columns: 240px 1fr;
}

.feed-sidebar {
    position: sticky;
    top: 120px;
    background: rgba(45, 45, 45, 0.9);
    border-radius: 15px;
    padding: 0;
    border: 2px solid rgba(255, 165, 0, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    height: fit-content;
    overflow: hidden;
    width: fit-content;
    min-width: fit-content;
}

.feed-sidebar-toggle {
    width: 100%;
    min-width: 180px;
    padding: 0.75rem 1rem;
    background: rgba(255, 165, 0, 0.1);
    border: none;
    border-bottom: 2px solid rgba(255, 165, 0, 0.2);
    border-radius: 15px;
    color: #ffa500;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    white-space: nowrap;
}

.feed-sidebar-toggle:hover {
    background: rgba(255, 165, 0, 0.15);
    color: #ff8c00;
}

.feed-sidebar-toggle i.fa-chevron-down {
    transition: transform 0.3s ease;
    font-size: 0.85rem;
}

.feed-sidebar-toggle.active i.fa-chevron-down {
    transform: rotate(180deg);
}

.feed-filters {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    min-width: 240px;
}

.feed-filters .filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feed-filters .filter-group-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.25rem;
}

.feed-filters .filter-btn {
    padding: 8px 12px;
    background: rgba(30, 30, 30, 0.8);
    border: 2px solid rgba(255, 165, 0, 0.3);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: left;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feed-filters .filter-btn:hover {
    background: rgba(55, 55, 55, 0.9);
    border-color: rgba(255, 165, 0, 0.5);
    color: rgba(255, 255, 255, 0.9);
    transform: translateX(5px);
}

.feed-filters .filter-btn.active {
    background: linear-gradient(45deg, rgba(255, 165, 0, 0.2), rgba(255, 140, 0, 0.2));
    border-color: rgba(255, 165, 0, 0.8);
    color: #ffa500;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

.topic-select,
.sort-select {
    padding: 8px 35px 8px 12px;
    background: rgba(30, 30, 30, 0.9);
    border: 2px solid rgba(255, 165, 0, 0.3);
    border-radius: 12px;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffa500' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.topic-select:hover,
.sort-select:hover {
    border-color: rgba(255, 165, 0, 0.5);
    background-color: rgba(40, 40, 40, 0.95);
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.2);
    transform: translateY(-1px);
}

.topic-select:focus,
.sort-select:focus {
    outline: none;
    border-color: rgba(255, 165, 0, 0.8);
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.4);
    background-color: rgba(35, 35, 35, 0.95);
}

.topic-select option,
.sort-select option {
    background: rgba(30, 30, 30, 0.95);
    color: #ffffff;
    padding: 12px;
    border: none;
}

.topic-select option:hover,
.sort-select option:hover {
    background: rgba(255, 165, 0, 0.2);
}

.feed-filters .btn-secondary {
    width: 100%;
    padding: 8px 12px;
    background: rgba(255, 165, 0, 0.1);
    border: 2px solid rgba(255, 165, 0, 0.4);
    border-radius: 12px;
    color: #ffa500;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.feed-filters .btn-secondary:hover {
    background: rgba(255, 165, 0, 0.2);
    border-color: rgba(255, 165, 0, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

.feed-posts-container {
    max-width: 100%;
}

.feed-posts-container.feed-scroll-view {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    max-width: 580px;
    margin: 0 auto;
}

.feed-posts-container.feed-grid-view {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
    max-width: 100%;
    margin: 0 auto;
    align-items: stretch;
}

@media (min-width: 900px) {
    .feed-posts-container.feed-grid-view {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (min-width: 1200px) {
    .feed-posts-container.feed-grid-view {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 0.85rem;
    }
}

@media (max-width: 768px) {
    .feed-posts-container.feed-grid-view {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
        align-items: stretch;
    }
    
    .feed-posts-container.feed-scroll-view {
        gap: 0.75rem;
        max-width: 100%;
    }
}

.feed-main {
    width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
}

.feed-post-card {
    background: linear-gradient(145deg, rgba(42, 42, 48, 0.98) 0%, rgba(36, 36, 42, 0.96) 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 6px 0 rgba(0, 0, 0, 0.35),
        0 8px 24px rgba(0, 0, 0, 0.45),
        0 0 0 2px rgba(255, 165, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 0 rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(255, 165, 0, 0.25);
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease, border-color 0.2s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100%;
    position: relative;
    cursor: pointer;
}

.feed-post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 165, 0, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px 16px 0 0;
}

.feed-posts-container.feed-grid-view .feed-post-card {
    padding: 0;
    gap: 0;
}

.feed-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 10px 0 rgba(0, 0, 0, 0.25),
        0 14px 32px rgba(0, 0, 0, 0.5),
        0 0 0 2px rgba(255, 165, 0, 0.45),
        0 0 24px rgba(255, 165, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 165, 0, 0.45);
    background: linear-gradient(145deg, rgba(44, 44, 50, 0.98) 0%, rgba(38, 38, 44, 0.96) 100%);
}

.feed-post-card:hover::before {
    opacity: 1;
}

.feed-posts-container.feed-grid-view .feed-post-card {
    padding: 0;
}

.feed-posts-container.feed-grid-view .feed-post-header {
    padding: 0.5rem 0.65rem 0.4rem 0.65rem;
    margin-bottom: 0;
    gap: 0.4rem;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.feed-posts-container.feed-grid-view .feed-post-header > .feed-post-user {
    order: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.feed-posts-container.feed-grid-view .feed-post-header > .feed-post-badges {
    order: 2;
    margin-top: 0.25rem;
}

.feed-posts-container.feed-grid-view .feed-post-header > .feed-post-time-info {
    order: 3;
}

.feed-posts-container.feed-grid-view .feed-post-header .feed-user-avatar {
    width: 26px;
    height: 26px;
    font-size: 0.75rem;
    box-shadow: 0 2px 6px rgba(255, 165, 0, 0.35), 0 1px 0 rgba(255,255,255,0.1);
}

.feed-posts-container.feed-grid-view .feed-post-header .feed-username {
    font-size: 0.8rem;
    font-weight: 700;
}

.feed-posts-container.feed-grid-view .feed-post-badges {
    margin-top: 0;
    gap: 0.6rem;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    order: 2;
}

.feed-posts-container.feed-grid-view .feed-post-type-badge,
.feed-posts-container.feed-grid-view .feed-topic-badge {
    padding: 0.25rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 10px;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.3), 0 2px 6px rgba(0, 0, 0, 0.25);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.2px;
}

.feed-posts-container.feed-grid-view .feed-topic-badge {
    background: rgba(255, 165, 0, 0.25) !important;
    color: #ffa500 !important;
    border-color: rgba(255, 165, 0, 0.5) !important;
}

.feed-posts-container.feed-grid-view .feed-post-time-info {
    margin-top: 0.25rem;
    font-size: 0.65rem;
    padding: 0.35rem 0.5rem;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 8px;
    margin-left: 0;
    margin-right: 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
    font-weight: 600;
    border: 1px solid rgba(255, 165, 0, 0.3);
    order: 3;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.feed-posts-container.feed-grid-view .feed-post-time-info i {
    color: rgba(255, 165, 0, 0.95);
    font-size: 0.9rem;
}

.feed-posts-container.feed-grid-view .feed-post-time-info span {
    color: rgba(255, 255, 255, 0.85);
}

.feed-posts-container.feed-grid-view .feed-expires-in {
    background: rgba(255, 165, 0, 0.2) !important;
    padding: 0.4rem 0.9rem !important;
    border-radius: 12px !important;
    border: 2px solid rgba(255, 165, 0, 0.5) !important;
    font-weight: 700 !important;
    color: rgba(255, 165, 0, 1) !important;
    box-shadow: 0 3px 10px rgba(255, 165, 0, 0.3) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    font-size: 0.8rem !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

.feed-posts-container.feed-grid-view .feed-content-warning {
    margin: 0 0 0.75rem 0;
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.feed-posts-container.feed-grid-view .feed-post-content {
    padding: 0 0.65rem;
    margin-bottom: 0.4rem;
    font-size: 0.78rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    flex: 1;
    min-height: 0;
}

.feed-posts-container.feed-grid-view .feed-post-content p {
    margin: 0;
    word-break: break-word;
    overflow-wrap: break-word;
    text-overflow: ellipsis;
}

.feed-posts-container.feed-grid-view .feed-post-flairs {
    padding: 0 1rem;
    margin-bottom: 0.5rem;
    gap: 0.3rem;
}

.feed-posts-container.feed-grid-view .feed-post-footer {
    padding: 0.4rem 0.65rem 0.5rem 0.65rem;
    margin-top: auto;
    border-top: 1px solid rgba(255, 165, 0, 0.25);
    background: rgba(0, 0, 0, 0.2);
    gap: 0.4rem;
    flex-shrink: 0;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.feed-posts-container.feed-grid-view .feed-post-stats-group {
    padding: 0.25rem 0.4rem;
    gap: 0.35rem;
    width: 100%;
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
}

.feed-posts-container.feed-grid-view .feed-stat-item {
    padding: 0.2rem 0.4rem;
    font-size: 0.65rem;
    gap: 0.25rem;
    flex: 1;
    justify-content: center;
    min-width: 0;
}

.feed-posts-container.feed-grid-view .feed-stat-item i {
    font-size: 0.7rem;
}

.feed-posts-container.feed-grid-view .feed-post-actions-container {
    gap: 0.35rem;
    width: 100%;
    flex-shrink: 0;
}

.feed-posts-container.feed-grid-view .feed-post-actions-primary {
    gap: 0.3rem;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.feed-posts-container.feed-grid-view .feed-post-actions-primary .feed-action-btn {
    flex: 1;
    min-width: 0;
    justify-content: center;
    padding: 0.35rem 0.5rem;
    font-size: 0.7rem;
}

.feed-posts-container.feed-grid-view .feed-post-actions-secondary {
    gap: 0.3rem;
    padding-top: 0.25rem;
}

.feed-posts-container.feed-grid-view .feed-action-btn {
    padding: 0.35rem 0.5rem;
    font-size: 0.7rem;
    gap: 0.3rem;
    border-radius: 10px;
    font-weight: 600;
    border: 1.5px solid rgba(255, 165, 0, 0.35);
    box-shadow: 0 2px 0 rgba(0,0,0,0.2);
}

.feed-posts-container.feed-grid-view .feed-action-btn:hover {
    border-color: rgba(255, 165, 0, 0.6);
    background: rgba(255, 165, 0, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.3);
}

.feed-posts-container.feed-grid-view .feed-action-btn i {
    font-size: 0.85rem;
}

.feed-posts-container.feed-grid-view .feed-action-btn span {
    display: none; /* Hide text in grid view, show only icons */
}

.feed-posts-container.feed-grid-view .feed-action-btn {
    min-width: 40px; /* Ensure buttons have minimum width for icon-only display */
    justify-content: center;
    padding: 0.4rem;
}

.feed-posts-container.feed-grid-view .feed-action-btn i {
    font-size: 1rem; /* Slightly larger icons in grid view */
    margin: 0;
}

/* Show tooltip on hover in grid view when text is hidden */
.feed-posts-container.feed-grid-view .feed-action-btn[title]:hover::after {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: #ffa500;
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    pointer-events: none;
    z-index: 1000;
    margin-bottom: 0.3rem;
    border: 1px solid rgba(255, 165, 0, 0.3);
}

.feed-action-btn.feed-action-delete {
    background: rgba(220, 53, 69, 0.15);
    border-color: rgba(220, 53, 69, 0.5);
    color: #dc3545;
}

.feed-action-btn.feed-action-delete:hover {
    background: rgba(220, 53, 69, 0.25);
    border-color: rgba(220, 53, 69, 0.7);
    color: #ff6b7a;
}

.feed-post-card.pushed {
    border-color: #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.feed-post-card.gold-frame {
    border-color: #ffd700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8), inset 0 0 20px rgba(255, 215, 0, 0.1);
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.95) 0%, rgba(40, 35, 20, 0.95) 100%);
}

.feed-post-card.pinned {
    border-left: 4px solid #ffa500;
}

/* Text-only post styling */
.feed-post-card.feed-post-text-only {
    cursor: pointer;
    position: relative;
}

.feed-post-card.feed-post-text-only::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.05), rgba(255, 140, 0, 0.03));
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feed-post-card.feed-post-text-only:hover::before {
    opacity: 1;
}

.feed-post-card.feed-post-text-only:hover {
    border-color: rgba(255, 165, 0, 0.4);
    transform: translateY(-2px);
}

.feed-posts-container.feed-grid-view .feed-post-card.feed-post-text-only {
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.98), rgba(40, 40, 40, 0.95));
}

.feed-posts-container.feed-grid-view .feed-post-card.feed-post-text-only .feed-post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    font-size: 0.78rem;
    line-height: 1.45;
    padding: 0.5rem 0.65rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    position: relative;
    background: transparent;
    border-radius: 0;
    margin: 0;
    border-left: none;
    min-height: 0;
    overflow: hidden;
}

.feed-posts-container.feed-grid-view .feed-post-card.feed-post-text-only .feed-post-content p {
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
    overflow-wrap: break-word;
}

/* Kein Platzhalter-Icon bei text-only Posts – wenn kein Bild hochgeladen, wird nichts als „fehlend“ angezeigt */
.feed-posts-container.feed-grid-view .feed-post-card.feed-post-text-only .feed-post-content::before,
.feed-posts-container.feed-scroll-view .feed-post-card.feed-post-text-only .feed-post-content::before {
    content: none;
    display: none;
}

.feed-posts-container.feed-scroll-view .feed-post-card.feed-post-text-only {
    border-left: 3px solid rgba(255, 165, 0, 0.5);
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.95), rgba(40, 40, 40, 0.95));
}

.feed-posts-container.feed-scroll-view .feed-post-card.feed-post-text-only .feed-post-content {
    font-size: 0.9rem;
    line-height: 1.55;
    padding: 0.65rem 0;
    color: rgba(255, 255, 255, 0.95);
}

/* Feed Post Modal - Zentriert mit Animation */
#feed-post-detail-modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#feed-post-detail-modal.active {
    display: flex;
    opacity: 1;
}

.feed-post-slide-panel {
    position: relative;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    background: linear-gradient(180deg, rgba(25, 25, 30, 0.98) 0%, rgba(20, 20, 25, 0.98) 100%);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 165, 0, 0.2);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
    opacity: 0;
}

#feed-post-detail-modal.active .feed-post-slide-panel {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.feed-post-slide-panel-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: linear-gradient(180deg, rgba(25, 25, 30, 0.98) 0%, rgba(20, 20, 25, 0.95) 100%);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 165, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.feed-post-slide-panel-header h3 {
    margin: 0;
    color: #ffa500;
    font-size: 1.5rem;
    font-weight: 700;
    flex: 1;
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feed-post-slide-panel-close {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 165, 0, 0.1);
    border: 2px solid rgba(255, 165, 0, 0.3);
    color: #ffa500;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.feed-post-slide-panel-close:hover {
    background: rgba(255, 165, 0, 0.2);
    border-color: rgba(255, 165, 0, 0.5);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
}

.feed-post-slide-panel-content {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
}

/* Mobile Responsive für Modal */
@media (max-width: 768px) {
    #feed-post-detail-modal {
        padding: 0;
        align-items: stretch;
    }
    
    .feed-post-slide-panel {
        max-width: 100%;
        max-height: 100vh;
        border-radius: 0;
        transform: scale(1) translateY(100%);
    }
    
    #feed-post-detail-modal.active .feed-post-slide-panel {
        transform: scale(1) translateY(0);
    }
    
    .feed-post-slide-panel-header {
        padding: 1rem 1.5rem;
    }
    
    .feed-post-slide-panel-header h3 {
        font-size: 1.2rem !important;
    }
    
    .feed-post-slide-panel-content {
        padding: 1.5rem;
    }
    
    .feed-post-slide-panel-close {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .feed-post-slide-panel-header {
        padding: 1rem;
    }
    
    .feed-post-slide-panel-content {
        padding: 1rem;
    }
}

/* Scrollbar Styling für Panel */
.feed-post-slide-panel-content::-webkit-scrollbar {
    width: 8px;
}

.feed-post-slide-panel-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.feed-post-slide-panel-content::-webkit-scrollbar-thumb {
    background: rgba(255, 165, 0, 0.5);
    border-radius: 10px;
}

.feed-post-slide-panel-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 165, 0, 0.7);
}

/* Moderne Like-Button Animationen */
@keyframes heartBeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.3);
    }
    50% {
        transform: scale(1.1);
    }
    75% {
        transform: scale(1.2);
    }
}

@keyframes countPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
        color: #ffa500;
    }
}

.feed-action-btn.feed-action-like {
    position: relative;
    overflow: hidden;
}

.feed-action-btn.feed-action-like::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.feed-action-btn.feed-action-like.active::before {
    width: 300px;
    height: 300px;
}

.feed-action-btn.feed-action-like.active {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%) !important;
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.5) !important;
}

.feed-action-btn.feed-action-like:not(.active) {
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%) !important;
    box-shadow: 0 4px 20px rgba(255, 165, 0, 0.4) !important;
}

.feed-action-btn.feed-action-like:hover {
    transform: translateY(-2px) scale(1.05);
}

.feed-action-btn.feed-action-like:active {
    transform: translateY(0) scale(0.98);
}

.feed-action-btn.feed-action-like i.fa-heart {
    position: relative;
    z-index: 1;
}

/* Feed Post Modal - Legacy Support */
#feed-post-modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow-y: auto;
}

.feed-post-modal-content {
    background: rgba(30, 30, 30, 0.95);
    border-radius: 20px;
    padding: 0;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border: 2px solid rgba(255, 165, 0, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .feed-post-modal-content {
        max-width: 100%;
        max-height: 100vh;
        border-radius: 0;
        margin: 0;
        padding: 0;
    }
    
    #feed-post-modal {
        padding: 0;
        align-items: stretch;
    }
    
    /* Modal Container für Feed Post Modal auf Mobile */
    #feed-post-detail-modal {
        padding: 0 !important;
        align-items: stretch !important;
    }
    
    #feed-post-detail-modal .post-modal-content {
        width: 100% !important;
        max-width: 100% !important;
        max-height: 100vh !important;
        border-radius: 0 !important;
        margin: 0 !important;
    }
    
    .feed-post-modal-body {
        padding: 1rem;
        gap: 1rem;
    }
    
    .feed-post-modal-header {
        padding: 0.75rem 0;
        gap: 0.75rem;
    }
    
    .feed-post-modal-image {
        margin: 0.5rem 0;
    }
    
    .feed-post-modal-image img {
        max-height: 60vh;
        width: 100%;
        border-radius: 12px;
    }
    
    .feed-image-zoom-hint {
        opacity: 1;
        bottom: 15px;
        right: 15px;
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }
    
    .feed-post-modal-content-text {
        font-size: 1rem;
        line-height: 1.7;
        padding: 1rem;
    }
    
    .feed-post-modal-footer {
        padding: 0.75rem 0;
        gap: 0.75rem;
    }
    
    .feed-post-modal-footer .feed-post-stats-group {
        padding: 0.5rem 0.65rem;
        gap: 0.65rem;
    }
    
    .feed-post-modal-footer .feed-stat-item {
        padding: 0.45rem 0.7rem;
        font-size: 0.85rem;
        flex: 1;
        min-width: 80px;
    }
    
    .feed-post-modal-footer .feed-post-actions-primary,
    .feed-post-modal-footer .feed-post-actions-secondary {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .feed-post-modal-footer .feed-action-btn {
        flex: 1;
        min-width: 80px;
        padding: 0.6rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .feed-image-lightbox-content img {
        max-height: calc(100vh - 80px);
        border-radius: 8px;
    }
    
    .feed-image-lightbox-close {
        top: 10px;
        right: 10px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        background: rgba(255, 165, 0, 0.95);
    }
    
    .feed-image-lightbox-actions {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 0;
    }
    
    .feed-image-lightbox-action-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .feed-post-modal-body {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .feed-post-modal-image img {
        max-height: 50vh;
    }
    
    .feed-post-modal-content-text {
        font-size: 0.95rem;
        padding: 0.75rem;
    }
    
    .feed-image-lightbox-content img {
        max-height: calc(100vh - 100px);
    }
}

.feed-post-modal-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feed-post-modal-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 165, 0, 0.2);
}

.feed-post-modal-image {
    width: 100%;
    max-height: 500px;
    border-radius: 12px;
    overflow: hidden;
    margin: 0;
}

.feed-post-modal-image {
    position: relative;
    cursor: pointer;
}

.feed-post-modal-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.feed-post-modal-image:hover img {
    transform: scale(1.02);
}

.feed-image-zoom-hint {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #ffa500;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

.feed-post-image:hover .feed-image-zoom-hint,
.feed-post-modal-image:hover .feed-image-zoom-hint {
    opacity: 1;
}

/* Image Lightbox */
.feed-image-lightbox {
    display: none;
    position: fixed;
    z-index: 10002 !important;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

#image-lightbox-modal {
    z-index: 10002 !important;
}

#image-lightbox-modal.modal {
    z-index: 10002 !important;
}

.feed-image-lightbox-content {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.feed-image-lightbox-content img {
    max-width: 100%;
    max-height: calc(100vh - 120px);
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    border: 3px solid rgba(255, 165, 0, 0.5);
}

.feed-image-lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 165, 0, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: #000;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
}

.feed-image-lightbox-close:hover {
    background: rgba(255, 165, 0, 1);
    transform: scale(1.1);
}

.feed-image-lightbox-actions {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
}

.feed-image-lightbox-action-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 165, 0, 0.9);
    border: none;
    border-radius: 12px;
    color: #000;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.feed-image-lightbox-action-btn:hover {
    background: rgba(255, 165, 0, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
}

.feed-post-modal-content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.feed-post-modal-bio {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible !important;
    overflow-x: hidden !important;
    overflow-y: visible !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
}

.feed-post-modal-bio p,
.feed-post-modal-bio span,
.feed-post-modal-bio div {
    max-width: 100%;
    overflow: visible !important;
    overflow-x: hidden !important;
    overflow-y: visible !important;
    white-space: normal !important;
    height: auto !important;
    max-height: none !important;
}

.feed-post-modal-content {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible !important;
    overflow-x: hidden !important;
    overflow-y: visible !important;
    min-height: auto;
}

.feed-post-modal-content p {
    max-width: 100%;
    overflow: visible !important;
    overflow-x: hidden !important;
    white-space: normal !important;
    display: block;
    height: auto;
    border-radius: 12px;
    border-left: 4px solid rgba(255, 165, 0, 0.5);
}

.feed-post-modal-footer {
    padding-top: 1rem;
    border-top: 2px solid rgba(255, 165, 0, 0.2);
    margin-top: 0;
    gap: 0.75rem;
}

.feed-post-modal-footer .feed-post-stats-container {
    width: 100%;
}

.feed-post-modal-footer .feed-post-stats-group {
    padding: 0.6rem 0.85rem;
    gap: 0.85rem;
}

.feed-post-modal-footer .feed-stat-item {
    padding: 0.5rem 0.85rem;
    font-size: 0.9rem;
}

.feed-post-modal-footer .feed-post-actions-container {
    gap: 0.75rem;
}

.feed-post-modal-footer .feed-post-actions-primary,
.feed-post-modal-footer .feed-post-actions-secondary {
    gap: 0.6rem;
}

/* Feed Post Modal Stats - Optimiertes Layout */
.feed-post-modal-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
}

.feed-post-modal-stats .feed-action-btn {
    margin-left: auto;
    flex-shrink: 0;
    white-space: nowrap;
}

/* Feed Post Modal Comments - Optimiertes Layout */
.feed-post-modal-comments {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 0.5rem;
}

.feed-post-modal-comments h3 {
    color: #ffa500;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feed-post-modal-comments-list {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 1rem;
    padding-right: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 165, 0, 0.5) rgba(0, 0, 0, 0.2);
}

.feed-post-modal-comments-list::-webkit-scrollbar {
    width: 6px;
}

.feed-post-modal-comments-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.feed-post-modal-comments-list::-webkit-scrollbar-thumb {
    background: rgba(255, 165, 0, 0.5);
    border-radius: 10px;
}

.feed-post-modal-comments-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 165, 0, 0.7);
}

.feed-post-modal-comment-item {
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid rgba(255, 165, 0, 0.3);
    transition: all 0.2s;
}

.feed-post-modal-comment-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-left-color: rgba(255, 165, 0, 0.6);
}

/* Feed Comment Profile Selector */
#feed-comment-profile-select {
    max-width: 140px;
    font-size: 0.85rem !important;
    padding: 0.75rem 35px 0.75rem 12px !important;
    background: rgba(30, 30, 30, 0.95) !important;
    border: 2px solid rgba(255, 165, 0, 0.3) !important;
    border-radius: 8px !important;
    color: #fff !important;
    font-weight: 500 !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffa500' d='M6 9L1 4h10z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    background-size: 12px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
}

#feed-comment-profile-select:hover {
    border-color: rgba(255, 165, 0, 0.5) !important;
    background-color: rgba(40, 40, 40, 0.95) !important;
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.2) !important;
}

#feed-comment-profile-select:focus {
    outline: none !important;
    border-color: rgba(255, 165, 0, 0.8) !important;
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.4) !important;
    background-color: rgba(35, 35, 35, 0.95) !important;
}

#feed-comment-profile-select option {
    background: rgba(30, 30, 30, 0.98) !important;
    color: #ffffff !important;
    padding: 10px 12px !important;
    border: none !important;
    font-size: 0.85rem !important;
}

#feed-comment-profile-select option:hover,
#feed-comment-profile-select option:focus,
#feed-comment-profile-select option:checked {
    background: rgba(255, 165, 0, 0.2) !important;
    color: #ffa500 !important;
}

.feed-post-modal-comment-input {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
}

.feed-post-modal-comment-input input {
    flex: 1;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    min-width: 0;
}

.feed-post-modal-comment-input button {
    padding: 0.75rem 1.5rem;
    background: #ffa500;
    border: none;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feed-post-modal-comment-input button:hover {
    background: #ff8c00;
}

/* Feed Post Modal Header - Optimiertes Layout */
.feed-post-modal-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feed-post-modal-header > div {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feed-post-modal-header img {
    flex-shrink: 0;
}

.feed-post-modal-header > div > div {
    flex: 1;
    min-width: 0;
}

/* Responsive Anpassungen für Modal */
@media (max-width: 768px) {
    .feed-post-modal-stats {
        gap: 0.75rem;
        padding: 0.75rem;
    }
    
    .feed-post-modal-stats .feed-action-btn {
        width: 100%;
        margin-left: 0;
        margin-top: 0.5rem;
        justify-content: center;
    }
    
    .feed-post-modal-comments-list {
        max-height: 300px;
    }
    
    .feed-post-modal-comment-input {
        flex-direction: column;
    }
    
    .feed-post-modal-comment-input button {
        width: 100%;
    }
    
    /* Mobile Optimierungen für Feed Post Modal */
    .feed-post-modal-mobile {
        width: 100% !important;
        max-width: 100% !important;
        max-height: 100vh !important;
        border-radius: 0 !important;
        padding: 1rem !important;
        margin: 0 !important;
    }
    
    .feed-post-modal-mobile .post-modal-layout {
        gap: 1rem !important;
    }
    
    .feed-post-modal-mobile .feed-post-modal-header {
        gap: 0.75rem !important;
        padding-bottom: 0.75rem !important;
    }
    
    .feed-post-modal-mobile .feed-post-modal-header > div {
        gap: 0.75rem !important;
    }
    
    .feed-post-modal-mobile .feed-post-modal-header img {
        width: 40px !important;
        height: 40px !important;
    }
    
    .feed-post-modal-mobile .feed-post-modal-header strong {
        font-size: 1rem !important;
    }
    
    /* Bio Sektion auf Mobile verbessern */
    .feed-post-modal-mobile .feed-post-modal-bio {
        padding: 1.25rem !important;
        margin-top: 0.5rem !important;
        background: rgba(35, 35, 35, 0.98) !important;
        border-left-width: 4px !important;
        border-radius: 8px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
        overflow: visible !important;
        overflow-x: hidden !important;
        overflow-y: visible !important;
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
    }
    
    .feed-post-modal-mobile .feed-post-modal-bio > div {
        font-size: 1rem !important;
        margin-bottom: 0.75rem !important;
        gap: 0.6rem !important;
        flex-wrap: wrap !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: visible !important;
        overflow-x: hidden !important;
        overflow-y: visible !important;
        height: auto !important;
        max-height: none !important;
    }
    
    .feed-post-modal-mobile .feed-post-modal-bio i {
        font-size: 1.2rem !important;
        flex-shrink: 0 !important;
    }
    
    .feed-post-modal-mobile .feed-post-modal-bio p {
        font-size: 1rem !important;
        line-height: 1.7 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        overflow: visible !important;
        overflow-x: hidden !important;
        overflow-y: visible !important;
        white-space: normal !important;
        height: auto !important;
        max-height: none !important;
        display: block !important;
    }
    
    .feed-post-modal-mobile .feed-post-modal-content {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
        overflow-x: hidden !important;
        overflow-y: visible !important;
    }
    
    .feed-post-modal-mobile .feed-post-modal-content p {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        overflow-x: hidden !important;
        white-space: normal !important;
    }
    
    .feed-post-modal-mobile .feed-post-modal-stats {
        width: 100% !important;
        box-sizing: border-box !important;
        flex-wrap: wrap !important;
    }
    
    /* Bild auf Mobile verbessern */
    .feed-post-modal-mobile .feed-post-modal-image {
        border-radius: 6px !important;
        margin: 0 !important;
    }
    
    .feed-post-modal-mobile .feed-post-modal-image {
        min-height: 200px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .feed-post-modal-mobile .feed-post-modal-img {
        max-height: 60vh !important;
        object-fit: contain !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .feed-post-modal-mobile .feed-post-modal-comments-list {
        max-height: 300px !important;
        padding-right: 0.25rem !important;
    }
    
    .feed-post-modal-mobile .feed-post-modal-comment-item {
        padding: 0.875rem !important;
        margin-bottom: 0.6rem !important;
    }
    
    .feed-post-modal-mobile .feed-post-modal-comment-item img {
        width: 36px !important;
        height: 36px !important;
    }
    
    .feed-post-modal-mobile .feed-post-modal-comment-item strong {
        font-size: 0.9rem !important;
    }
    
    .feed-post-modal-mobile .feed-post-modal-comment-item p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    
    .feed-post-modal-mobile .feed-post-modal-comment-input {
        flex-direction: column !important;
        gap: 0.5rem !important;
    }
    
    .feed-post-modal-mobile .feed-post-modal-comment-input input {
        width: 100% !important;
        padding: 0.65rem !important;
        font-size: 0.9rem !important;
    }
    
    .feed-post-modal-mobile .feed-post-modal-comment-input button {
        width: 100% !important;
        padding: 0.65rem !important;
    }
    
    /* Close Button auf Mobile */
    .feed-post-modal-mobile .close-feed-post-modal {
        top: 0.5rem !important;
        right: 0.5rem !important;
        width: 36px !important;
        height: 36px !important;
        font-size: 1.5rem !important;
        background: rgba(0,0,0,0.7) !important;
    }
    
    /* Stats auf Mobile */
    .feed-post-modal-mobile .feed-post-modal-stats {
        padding: 0.75rem !important;
        gap: 0.75rem !important;
        flex-wrap: wrap !important;
    }
    
    /* Kommentare auf Mobile */
    .feed-post-modal-mobile .feed-post-modal-comments {
        padding-top: 1rem !important;
        margin-top: 0.5rem !important;
    }
    
    .feed-post-modal-mobile .feed-post-modal-comments h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .feed-post-modal-mobile .feed-post-modal-comment-input {
        gap: 0.5rem !important;
    }
    
    .feed-post-modal-mobile .feed-post-modal-comment-input input {
        padding: 0.65rem !important;
        font-size: 0.9rem !important;
    }
}

@media (max-width: 480px) {
    .feed-post-modal-mobile {
        padding: 0.75rem !important;
    }
    
    .feed-post-modal-mobile .post-modal-layout {
        gap: 0.75rem !important;
    }
    
    .feed-post-modal-mobile .feed-post-modal-header {
        gap: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }
    
    .feed-post-modal-mobile .feed-post-modal-header img {
        width: 36px !important;
        height: 36px !important;
    }
    
    .feed-post-modal-mobile .feed-post-modal-header strong {
        font-size: 0.95rem !important;
    }
    
    .feed-post-modal-mobile .feed-post-modal-bio {
        padding: 1rem !important;
        margin-top: 0.5rem !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
        overflow: visible !important;
        overflow-x: hidden !important;
        overflow-y: visible !important;
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
    }
    
    .feed-post-modal-mobile .feed-post-modal-bio > div {
        font-size: 0.95rem !important;
        margin-bottom: 0.65rem !important;
        gap: 0.5rem !important;
        flex-wrap: wrap !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: visible !important;
        overflow-x: hidden !important;
        overflow-y: visible !important;
        height: auto !important;
        max-height: none !important;
    }
    
    .feed-post-modal-mobile .feed-post-modal-bio i {
        font-size: 1.1rem !important;
        flex-shrink: 0 !important;
    }
    
    .feed-post-modal-mobile .feed-post-modal-bio p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        overflow: visible !important;
        overflow-x: hidden !important;
        overflow-y: visible !important;
        white-space: normal !important;
        height: auto !important;
        max-height: none !important;
        display: block !important;
    }
    
    .feed-post-modal-mobile .feed-post-modal-content {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
        overflow-x: hidden !important;
        overflow-y: visible !important;
    }
    
    .feed-post-modal-mobile .feed-post-modal-content p {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        overflow-x: hidden !important;
        white-space: normal !important;
    }
    
    .feed-post-modal-mobile .feed-post-modal-stats {
        width: 100% !important;
        box-sizing: border-box !important;
        flex-wrap: wrap !important;
    }
    
    .feed-post-modal-mobile .feed-post-modal-image {
        min-height: 150px !important;
    }
    
    .feed-post-modal-mobile .feed-post-modal-img {
        max-height: 50vh !important;
        object-fit: contain !important;
    }
    
    .feed-post-modal-mobile .feed-post-modal-comments-list {
        max-height: 250px !important;
    }
    
    .feed-post-modal-mobile .feed-post-modal-comment-item {
        padding: 0.75rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .feed-post-modal-mobile .feed-post-modal-comment-item img {
        width: 32px !important;
        height: 32px !important;
    }
    
    .feed-post-modal-mobile .feed-post-modal-comment-item strong {
        font-size: 0.85rem !important;
    }
    
    .feed-post-modal-mobile .feed-post-modal-comment-item p {
        font-size: 0.85rem !important;
    }
    
    .feed-post-modal-mobile .feed-post-modal-comment-input input {
        padding: 0.6rem !important;
        font-size: 0.85rem !important;
    }
    
    .feed-post-modal-mobile .feed-post-modal-comment-input button {
        padding: 0.6rem !important;
    }
    
    .feed-post-modal-mobile .close-feed-post-modal {
        top: 0.25rem !important;
        right: 0.25rem !important;
        width: 32px !important;
        height: 32px !important;
        font-size: 1.3rem !important;
    }
    
    .feed-post-modal-mobile .feed-post-modal-stats {
        padding: 0.6rem !important;
        gap: 0.6rem !important;
    }
    
    .feed-post-modal-mobile .feed-post-modal-comments h3 {
        font-size: 1rem !important;
    }
}

.feed-post-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.85rem 1rem 0.65rem 1rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.12) 100%);
    border-bottom: 1px solid rgba(255, 165, 0, 0.2);
    position: relative;
}

.feed-post-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 165, 0, 0.3), transparent);
}

.feed-post-user {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.feed-post-user {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feed-user-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffa500, #ff8c00, #ff7700);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 0.9rem;
    flex-shrink: 0;
    border: 2.5px solid rgba(255, 165, 0, 0.45);
    box-shadow: 
        0 4px 0 rgba(0, 0, 0, 0.25),
        0 4px 14px rgba(255, 165, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
    object-fit: cover;
    position: relative;
}

.feed-user-avatar::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.6), rgba(255, 140, 0, 0.4));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.feed-post-card:hover .feed-user-avatar {
    transform: scale(1.06) rotate(4deg);
    box-shadow: 
        0 5px 0 rgba(0, 0, 0, 0.2),
        0 6px 20px rgba(255, 165, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 165, 0, 0.6);
}

.feed-post-card:hover .feed-user-avatar::before {
    opacity: 1;
}

.feed-user-info {
    display: flex;
    flex-direction: column;
}

.feed-username {
    font-weight: 700;
    color: #ffffff;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    line-height: 1.3;
    letter-spacing: -0.1px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.feed-username:hover {
    color: #ffa500;
    text-shadow: 
        0 0 12px rgba(255, 165, 0, 0.6),
        0 2px 4px rgba(0, 0, 0, 0.4);
    transform: translateX(2px);
}

.feed-post-time {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.feed-post-time-info {
    margin-top: 0.35rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    padding: 0.4rem 0.65rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.28) 100%);
    border-radius: 10px;
    font-weight: 600;
    border: 1px solid rgba(255, 165, 0, 0.25);
    box-shadow: 0 2px 0 rgba(0,0,0,0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.25s ease;
}

.feed-post-time-info:hover {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.3) 100%);
    border-color: rgba(255, 165, 0, 0.3);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 4px 12px rgba(0, 0, 0, 0.4);
}

.feed-post-time-info i {
    color: rgba(255, 165, 0, 0.95);
    font-size: 0.95rem;
    filter: drop-shadow(0 1px 2px rgba(255, 165, 0, 0.3));
    transition: all 0.3s ease;
}

.feed-post-time-info:hover i {
    color: rgba(255, 165, 0, 1);
    filter: drop-shadow(0 2px 4px rgba(255, 165, 0, 0.4));
    transform: scale(1.1);
}

.feed-expires-in {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.2) 0%, rgba(255, 140, 0, 0.15) 100%) !important;
    padding: 0.4rem 1rem !important;
    border-radius: 14px !important;
    border: 1.5px solid rgba(255, 165, 0, 0.5) !important;
    font-weight: 700 !important;
    color: rgba(255, 165, 0, 1) !important;
    box-shadow: 
        0 3px 12px rgba(255, 165, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.feed-expires-in:hover {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.25) 0%, rgba(255, 140, 0, 0.2) 100%) !important;
    border-color: rgba(255, 165, 0, 0.65) !important;
    box-shadow: 
        0 4px 16px rgba(255, 165, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-1px);
}

.feed-post-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-items: center;
    margin-top: 0.5rem;
    width: 100%;
}

.feed-post-type-badge {
    padding: 0.4rem 0.85rem;
    border-radius: 12px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #000;
    box-shadow: 
        0 3px 0 rgba(0, 0, 0, 0.35),
        0 4px 10px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.4);
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.2px;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
}

.feed-post-type-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.feed-post-type-badge:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 5px 0 rgba(0, 0, 0, 0.25),
        0 6px 14px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
    border-color: rgba(255, 255, 255, 0.5);
}

.feed-post-type-badge:hover::before {
    left: 100%;
}

.feed-post-type-story {
    background: linear-gradient(45deg, #ff6b9d, #e91e63);
}

.feed-post-type-kurzbeitrag {
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
}

.feed-post-type-geschichte {
    background: linear-gradient(45deg, #f093fb, #f5576c);
}

.feed-post-type-rollenspiel {
    background: linear-gradient(45deg, #4facfe, #00f2fe);
}

.feed-topic-badge {
    padding: 0.4rem 0.85rem;
    border-radius: 12px;
    font-size: 0.78rem;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.28) 0%, rgba(37, 99, 235, 0.22) 100%);
    color: #60a5fa;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
    box-shadow: 
        0 3px 0 rgba(0, 0, 0, 0.3),
        0 4px 10px rgba(59, 130, 246, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(59, 130, 246, 0.5);
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.2px;
    position: relative;
    overflow: hidden;
}

.feed-topic-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.feed-topic-badge:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.35) 0%, rgba(37, 99, 235, 0.3) 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 5px 0 rgba(0, 0, 0, 0.2),
        0 6px 14px rgba(59, 130, 246, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    border-color: rgba(59, 130, 246, 0.65);
}

.feed-topic-badge:hover::before {
    left: 100%;
}

.feed-pinned-badge {
    padding: 0.5rem 1rem;
    border-radius: 14px;
    font-size: 0.85rem;
    font-weight: 700;
    background: rgba(255, 165, 0, 0.3);
    color: #ffa500;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 165, 0, 0.5);
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
}

.feed-content-warning {
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.25) 0%, rgba(255, 140, 0, 0.2) 100%);
    border-left: 4px solid #ff9800;
    border-radius: 12px;
    color: #ffa500;
    font-size: 0.85rem;
    line-height: 1.5;
    font-weight: 600;
    box-shadow: 
        0 2px 8px rgba(255, 152, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 152, 0, 0.3);
    border-top: 1px solid rgba(255, 152, 0, 0.2);
    border-bottom: 1px solid rgba(255, 152, 0, 0.2);
    margin-bottom: 0.75rem;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    display: block;
}

.feed-content-warning i {
    margin-right: 0.5rem;
    font-size: 0.9rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.feed-post-image {
    width: 100%;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    max-width: 100%;
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.feed-post-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    pointer-events: none;
}

.feed-post-image:hover::after {
    background: rgba(0, 0, 0, 0.1);
}

.feed-posts-container.feed-grid-view .feed-post-image {
    height: 160px;
    min-height: 160px;
    max-height: 160px;
    border-radius: 0;
    margin: 0;
    padding: 4px;
    background: rgba(0, 0, 0, 0.25);
    border: 1.5px solid rgba(255, 165, 0, 0.4);
    border-radius: 10px;
    box-shadow: 
        0 3px 0 rgba(0, 0, 0, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.feed-posts-container.feed-grid-view .feed-post-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 6px;
}

.feed-posts-container.feed-grid-view .feed-post-image:hover {
    border-color: rgba(255, 165, 0, 0.8);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(255, 165, 0, 0.3);
}

.feed-posts-container.feed-grid-view .feed-post-image:hover img {
    transform: scale(1.05);
}

.feed-posts-container.feed-scroll-view .feed-post-image {
    margin: 0.4rem 0;
    padding: 4px;
    background: rgba(0, 0, 0, 0.25);
    border: 1.5px solid rgba(255, 165, 0, 0.4);
    border-radius: 12px;
    box-shadow: 0 3px 0 rgba(0,0,0,0.25), 0 4px 14px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
    min-height: 120px;
}

.feed-posts-container.feed-scroll-view .feed-post-image img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 280px;
    object-fit: cover;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.2);
}

.feed-posts-container.feed-scroll-view .feed-post-image:hover {
    border-color: rgba(255, 165, 0, 0.8);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(255, 165, 0, 0.3);
}

.feed-post-content {
    color: rgba(255, 255, 255, 0.96);
    line-height: 1.55;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-size: 0.9rem;
    margin: 0;
    padding: 0.65rem 1rem;
    font-weight: 400;
    letter-spacing: 0.2px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, transparent 100%);
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.feed-post-content p {
    margin: 0;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.feed-mention {
    color: #ffa500;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
}

.feed-mention:hover {
    color: #ff8c00;
    text-decoration: underline;
}

.feed-hashtag {
    color: #4facfe;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
}

/* 3D Cartoon Style für Follower-Anzahl */
.feed-follower-count-3d {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.25) 0%, rgba(255, 140, 0, 0.2) 100%);
    border: 1.5px solid rgba(255, 165, 0, 0.4);
    border-radius: 10px;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 1px 0 rgba(255, 255, 255, 0.1) inset,
        0 -1px 0 rgba(0, 0, 0, 0.2) inset,
        0 0 8px rgba(255, 165, 0, 0.2);
    transform: perspective(100px) rotateX(2deg);
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(4px);
    animation: followerCountFloat 3s ease-in-out infinite;
}

.feed-follower-count-3d:hover {
    transform: perspective(100px) rotateX(0deg) translateY(-1px) scale(1.05);
    box-shadow: 
        0 3px 6px rgba(0, 0, 0, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.15) inset,
        0 -1px 0 rgba(0, 0, 0, 0.25) inset,
        0 0 12px rgba(255, 165, 0, 0.3);
    border-color: rgba(255, 165, 0, 0.6);
}

.feed-follower-count-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, transparent 100%);
    border-radius: 10px 10px 0 0;
    pointer-events: none;
}

.feed-follower-count-3d i {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

@keyframes followerCountFloat {
    0%, 100% {
        transform: perspective(100px) rotateX(2deg) translateY(0);
    }
    50% {
        transform: perspective(100px) rotateX(2deg) translateY(-2px);
    }
}

/* Animation für Follower-Anzahl-Update */
.feed-follower-count-3d.follower-count-updating {
    animation: followerCountUpdate 0.5s ease-out;
    transform: perspective(100px) rotateX(0deg) scale(1.1);
}

@keyframes followerCountUpdate {
    0% {
        transform: perspective(100px) rotateX(2deg) scale(1);
    }
    50% {
        transform: perspective(100px) rotateX(0deg) scale(1.15);
        box-shadow: 
            0 4px 8px rgba(0, 0, 0, 0.4),
            0 0 16px rgba(255, 165, 0, 0.4);
    }
    100% {
        transform: perspective(100px) rotateX(2deg) scale(1);
    }
}

@keyframes followerCountPop {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.8);
    }
    50% {
        opacity: 1;
        transform: translateY(-15px) scale(1.2);
    }
    100% {
        opacity: 0;
        transform: translateY(-25px) scale(1);
    }
}

.feed-hashtag:hover {
    color: #00f2fe;
    text-decoration: underline;
}

.feed-post-flairs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0;
}

.feed-flair {
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #000;
}

.feed-post-footer {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 0;
    padding: 0.65rem 1rem 0.85rem 1rem;
    border-top: 1px solid rgba(255, 165, 0, 0.25);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.12) 100%);
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.feed-post-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 165, 0, 0.3), transparent);
}

.feed-post-stats-container {
    width: 100%;
}

.feed-post-stats-group {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
    padding: 0.4rem 0.65rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.28) 100%);
    border-radius: 10px;
    border: 1px solid rgba(255, 165, 0, 0.25);
    box-shadow: 0 2px 0 rgba(0,0,0,0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.feed-stat-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.6rem;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.18) 0%, rgba(255, 140, 0, 0.14) 100%);
    border-radius: 10px;
    border: 1.5px solid rgba(255, 165, 0, 0.35);
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.78rem;
    font-weight: 700;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
    box-shadow: 0 2px 0 rgba(0,0,0,0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feed-stat-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 165, 0, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.feed-stat-item:hover {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.22) 0%, rgba(255, 140, 0, 0.18) 100%);
    border-color: rgba(255, 165, 0, 0.45);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 4px 12px rgba(255, 165, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.feed-stat-item:hover::before {
    width: 200px;
    height: 200px;
}

.feed-stat-item i {
    color: rgba(255, 165, 0, 1);
    font-size: 0.95rem;
    filter: drop-shadow(0 1px 2px rgba(255, 165, 0, 0.3));
    transition: all 0.3s ease;
}

.feed-stat-item:hover i {
    color: rgba(255, 165, 0, 1);
    filter: drop-shadow(0 2px 4px rgba(255, 165, 0, 0.5));
    transform: scale(1.1);
}

.feed-stat-value {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
}

.feed-stat-item.feed-stat-coins {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.3);
}

.feed-stat-item.feed-stat-coins i {
    color: #ffd700;
}

.feed-post-actions-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.feed-post-actions-primary {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.feed-post-actions-secondary {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feed-post-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.feed-action-btn {
    padding: 0.7rem 1.2rem;
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.95) 0%, rgba(40, 40, 40, 0.9) 100%);
    border: 2px solid rgba(255, 165, 0, 0.35);
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.95);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 600;
    position: relative;
    overflow: hidden;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.feed-action-btn.feed-action-like.active,
.feed-action-btn.active.feed-action-like {
    background: rgba(255, 107, 107, 0.2);
    border-color: rgba(255, 107, 107, 0.6);
    color: #ff6b6b;
}

.feed-action-btn.feed-action-like.active i,
.feed-action-btn.active.feed-action-like i {
    color: #ff6b6b !important;
}

.feed-action-btn.feed-action-like.active:hover,
.feed-action-btn.active.feed-action-like:hover {
    background: rgba(255, 107, 107, 0.3);
    border-color: rgba(255, 107, 107, 0.8);
    color: #ff6b6b;
}

.feed-action-btn.feed-action-push {
    background: rgba(255, 140, 0, 0.15);
    border-color: rgba(255, 140, 0, 0.4);
    color: rgba(255, 140, 0, 0.9);
}

.feed-action-btn.feed-action-gold {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.4);
    color: #ffd700;
}

.feed-action-btn.feed-action-delete {
    background: rgba(244, 67, 54, 0.15);
    border-color: rgba(244, 67, 54, 0.4);
    color: rgba(244, 67, 54, 0.9);
}

.feed-action-btn.feed-action-donate {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.4);
    color: #ffd700;
}

.feed-action-btn:hover {
    background: linear-gradient(135deg, rgba(55, 55, 55, 0.98) 0%, rgba(50, 50, 50, 0.95) 100%);
    border-color: rgba(255, 165, 0, 0.6);
    color: rgba(255, 255, 255, 1);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 6px 16px rgba(255, 165, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.feed-action-btn.feed-action-like.active {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%) !important;
    border-color: rgba(255, 107, 107, 0.5) !important;
    color: #fff !important;
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.5) !important;
}

.feed-action-btn.feed-action-like.active i.fa-heart {
    color: #fff !important;
}

.feed-action-btn.feed-action-like:not(.active) {
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%) !important;
    border-color: rgba(255, 165, 0, 0.4) !important;
}

.feed-action-btn.feed-action-like:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
}

.feed-action-btn.feed-action-like.active:hover {
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.5);
}


.feed-action-btn.feed-action-push:hover {
    background: rgba(255, 140, 0, 0.25);
    border-color: rgba(255, 140, 0, 0.6);
    color: rgba(255, 140, 0, 1);
}

.feed-action-btn.feed-action-gold:hover {
    background: rgba(255, 215, 0, 0.25);
    border-color: rgba(255, 215, 0, 0.6);
    color: #ffd700;
}

.feed-action-btn.feed-action-delete:hover {
    background: rgba(244, 67, 54, 0.25);
    border-color: rgba(244, 67, 54, 0.6);
    color: rgba(244, 67, 54, 1);
}

.feed-action-btn.feed-action-donate:hover {
    background: rgba(255, 215, 0, 0.25);
    border-color: rgba(255, 215, 0, 0.6);
    color: #ffd700;
}

/* Follow Button Styles */
.feed-follow-btn {
    padding: 0.4rem 0.85rem;
    font-size: 0.8rem;
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.95) 0%, rgba(40, 40, 40, 0.9) 100%);
    border: 2px solid rgba(255, 165, 0, 0.35);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 0.45rem;
    white-space: nowrap;
    font-weight: 600;
    box-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.feed-follow-btn:hover {
    background: linear-gradient(135deg, rgba(55, 55, 55, 0.98) 0%, rgba(50, 50, 50, 0.95) 100%);
    border-color: rgba(255, 165, 0, 0.55);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 4px 12px rgba(255, 165, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.feed-follow-btn.active {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.25) 0%, rgba(255, 140, 0, 0.2) 100%);
    border-color: rgba(255, 165, 0, 0.6);
    color: #ffa500;
}

.feed-follow-btn:hover {
    background: rgba(55, 55, 55, 0.95);
    border-color: rgba(255, 165, 0, 0.5);
    color: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.2);
}

.feed-follow-btn.active {
    background: rgba(255, 165, 0, 0.2);
    border-color: rgba(255, 165, 0, 0.6);
    color: #ffa500;
}

.feed-follow-btn.active:hover {
    background: rgba(255, 165, 0, 0.25);
    border-color: rgba(255, 165, 0, 0.7);
    color: #ffa500;
}

.feed-follow-btn.active i {
    color: #ffa500;
}

.feed-post-reactions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.25rem;
    padding-top: 0.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feed-reaction {
    padding: 3px 6px;
    background: rgba(45, 45, 45, 0.8);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.75rem;
}

.feed-reaction:hover {
    background: rgba(55, 55, 55, 0.9);
    transform: scale(1.1);
}

.feed-loading {
    text-align: center;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.feed-empty {
    text-align: center;
    padding: 3rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
}

/* Feed Modals */
#create-post-modal,
#create-community-post-modal,
#create-topic-modal,
#donate-modal,
#feed-post-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

#feed-post-modal {
    z-index: 10001;
    background-color: rgba(0, 0, 0, 0.8);
}

#create-post-modal .modal-content,
#create-community-post-modal .modal-content,
#create-topic-modal .modal-content,
#donate-modal .modal-content {
    background: rgba(30, 30, 30, 0.95);
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border: 2px solid rgba(255, 165, 0, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 165, 0, 0.2);
}

.modal-header h3 {
    color: #ffffff;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #ffa500;
}

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

.form-group label {
    display: block;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(45, 45, 45, 0.9);
    border: 2px solid rgba(255, 165, 0, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 165, 0, 0.6);
    box-shadow: 0 0 15px rgba(255, 165, 0, 0.2);
}

/* Enhanced Post Type Select Dropdown */
#post-type {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffa500' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 16px;
    padding-right: 50px;
    cursor: pointer;
}

#post-type:hover {
    border-color: rgba(255, 165, 0, 0.5);
    background-color: rgba(50, 50, 50, 0.95);
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.2);
}

#post-type:focus {
    border-color: rgba(255, 165, 0, 0.8);
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.4);
    background-color: rgba(40, 40, 40, 0.95);
}

#post-type option {
    background: rgba(30, 30, 30, 0.98);
    color: #ffffff;
    padding: 12px 18px;
    border: none;
}

#post-type option:hover,
#post-type option:focus,
#post-type option:checked {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
}

.image-upload-area {
    padding: 2rem;
    border: 2px dashed rgba(255, 165, 0, 0.3);
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
}

.image-upload-area:hover {
    border-color: rgba(255, 165, 0, 0.6);
    background: rgba(255, 165, 0, 0.05);
}

.image-upload-area i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
    color: #ffa500;
}

#post-image-preview {
    margin-top: 1rem;
    position: relative;
    display: inline-block;
}

#post-image-preview img {
    max-width: 100%;
    max-height: 300px;
    border-radius: 12px;
}

#post-image-preview button {
    position: absolute;
    top: -10px;
    right: -10px;
    background: rgba(255, 0, 0, 0.8);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.btn-link {
    background: none;
    border: none;
    color: #ffa500;
    cursor: pointer;
    text-decoration: underline;
    font-size: 0.9rem;
    padding: 0.5rem 0;
}

.btn-link:hover {
    color: #ff8c00;
}

/* Responsive Feed Styles */
@media (max-width: 1400px) {
    .feed-posts-container.feed-grid-view {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 1200px) {
    .feed-posts-container.feed-grid-view {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 900px) {
    .feed-posts-container.feed-grid-view {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 1024px) {
    .feed-layout {
        grid-template-columns: auto 1fr !important;
        gap: 1rem;
    }
    
    .feed-layout.sidebar-open {
        grid-template-columns: 220px 1fr !important;
    }
    
    .feed-sidebar {
        position: relative;
        top: 0;
    }
    
    .feed-sidebar-toggle {
        min-width: 160px;
    }
    
    .feed-posts-container.feed-grid-view {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .feed-posts-container.feed-grid-view .feed-post-image {
        height: 220px;
    }
    
    .feed-posts-container.feed-grid-view .feed-post-badges {
        gap: 0.5rem;
    }
    
    .feed-posts-container.feed-grid-view .feed-post-type-badge,
    .feed-posts-container.feed-grid-view .feed-topic-badge {
        padding: 0.4rem 0.85rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .feed-section {
        padding: 80px 0 15px;
    }
    
    .feed-header {
        flex-direction: column;
        gap: 0.5rem;
        align-items: stretch;
        margin-bottom: 0.75rem;
    }
    
    .feed-header .section-title {
        font-size: 1.5rem;
        margin-bottom: 0;
    }
    
    .feed-header .btn-primary {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        justify-content: center;
    }
    
    .feed-layout {
        grid-template-columns: 1fr !important;
        gap: 0.5rem;
    }
    
    .feed-layout.sidebar-open {
        grid-template-columns: 1fr !important;
    }
    
    .feed-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 0.5rem;
    }
    
    .feed-sidebar-toggle {
        width: 100%;
        min-width: 100%;
        font-size: 0.85rem;
        padding: 0.6rem 0.75rem;
        border-radius: 12px;
    }
    
    .feed-filters {
        flex-direction: column;
        padding: 0.75rem;
    }
    
    .feed-filters .filter-group {
        width: 100%;
        gap: 0.4rem;
    }
    
    .feed-filters .filter-group-label {
        font-size: 0.75rem;
        margin-bottom: 0.2rem;
    }
    
    .feed-filters .filter-btn {
        padding: 0.6rem 0.75rem;
        font-size: 0.8rem;
        border-radius: 10px;
    }
    
    .topic-select,
    .sort-select {
        padding: 0.6rem 30px 0.6rem 0.75rem;
        font-size: 0.8rem;
        border-radius: 10px;
    }
    
    .feed-filters .btn-secondary {
        padding: 0.6rem 0.75rem;
        font-size: 0.8rem;
        border-radius: 10px;
    }
    
    .feed-posts-container.feed-scroll-view {
        gap: 0.85rem;
        padding: 0 0.25rem;
    }
    
    .feed-posts-container.feed-grid-view {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 0 0.25rem;
    }
    
    .feed-header-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .feed-view-toggle {
        font-size: 0.85rem;
        padding: 0.55rem 0.85rem;
    }
    
    .feed-post-card {
        padding: 0.85rem;
        border-radius: 14px;
        margin-bottom: 0;
    }
    
    .feed-post-card.feed-post-text-only {
        padding: 0.9rem 0.85rem;
    }
    
    .feed-post-header {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .feed-post-user {
        gap: 0.5rem;
    }
    
    .feed-user-avatar {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
    }
    
    .feed-username {
        font-size: 0.85rem;
    }
    
    .feed-post-badges {
        gap: 0.4rem;
        margin-top: 0.25rem;
    }
    
    .feed-post-type-badge,
    .feed-topic-badge,
    .feed-pinned-badge {
        padding: 3px 8px;
        font-size: 0.7rem;
        border-radius: 10px;
    }
    
    .feed-post-time-info {
        font-size: 0.7rem;
        margin-top: 0.25rem;
        gap: 0.4rem;
    }
    
    .feed-content-warning {
        padding: 0.5rem;
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
        border-radius: 8px;
    }
    
    .feed-post-image {
        margin: 0.5rem 0;
        border-radius: 8px;
        max-width: 100%;
    }
    
    .feed-post-image img {
        max-height: 200px;
        border-radius: 8px;
    }
    
    .feed-post-content {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 0.5rem;
        padding: 0.6rem 0.85rem;
    }
    
    /* Text-only Posts am Handy: klarer, ohne fehlendes-Bild-Icon, gut lesbar */
    .feed-post-card.feed-post-text-only .feed-post-content {
        padding: 0.75rem 0.9rem;
        min-height: auto;
    }
    
    .feed-post-card.feed-post-text-only .feed-post-content p {
        -webkit-line-clamp: 4;
        line-clamp: 4;
    }
    
    .feed-post-flairs {
        gap: 0.4rem;
        margin-bottom: 0.5rem;
    }
    
    .feed-flair {
        padding: 3px 8px;
        font-size: 0.7rem;
        border-radius: 10px;
    }
    
    .feed-post-footer {
        gap: 0.75rem;
        margin-top: 0.5rem;
        padding-top: 0.5rem;
    }
    
    .feed-post-stats-group {
        padding: 0.4rem 0.5rem;
        gap: 0.5rem;
    }
    
    .feed-stat-item {
        padding: 0.35rem 0.6rem;
        font-size: 0.8rem;
        gap: 0.4rem;
        flex: 1;
        min-width: 70px;
        justify-content: center;
    }
    
    .feed-post-actions-container {
        gap: 0.5rem;
    }
    
    .feed-post-actions-primary {
        gap: 0.4rem;
        width: 100%;
    }
    
    .feed-post-actions-secondary {
        gap: 0.4rem;
        padding-top: 0.4rem;
        width: 100%;
    }
    
    /* Größere Touch-Ziele am Handy (min. 44px Höhe für bessere Bedienbarkeit) */
    .feed-action-btn {
        flex: 1;
        min-width: 0;
        min-height: 44px;
        padding: 0.65rem 0.85rem;
        font-size: 0.85rem;
        border-radius: 12px;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .feed-action-btn i {
        font-size: 0.95rem;
    }
    
    .feed-action-btn span {
        font-size: 0.85rem;
    }
    
    /* Auch in Grid-Ansicht am Handy: gleiche Touch-Ziele wie oben */
    .feed-posts-container.feed-grid-view .feed-action-btn {
        min-height: 44px;
        padding: 0.65rem 0.85rem;
        font-size: 0.85rem;
    }
    .feed-posts-container.feed-grid-view .feed-action-btn i {
        font-size: 0.95rem;
    }
    .feed-posts-container.feed-grid-view .feed-action-btn span {
        font-size: 0.85rem;
    }
    
    .feed-post-reactions {
        gap: 0.4rem;
        margin-top: 0.4rem;
        padding-top: 0.4rem;
    }
    
    .feed-reaction {
        padding: 3px 6px;
        font-size: 0.75rem;
        border-radius: 8px;
    }
    
    .feed-follower-count-3d {
        padding: 0.15rem 0.4rem;
        font-size: 0.65rem;
        border-radius: 8px;
    }
    
    .feed-follower-count-3d i {
        font-size: 0.6rem;
    }
    
    .feed-follow-btn {
        padding: 0.2rem 0.6rem !important;
        font-size: 0.7rem !important;
        border-radius: 10px !important;
    }
}

@media (max-width: 480px) {
    .feed-section {
        padding: 70px 0 10px;
    }
    
    .feed-header {
        margin-bottom: 0.5rem;
    }
    
    .feed-header .section-title {
        font-size: 1.25rem;
    }
    
    .feed-header .btn-primary {
        padding: 0.65rem 0.85rem;
        font-size: 0.85rem;
    }
    
    .feed-sidebar-toggle {
        padding: 0.55rem 0.65rem;
        font-size: 0.8rem;
    }
    
    .feed-filters {
        padding: 0.6rem;
        gap: 0.6rem;
    }
    
    .feed-filters .filter-group {
        gap: 0.35rem;
    }
    
    .feed-filters .filter-btn {
        padding: 0.5rem 0.65rem;
        font-size: 0.75rem;
    }
    
    .topic-select,
    .sort-select {
        padding: 0.55rem 28px 0.55rem 0.65rem;
        font-size: 0.75rem;
    }
    
    .feed-filters .btn-secondary {
        padding: 0.55rem 0.65rem;
        font-size: 0.75rem;
    }
    
    .feed-posts-container.feed-scroll-view {
        gap: 0.5rem;
    }
    
    .feed-posts-container.feed-grid-view {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .feed-posts-container.feed-grid-view .feed-post-image {
        height: 200px;
    }
    
    .feed-posts-container.feed-grid-view .feed-post-badges {
        gap: 0.4rem;
    }
    
    .feed-posts-container.feed-grid-view .feed-post-type-badge,
    .feed-posts-container.feed-grid-view .feed-topic-badge {
        padding: 0.35rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .feed-post-card {
        padding: 0.6rem;
        border-radius: 10px;
    }
    
    .feed-post-header {
        gap: 0.4rem;
        margin-bottom: 0.4rem;
    }
    
    .feed-user-avatar {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }
    
    .feed-username {
        font-size: 0.8rem;
    }
    
    .feed-post-badges {
        gap: 0.3rem;
    }
    
    .feed-post-type-badge,
    .feed-topic-badge,
    .feed-pinned-badge {
        padding: 2px 6px;
        font-size: 0.65rem;
    }
    
    .feed-post-time-info {
        font-size: 0.65rem;
        gap: 0.3rem;
    }
    
    .feed-content-warning {
        padding: 0.4rem;
        font-size: 0.75rem;
        margin-bottom: 0.4rem;
    }
    
    .feed-post-image {
        margin: 0.4rem 0;
        border-radius: 6px;
    }
    
    .feed-post-image img {
        max-height: 150px;
        border-radius: 6px;
    }
    
    .feed-post-content {
        font-size: 0.8rem;
        line-height: 1.35;
        margin-bottom: 0.4rem;
    }
    
    .feed-post-flairs {
        gap: 0.3rem;
        margin-bottom: 0.4rem;
    }
    
    .feed-flair {
        padding: 2px 6px;
        font-size: 0.65rem;
    }
    
    .feed-post-footer {
        gap: 0.6rem;
        margin-top: 0.4rem;
        padding-top: 0.4rem;
    }
    
    .feed-post-stats-group {
        padding: 0.35rem 0.4rem;
        gap: 0.4rem;
    }
    
    .feed-stat-item {
        padding: 0.3rem 0.5rem;
        font-size: 0.75rem;
        gap: 0.35rem;
        flex: 1;
        min-width: 60px;
    }
    
    .feed-stat-item i {
        font-size: 0.75rem;
    }
    
    .feed-post-actions-container {
        gap: 0.4rem;
    }
    
    .feed-post-actions-primary,
    .feed-post-actions-secondary {
        gap: 0.35rem;
    }
    
    .feed-action-btn {
        min-width: 60px;
        padding: 0.45rem 0.55rem;
        font-size: 0.7rem;
        border-radius: 8px;
        gap: 0.3rem;
    }
    
    .feed-action-btn i {
        font-size: 0.75rem;
    }
    
    .feed-action-btn span {
        font-size: 0.7rem;
    }
    
    .feed-action-btn span {
        font-size: 0.7rem;
    }
    
    .feed-post-reactions {
        gap: 0.3rem;
        margin-top: 0.3rem;
        padding-top: 0.3rem;
    }
    
    .feed-reaction {
        padding: 2px 5px;
        font-size: 0.7rem;
    }
    
    .feed-follower-count-3d {
        padding: 0.1rem 0.3rem;
        font-size: 0.6rem;
    }
    
    .feed-follower-count-3d i {
        font-size: 0.55rem;
    }
    
    .feed-follow-btn {
        padding: 0.15rem 0.5rem !important;
        font-size: 0.65rem !important;
        border-radius: 8px !important;
    }
}
    
    #create-post-modal .modal-content,
    #create-topic-modal .modal-content,
    #donate-modal .modal-content {
        width: 95%;
        padding: 1.5rem;
    }
}

/* Permanent Like State Enforcement */
.post-like-btn.liked,
.post-like-btn.liked:disabled,
button.post-like-btn.liked[disabled] {
    color: #f44336 !important;
    background: rgba(244, 67, 54, 0.1) !important;
    border-color: rgba(244, 67, 54, 0.5) !important;
    opacity: 1 !important;
    cursor: default !important;
    pointer-events: none !important;
}

.post-like-btn.liked i,
.post-like-btn.liked:disabled i {
    color: #f44336 !important;
    font-weight: 900 !important; /* Force solid style */
}

/* Ensure Feed actions assume similar style if they share classes */
.feed-action-like.active {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%) !important;
    border-color: rgba(255, 107, 107, 0.5) !important;
    color: #fff !important;
    opacity: 1 !important;
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.5) !important;
}

.feed-action-like.active i.fa-heart {
    color: #fff !important;
}

/* Mobile-specific: Ensure immediate visual feedback */
@media (max-width: 768px) {
    .feed-action-btn.feed-action-like.active {
        background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%) !important;
        border-color: rgba(255, 107, 107, 0.5) !important;
        color: #fff !important;
        box-shadow: 0 4px 20px rgba(255, 107, 107, 0.5) !important;
        opacity: 1 !important;
    }
    
    .feed-action-btn.feed-action-like.active i.fa-heart {
        color: #fff !important;
    }
}

/* === Critical path: moved from index.html for performance (dropdown, cacheable) === */
/* Overlay nur für Klick-zum-Schließen – transparent, Hintergrund bleibt unverändert */
.dropdown-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent !important;
    z-index: 10002;
    display: none;
    touch-action: none;
    -webkit-tap-highlight-color: transparent;
    pointer-events: none;
}

.dropdown-overlay.show {
    display: block;
    pointer-events: auto;
}

/* Beim geöffneten Menü nur Scroll sperren – kein Body-Overwrite, Hintergrund bleibt normal */
body.dropdown-open {
    overflow: hidden !important;
}

#dropdown-menu {
    position: fixed !important;
    z-index: 10003 !important;
    display: none !important;
    flex-direction: column !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    touch-action: pan-y !important;
    -webkit-tap-highlight-color: transparent !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    bottom: auto !important;
    min-width: auto !important;
    transform: none !important;
    contain: layout style !important;
}

#dropdown-menu.show {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    position: fixed !important;
}

@media (min-width: 769px) {
    #dropdown-menu {
        max-width: 280px !important;
        width: 280px !important;
        border-radius: 15px !important;
        border: 2px solid rgba(255, 165, 0, 0.3) !important;
        box-shadow:
            0 20px 40px rgba(0, 0, 0, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
        background: rgba(45, 45, 45, 0.98) !important;
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease !important;
        position: fixed !important;
        top: auto !important;
        right: auto !important;
        left: auto !important;
        bottom: auto !important;
    }
}

/* Mobile Navbar - critical path from index.html (no blur for scroll performance) */
@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 0 !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1000 !important;
        background: rgba(20, 20, 20, 0.98) !important;
        border-bottom: 1px solid rgba(255, 165, 0, 0.2) !important;
    }
    body {
        padding-top: 56px !important;
    }
}
@media (max-width: 480px) {
    body {
        padding-top: 52px !important;
    }
}

/* Beichten Section – immer unter der Navbar, übersichtliches Layout */
.beichten-section {
    padding: 80px 0 2rem;
    min-height: 50vh;
    box-sizing: border-box;
}
.beichten-section .container {
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 900px;
    margin: 0 auto;
}
.beichten-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-top: 1px solid rgba(255,165,0,0.3);
    background: rgba(0,0,0,0.15);
    border-radius: 12px;
    padding: 1rem 1.25rem;
}
.beichten-header .section-title {
    margin: 0;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.beichten-header-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}
.beichten-sort-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}
.beichten-sort-select,
.beichten-timeframe-select {
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    border-radius: 10px;
    border: 1px solid rgba(255,165,0,0.5);
    background: rgba(30,30,30,0.95);
    color: rgba(255,255,255,0.95);
    font-size: 0.9rem;
    min-height: 42px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(255,165,0,0.9)' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.6rem center;
    transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}
.beichten-sort-select:hover,
.beichten-timeframe-select:hover {
    border-color: rgba(255,165,0,0.75);
    background-color: rgba(45,45,45,0.95);
}
.beichten-sort-select:focus,
.beichten-timeframe-select:focus {
    outline: none;
    border-color: #ffa500;
    box-shadow: 0 0 0 2px rgba(255,165,0,0.25);
}
.beichten-view-toggle {
    padding: 0.5rem 0.75rem;
    border-radius: 10px;
    border: 1px solid rgba(255,165,0,0.5);
    background: rgba(30,30,30,0.95);
    color: rgba(255,255,255,0.9);
    cursor: pointer;
    font-size: 0.9rem;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: border-color 0.2s, background-color 0.2s, color 0.2s;
}
.beichten-view-toggle:hover {
    border-color: rgba(255,165,0,0.75);
    background: rgba(45,45,45,0.95);
    color: #ffa500;
}
.beichten-view-toggle:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255,165,0,0.25);
}
.beichten-view-toggle i {
    color: rgba(255,165,0,0.9);
}
.beichten-section #beichten-create-btn {
    min-height: 44px;
    padding: 0.5rem 1rem;
    white-space: nowrap;
}
.beichten-posts-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.beichten-posts-container.beichten-grid-view {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}
.beichten-post-card {
    background: rgba(40,40,40,0.8);
    border: 1px solid rgba(255,165,0,0.2);
    border-radius: 12px;
    padding: 1rem;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
}
.beichten-post-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
/* Gepushte Beichte: gelbe Umrandung, klar hervorgehoben und „oben“ sichtbar */
.beichten-post-card.beichten-pushed {
    border: 2px solid #ffc107;
    box-shadow: 0 0 0 1px rgba(255,193,7,0.4), 0 0 12px rgba(255,193,7,0.2);
    background: rgba(50,48,30,0.85);
}
.beichten-badge-pushed {
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: #1a1a1a;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
}
.beichten-post-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}
.beichten-badge-hot {
    background: linear-gradient(90deg, #ff6b35, #f44336);
    color: #fff;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}
.beichten-post-author {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}
.beichten-post-time {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
}
.beichten-post-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #fff;
}
.beichten-post-content {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}
.beichten-post-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}
.beichten-vote-row {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.beichten-vote-btn {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    padding: 0.25rem;
}
.beichten-vote-btn:hover {
    color: #ffa500;
}
.beichten-vote-btn.beichten-vote-active.beichten-vote-up {
    color: #4caf50;
}
.beichten-vote-btn.beichten-vote-active.beichten-vote-down {
    color: #f44336;
}
.beichten-vote-score {
    min-width: 2rem;
    text-align: center;
    font-weight: 600;
    color: #fff;
}
.beichten-action-btn {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    font-size: 0.85rem;
    padding: 0.25rem 0.5rem;
}
.beichten-action-btn:hover {
    color: #ffa500;
}
.beichten-report-btn { color: rgba(255,255,255,0.6); }
.beichten-delete-btn {
    color: rgba(255, 100, 100, 0.95);
}
.beichten-delete-btn:hover {
    color: #ff6b6b;
}
.beichten-push-btn,
.beichten-push-buy-btn {
    color: rgba(255,165,0,0.9);
}
.beichten-empty,
.beichten-error {
    text-align: center;
    padding: 2.5rem 1.5rem;
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    line-height: 1.5;
    max-width: 100%;
    box-sizing: border-box;
    background: rgba(0,0,0,0.12);
    border-radius: 12px;
    border: 1px dashed rgba(255,165,0,0.2);
}
.beichten-loading {
    text-align: center;
    padding: 1.5rem;
    color: rgba(255,255,255,0.7);
}
.beichten-netiquette {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
}
.beichten-detail-content {
    white-space: pre-wrap;
    margin: 1rem 0;
}
.beichten-detail-vote-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
}
/* Beichten-Kommentare: visuell erkennbar, Username getrennt, keine Uhrzeit/Datum */
.beichten-detail-comment {
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 165, 0, 0.2);
    font-size: 0.95rem;
}
.beichten-detail-comment:last-child {
    margin-bottom: 0;
}
.beichten-comment-author {
    font-weight: 700;
    color: #ffa500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}
.beichten-comment-text {
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.5;
    white-space: pre-wrap;
    word-break: break-word;
}
#beichten-detail-comments {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.beichten-no-comments {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    padding: 1rem 0;
}
.beichten-detail-comment-form {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}
.beichten-detail-comment-form textarea {
    flex: 1;
    padding: 0.5rem;
    border-radius: 6px;
    border: 1px solid rgba(255,165,0,0.3);
    background: rgba(0,0,0,0.3);
    color: #fff;
}
#beichten-post-detail-modal .modal-content {
    max-width: 560px;
}
.beichten-promo-block .beichten-promo-item {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}
.beichten-promo-block .beichten-promo-item a {
    color: #ffa500;
    text-decoration: none;
}
.beichten-promo-block .beichten-promo-item a:hover {
    text-decoration: underline;
}

/* Beichten – Responsive / Mobile (Button immer sichtbar) */
#beichten-create-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    visibility: visible !important;
}
@media (max-width: 768px) {
    .beichten-section {
        padding: 80px 0 1.5rem;
    }
    .beichten-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .beichten-header {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    .beichten-header .section-title {
        font-size: 1.35rem;
    }
    .beichten-header-actions {
        gap: 0.5rem;
    }
    .beichten-sort-select,
    .beichten-timeframe-select {
        min-width: 0;
    }
    .beichten-posts-container {
        gap: 0.85rem;
    }
    .beichten-posts-container.beichten-grid-view {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    .beichten-post-card {
        padding: 0.85rem;
    }
    .beichten-post-title {
        font-size: 1rem;
    }
    .beichten-post-content {
        font-size: 0.9rem;
    }
    .beichten-empty,
    .beichten-error {
        padding: 1.5rem 1rem;
        font-size: 1rem;
    }
    .beichten-detail-comment-form {
        flex-direction: column;
    }
    .beichten-detail-comment-form textarea {
        min-height: 80px;
    }
}

@media (max-width: 480px) {
    .beichten-section {
        padding: 70px 0 1rem;
    }
    .beichten-section .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    .beichten-header .section-title {
        font-size: 1.2rem;
    }
    .beichten-sort-row {
        flex-direction: column;
    }
    .beichten-sort-select,
    .beichten-timeframe-select {
        width: 100%;
    }
    .beichten-posts-container.beichten-grid-view {
        grid-template-columns: 1fr;
    }
    .beichten-post-card {
        padding: 0.75rem;
    }
    .beichten-post-footer {
        gap: 0.5rem;
    }
    .beichten-vote-btn,
    .beichten-action-btn {
        min-height: 44px;
        padding: 0.35rem 0.5rem;
    }
    .beichten-empty,
    .beichten-error {
        padding: 1.25rem 0.75rem;
        font-size: 0.95rem;
    }
    #beichten-post-detail-modal .modal-content {
        max-width: 100%;
        margin: 0.5rem;
    }
    #create-beichten-modal .modal-content,
    #report-beichten-modal .modal-content {
        max-width: 100%;
        margin: 0.5rem;
        width: calc(100% - 1rem);
    }
}