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

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;
}

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.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 165, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 60% 30%, rgba(255, 100, 100, 0.03) 0%, transparent 60%),
        radial-gradient(circle at 30% 70%, rgba(255, 80, 80, 0.02) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(45, 45, 45, 0.95);
    backdrop-filter: blur(20px);
    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);
}

.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);
}

.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);
}

.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;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    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);
}

.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%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

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

/* Floating Cards */
.hero-visual {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: rgba(45, 45, 45, 0.9);
    backdrop-filter: blur(20px);
    padding: 1rem;
    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;
    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: 120px;
    height: 100px;
    font-size: 0.9rem;
}

.floating-card:hover {
    transform: translateY(-10px) scale(1.05) rotateX(5deg);
    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 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));
}

.card-1 {
    top: 30px;
    left: 20px;
    animation-delay: 0s;
}

.card-2 {
    top: 30px;
    right: 20px;
    animation-delay: 1s;
}

.card-3 {
    top: 150px;
    left: 20px;
    animation-delay: 2s;
}

.card-4 {
    top: 150px;
    right: 20px;
    animation-delay: 3s;
}

.card-5 {
    top: 270px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 4s;
}

@keyframes float3D {
    0%, 100% { 
        transform: translateY(0px) rotateX(0deg);
    }
    50% { 
        transform: translateY(-20px) rotateX(5deg);
    }
}

/* 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;
}

.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;
}

.shop-category {
    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);
}

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

/* Coin Packages */
.coin-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.coin-package {
    background: rgba(30, 30, 30, 0.8);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    border: 2px solid rgba(255, 165, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.coin-package:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 165, 0, 0.5);
    box-shadow: 0 15px 30px rgba(255, 165, 0, 0.2);
}

.coin-package.popular {
    border-color: rgba(79, 172, 254, 0.5);
    background: rgba(30, 30, 30, 0.9);
}

.coin-package.vip {
    border-color: rgba(255, 215, 0, 0.5);
    background: rgba(30, 30, 30, 0.9);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #4facfe, #00f2fe);
    color: #000;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(79, 172, 254, 0.5);
}

.vip-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

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

.package-price {
    color: #ffa500;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 165, 0, 0.5);
}

.package-coins {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.package-coins i {
    font-size: 2rem;
    color: #ffa500;
    text-shadow: 0 0 10px rgba(255, 165, 0, 0.5);
}

.package-coins span {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
}

.bonus {
    color: #4caf50 !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
}

.package-bonus {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.package-bonus i {
    color: #ffd700;
    font-size: 1.2rem;
}

.package-bonus span {
    color: #ffd700;
    font-weight: 600;
    font-size: 0.9rem;
}

/* 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;
}

.chat-container {
    max-width: 1000px; /* Erweitert von 800px auf 1000px */
    margin: 0 auto;
    background: rgba(45, 45, 45, 0.9);
    border-radius: 20px;
    overflow: hidden;
    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);
}

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

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

.chat-info {
    font-size: 0.9rem;
    opacity: 0.8;
}

.chat-messages {
    height: 700px; /* Erhöht von 600px auf 700px */
    overflow-y: auto;
    padding: 1rem;
    background: rgba(30, 30, 30, 0.8);
    max-height: 700px; /* Feste Höhe, wird nicht größer */
}

.message {
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 15px;
    max-width: 80%; /* Erweitert von 70% auf 80% */
    word-wrap: break-word;
    border: 2px solid transparent;
    min-width: 200px; /* Mindestbreite für bessere Lesbarkeit */
}

.message.user {
    background: linear-gradient(45deg, #ffa500, #ff8c00);
    color: #000;
    margin-left: auto;
    border-bottom-right-radius: 5px;
    border-color: rgba(255, 165, 0, 0.5);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.message.other {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 165, 0, 0.2);
    border-bottom-left-radius: 5px;
    backdrop-filter: blur(10px);
}

.message-header {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    opacity: 0.8;
}

.message-time {
    font-size: 0.7rem;
    opacity: 0.6;
    margin-top: 0.25rem;
}

.chat-input-container {
    display: flex;
    padding: 1rem;
    background: rgba(45, 45, 45, 0.9);
    border-top: 2px solid rgba(255, 165, 0, 0.3);
}

#chat-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid rgba(255, 165, 0, 0.3);
    border-radius: 25px;
    outline: none;
    font-size: 1rem;
    margin-right: 0.5rem;
    background: rgba(30, 30, 30, 0.8);
    color: #ffffff;
}

#chat-input:focus {
    border-color: #ffa500;
    box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.2);
}

#chat-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

#send-btn {
    padding: 12px 16px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 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);
}

/* 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;
    }
    
    .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 12px !important;
        min-width: 48px !important;
        min-height: 48px !important;
        gap: 0.4rem !important;
        border-radius: 24px !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;
    }
    
    .user-avatar {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.9rem !important;
    }
    
    .user-name {
        display: none !important; /* Verstecke Namen auf sehr kleinen Screens */
    }
    
    .dropdown-arrow {
        display: none !important; /* Verstecke Pfeil auf Mobile für kompakteres Design */
    }
    
    /* Alternative: Zeige nur Avatar als Icon-Button auf sehr kleinen Screens */
    @media (max-width: 480px) {
        .user-profile-btn {
            padding: 8px;
            min-width: 48px;
            min-height: 48px;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            justify-content: center;
        }
        
        .user-avatar {
            width: 36px;
            height: 36px;
            font-size: 1rem;
        }
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .floating-card {
        position: relative;
        margin: 0.5rem auto;
        width: 120px;
        height: 100px;
    }
    
    .hero-visual {
        height: auto;
        margin-top: 2rem;
    }
    
    .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;
    }
    
    .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;
    }
    
    .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: 600px; /* Angepasste Höhe für mobile Geräte */
        max-height: 600px;
    }
    
    .chat-container {
        max-width: 95%; /* Vollbreite auf mobilen Geräten */
        margin: 0 2.5%;
    }
    
    .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 */
.mobile-nav-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(20px);
    border-top: 2px solid rgba(255, 165, 0, 0.3);
    padding: 1rem;
    display: none;
    z-index: 1000;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
    pointer-events: auto;
}

.mobile-nav-buttons .nav-button {
    background: linear-gradient(45deg, #ffa500, #ff8c00);
    color: #000;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    min-height: 48px;
    justify-content: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(255, 165, 0, 0.5);
    user-select: none;
}

.mobile-nav-buttons .nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
}

.mobile-nav-buttons .nav-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.mobile-nav-buttons .nav-button.secondary:hover {
    background: rgba(255, 165, 0, 0.2);
    border-color: rgba(255, 165, 0, 0.5);
}

/* 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); }
}

/* ========================================
   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(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

/* Community Post Card */
.community-post-card {
    background: rgba(45, 45, 45, 0.9);
    border-radius: 20px;
    overflow: hidden;
    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);
    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: 300px;
    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: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.post-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.post-actions {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
    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: 20px;
    padding: 8px 16px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
}

.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-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);
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
    max-height: 300px;
    overflow-y: auto;
}

.comment-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 0.75rem;
    border-left: 3px solid rgba(255, 165, 0, 0.5);
}

.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;
}

.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.9rem;
    margin: 0.5rem 0 0 0;
    line-height: 1.4;
}

.comment-input {
    display: flex;
    gap: 0.5rem;
}

.comment-input input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 10px 16px;
    color: #ffffff;
    font-size: 0.9rem;
}

.comment-input input:focus {
    outline: none;
    border-color: rgba(255, 165, 0, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.comment-input button {
    background: linear-gradient(45deg, #ffa500, #ff8c00);
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    color: #000;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.comment-input button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
}

/* 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;
    }
}