@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #3b82f6;
    --primary-hover: #2563eb;
    --secondary: #1e293b;
    --accent: #1e40af;
    --danger: #ef4444;
    --dark: #0f172a;
    --light: #f1f5f9;
    --gray: #64748b;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 35%, #0f172a 100%);
    background-attachment: fixed;
    color: var(--white);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

main {
    flex: 1;
    padding: 1rem 0;
}

/* Header */
header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.75rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

header.scrolled {
    padding: 0.5rem 0;
    background: rgba(15, 23, 42, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white);
    font-weight: 700;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 1001;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 45px;
    width: 45px;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.logo:hover img {
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    background: rgba(30, 41, 59, 0.6);
    padding: 8px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

nav a {
    color: var(--light);
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
    position: relative;
    white-space: nowrap;
}

nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav a:hover {
    background: rgba(59, 130, 246, 0.1);
    color: var(--white);
    transform: translateY(-2px);
}

nav a:hover::before {
    width: 80%;
}

nav a.active {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

nav a.active::before {
    width: 0;
}

/* Mobile Navigation */
.mobile-nav-toggle {
    display: none;
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    padding: 10px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 1001;
}

.mobile-nav-toggle:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: var(--primary);
    transform: scale(1.05);
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    backdrop-filter: blur(5px);
}

.mobile-nav-overlay.active {
    display: block;
}

/* User Menu Styles */
.user-menu-container {
    position: relative;
}

.user-menu-trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 10px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--white);
    backdrop-filter: blur(10px);
    font-weight: 500;
}

.user-menu-trigger:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.2);
}

.user-menu-trigger img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.user-menu-trigger:hover img {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.user-menu-trigger i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.user-menu-trigger.open i {
    transform: rotate(180deg);
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    min-width: 220px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 8px;
    overflow: hidden;
}

.user-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.user-dropdown-userinfo {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
}

.user-dropdown-username {
    font-weight: 600;
    color: var(--white);
    font-size: 15px;
}

.user-dropdown-guthaben {
    font-size: 14px;
    color: var(--accent);
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.user-dropdown-guthaben i {
    font-size: 14px;
    color: #f59e0b;
}

.user-dropdown-item a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.user-dropdown-item a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    transition: width 0.3s ease;
    z-index: -1;
}

.user-dropdown-item a:hover {
    color: var(--white);
    padding-left: 24px;
}

.user-dropdown-item a:hover::before {
    width: 4px;
}

.user-dropdown-item i {
    width: 18px;
    font-size: 16px;
    text-align: center;
}

/* Hero Section */
.hero {
    background: var(--gradient);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Services Section */
.services {
    padding: 6rem 2rem;
    background: var(--secondary);
}

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

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--white);
}

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

.service-card {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.service-card p {
    color: var(--light);
    margin-bottom: 1.5rem;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
}

/* Buttons */
.btn-primary {
    background: var(--gradient);
    color: var(--white);
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Rating System */
.sterne {
    color: var(--primary);
    font-size: 1.2em;
}

.sterne .stern {
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    margin-right: 2px;
}

.sterne .stern:hover {
    transform: scale(1.2);
    filter: brightness(1.2);
}

.sterne .stern.gefuellt {
    color: var(--primary);
}

/* Star Rating Interactive */
.star-rating {
    display: flex;
    gap: 5px;
    margin: 10px 0;
}

.star {
    font-size: 24px;
    color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.star:hover,
.star.hover {
    color: var(--primary);
    transform: scale(1.2);
}

.star.selected {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.rating-text {
    margin-left: 10px;
    color: var(--light);
    font-weight: 500;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 500;
}

textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    background: rgba(30, 41, 59, 0.5);
    color: var(--white);
    font-family: inherit;
    resize: vertical;
    min-height: 100px;
}

textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Products Page Styles */
.products-container {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.products-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.products-container > div:first-of-type {
    text-align: center;
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    color: var(--light);
    font-size: 0.9em;
    backdrop-filter: blur(10px);
}

.kategorien-tabs {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--dark);
    -webkit-overflow-scrolling: touch;
    contain: content;
}

.kategorie-tab {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    contain: content;
}

.kategorie-tab:hover,
.kategorie-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.kategorie-tab.empty {
    opacity: 0.5;
    cursor: not-allowed;
}

.product-count {
    font-size: 0.875rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .produkte-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        padding: 1rem;
    }

    .kategorien-tabs {
        padding: 0.75rem;
    }

    .kategorie-tab {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

.produkte-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 1.5rem;
    will-change: transform;
    contain: layout style paint;
}

.gaming-product-card {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease;
    position: relative;
    contain: content;
    transform: translateZ(0);
}

.gaming-product-card:hover {
    transform: translateY(-5px);
}

.product-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: rgba(15, 23, 42, 0.3);
    contain: strict;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateZ(0);
}

.product-content {
    padding: 1.25rem;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.gaming-product-card .product-description {
    font-size: 0.875rem;
    color: var(--light);
    margin-bottom: 1.25rem;
    line-height: 1.5;
    max-height: 120px !important;
    overflow-y: auto !important;
    scrollbar-width: thin;
    scrollbar-color: rgba(59, 130, 246, 0.6) rgba(30, 41, 59, 0.3);
    padding-right: 8px;
    position: relative;
}

.gaming-product-card .product-description::-webkit-scrollbar {
    width: 8px;
}

.gaming-product-card .product-description::-webkit-scrollbar-track {
    background: rgba(30, 41, 59, 0.3);
    border-radius: 6px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.gaming-product-card .product-description::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.6), rgba(16, 185, 129, 0.4));
    border-radius: 6px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.gaming-product-card .product-description::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.kategorien-tabs {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--dark);
    -webkit-overflow-scrolling: touch;
    contain: content;
}

.kategorie-tab {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    contain: content;
}

.kategorie-tab:hover,
.kategorie-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.kategorie-tab.empty {
    opacity: 0.5;
    cursor: not-allowed;
}

.product-count {
    font-size: 0.875rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .produkte-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        padding: 1rem;
    }

    .kategorien-tabs {
        padding: 0.75rem;
    }

    .kategorie-tab {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

.product-image-wrapper {
    flex: 1.2;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 0;
    position: relative;
}

.product-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(transparent, rgba(30, 41, 59, 0.8));
    pointer-events: none;
}

.product-image-wrapper.no-image {
    color: var(--primary);
    font-size: 3.5rem;
    text-shadow: 0 0 20px currentColor;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gaming-product-card:hover .product-image {
    transform: scale(1.05);
}

.product-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
}

.product-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.product-price {
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.75rem;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.product-description {
    color: var(--light);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    opacity: 0.9;
}

.product-actions {
    margin-top: auto;
}

.add-to-cart-btn,
.login-required-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.add-to-cart-btn {
    background: linear-gradient(135deg, var(--primary), #2563eb);
    color: var(--white);
    border: 1px solid var(--primary);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.add-to-cart-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.6s ease;
}

.add-to-cart-btn:hover::before {
    left: 100%;
}

.add-to-cart-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb, var(--primary));
}

.login-required-btn {
    background: rgba(100, 116, 139, 0.6);
    color: var(--light);
    border: 1px solid rgba(100, 116, 139, 0.4);
    backdrop-filter: blur(10px);
}

.login-required-btn:hover {
    background: rgba(100, 116, 139, 0.8);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(100, 116, 139, 0.3);
}

.no-products {
    text-align: center;
    padding: 5rem 2rem;
    color: var(--light);
    grid-column: 1 / -1;
    background: rgba(30, 41, 59, 0.3);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    backdrop-filter: blur(10px);
}

.no-products i {
    font-size: 5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

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

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.products-loading {
    opacity: 0.5;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.kategorie-tab.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Verbesserte Performance für Animationen */
.gaming-product-card,
.kategorie-tab,
.add-to-cart-btn,
.login-required-btn {
    will-change: transform;
}

/* Reduced motion für Accessibility */
@media (prefers-reduced-motion: reduce) {
    .gaming-product-card {
        transition: none;
    }
    
    .fade-in {
        animation: none;
        opacity: 1;
        transform: none;
    }
    
    .kategorie-tab::before,
    .add-to-cart-btn::before {
        display: none;
    }
}

/* Bewerbungsbestätigung Styles */
.application-success-card,
.affiliate-success-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 2px solid var(--success);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    animation: successSlideIn 0.8s ease;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

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

.success-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.success-icon {
    font-size: 3rem;
    color: var(--success);
    margin-bottom: 1rem;
    animation: successPulse 2s ease-in-out infinite;
}

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

.success-header h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.application-details,
.application-summary {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.application-details p,
.summary-grid .summary-item {
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
}

.summary-grid {
    display: grid;
    gap: 0.75rem;
}

.summary-item .label {
    font-weight: 600;
    color: var(--light);
}

.summary-item .value {
    color: var(--white);
    font-weight: 500;
}

.next-steps-box,
.next-steps-affiliate {
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary);
}

.next-steps-box h4,
.next-steps-affiliate h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.next-steps-box ul,
.steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.next-steps-box li,
.steps-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--light);
}

.next-steps-box li i,
.steps-list li i {
    color: var(--success);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.success-actions,
.success-actions-affiliate {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.btn-secondary,
.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover,
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

/* Mobile Anpassungen für Bestätigungen */
@media (max-width: 768px) {
    .application-success-card,
    .affiliate-success-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .success-actions,
    .success-actions-affiliate {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-secondary,
    .btn-outline,
    .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }
    
    .success-header h3 {
        font-size: 1.3rem;
    }
    
    .success-icon {
        font-size: 2.5rem;
    }
}

/* Error Message Styling */
.error-message {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(192, 57, 43, 0.1) 100%);
    border: 2px solid #e74c3c;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    color: #e74c3c;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}

.error-message i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--success), #059669);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.4s ease;
    max-width: 350px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.toast-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-notification .toast-icon {
    display: inline-block;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.toast-notification .toast-message {
    font-weight: 600;
}

@media (max-width: 768px) {
    .toast-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

.no-products h3 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    color: var(--white);
    font-weight: 700;
}

/* Support/Contact Page Styles */
.support-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    min-height: 600px;
}

.conversations-list {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    overflow: hidden;
}

.conversations-list-header {
    background: rgba(59, 130, 246, 0.1);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.conversations-list-header h2 {
    color: var(--white);
    margin: 0;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.conversations-list-header i {
    color: var(--primary);
}

.conversations {
    max-height: 500px;
    overflow-y: auto;
}

.conversation-item {
    display: block;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    text-decoration: none;
    color: var(--light);
    transition: all 0.3s ease;
}

.conversation-item:hover,
.conversation-item.active {
    background: rgba(59, 130, 246, 0.1);
    color: var(--white);
}

.conversation-item h3 {
    color: var(--white);
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.conversation-item p {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
}

.conversation-meta {
    font-size: 0.8rem;
    color: var(--gray);
}

.status {
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status.open {
    background: rgba(16, 185, 129, 0.2);
    color: var(--accent);
}

.status.admin_reply {
    background: rgba(59, 130, 246, 0.2);
    color: var(--primary);
}

.status.closed {
    background: rgba(100, 116, 139, 0.2);
    color: var(--gray);
}

.no-conversations {
    text-align: center;
    padding: 3rem 1.5rem;
    color: var(--light);
}

.no-conversations i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.no-conversations h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.chat-window {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chat-header {
    background: rgba(59, 130, 246, 0.1);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    color: var(--white);
    margin: 0;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.messages-area {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    max-height: 400px;
}

.message {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    max-width: 80%;
}

.message.user {
    background: var(--primary);
    color: var(--white);
    margin-left: auto;
}

.message.admin {
    background: rgba(59, 130, 246, 0.1);
    color: var(--white);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.message-sender {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.message-body {
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.message-meta {
    font-size: 0.8rem;
    opacity: 0.7;
}

.chat-reply-area {
    padding: 1.5rem;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.chat-reply-area form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-reply-area textarea {
    width: 100%;
    min-height: 80px;
    resize: vertical;
    padding: 1rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    background: rgba(30, 41, 59, 0.5);
    color: var(--white);
    font-family: inherit;
}

.chat-reply-area button {
    align-self: flex-end;
    background: var(--gradient);
    color: var(--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;
    gap: 0.5rem;
}

.chat-reply-area button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.chat-closed-hint {
    text-align: center;
    padding: 2rem;
    background: rgba(100, 116, 139, 0.1);
    border-radius: 8px;
    color: var(--light);
}

.no-conversation-selected {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 2rem;
}

.support-hero {
    text-align: center;
    margin-bottom: 2rem;
}

.support-hero i {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.support-hero h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.support-hero p {
    color: var(--light);
    margin-bottom: 0;
}

.new-ticket-form {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.new-ticket-form .form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 500;
}

.new-ticket-form input,
.new-ticket-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    background: rgba(30, 41, 59, 0.5);
    color: var(--white);
    font-family: inherit;
}

.new-ticket-form input:focus,
.new-ticket-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.create-ticket-btn {
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.create-ticket-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Affiliate Page Styles */
.affiliate-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

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

.affiliate-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.affiliate-header p {
    font-size: 1.25rem;
    color: var(--light);
    margin: 0;
}

/* Affiliate Application Card */
.affiliate-bewerbung-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.affiliate-bewerbung-card h2 {
    color: var(--white);
    margin-bottom: 1rem;
    text-align: center;
}

.affiliate-bewerbung-card p {
    color: var(--light);
    text-align: center;
    margin-bottom: 2rem;
}

.affiliate-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.affiliate-form input,
.affiliate-form textarea {
    padding: 1rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    background: rgba(30, 41, 59, 0.5);
    color: var(--white);
    font-family: inherit;
}

.affiliate-form input:focus,
.affiliate-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.submit-btn {
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Affiliate Form Improvements */
.affiliate-form .form-group {
    margin-bottom: 1.5rem;
}

.affiliate-form .form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.affiliate-form .form-group label i {
    color: var(--primary);
    font-size: 0.9rem;
    width: 16px;
}

/* Login Required Styles */
.login-actions {
    text-align: center;
    margin-top: 2rem;
}

.login-actions .submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    text-decoration: none;
}

.login-info {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.login-info i {
    color: var(--primary);
}

/* Alert Error Style */
.alert.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Affiliate Dashboard */
.affiliate-dashboard {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.dashboard-left,
.dashboard-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Welcome Card */
.welcome-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 2rem;
}

.welcome-card h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.welcome-card p {
    color: var(--light);
    margin-bottom: 2rem;
}

.referral-link-section {
    margin-bottom: 1.5rem;
}

.referral-link-section label {
    display: block;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

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

.referral-input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    background: rgba(30, 41, 59, 0.5);
    color: var(--white);
    font-family: monospace;
    font-size: 0.9rem;
}

/* Kopier-Button Styles - Einheitlich für alle Vorkommen */
.copy-btn {
    background: linear-gradient(45deg, var(--primary), #2563eb);
    color: var(--white) !important;
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 0.875rem;
    min-height: 40px;
    justify-content: center;
    font-family: inherit;
}

.copy-btn:hover {
    background: linear-gradient(45deg, #2563eb, #1d4ed8) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
    color: var(--white) !important;
    text-decoration: none;
}

.copy-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

.copy-btn.small {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    border-radius: 6px;
    min-height: 36px;
}

.copy-btn.small::before {
    content: "📋";
    margin-right: 0.25rem;
}

.provision-info {
    background: rgba(59, 130, 246, 0.1);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.provision-info span {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-value.primary {
    color: var(--primary);
}

.stat-value.success {
    color: var(--accent);
}

.stat-value.warning {
    color: #f59e0b;
}

.stat-value.info {
    color: #3b82f6;
}

.stat-label {
    color: var(--light);
    font-size: 0.875rem;
}

/* Activity and Earnings */
.recent-activity,
.earnings-history,
.marketing-materials,
.support-section {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 2rem;
}

.recent-activity h3,
.earnings-history h3,
.marketing-materials h3,
.support-section h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.no-activity,
.no-earnings {
    color: var(--light);
    text-align: center;
    font-style: italic;
    padding: 2rem;
}

.activity-list,
.earnings-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-item,
.earnings-item {
    background: rgba(59, 130, 246, 0.1);
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.activity-user,
.earnings-amount {
    color: var(--white);
    font-weight: 600;
}

.earnings-amount {
    color: var(--accent);
}

.activity-status,
.activity-date,
.earnings-details,
.earnings-date {
    color: var(--light);
    font-size: 0.875rem;
}

/* Marketing Materials */
.materials-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.material-item {
    background: rgba(59, 130, 246, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
}

.material-item h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.banner-preview {
    background: var(--primary);
    color: var(--white);
    padding: 1rem;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.social-text {
    width: 100%;
    height: 100px;
    background: rgba(30, 41, 59, 0.5);
    color: var(--white);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    padding: 1rem;
    font-size: 0.875rem;
    resize: none;
    font-family: inherit;
    margin-bottom: 1rem;
}

/* Support Section */
.support-content {
    color: var(--light);
    margin-bottom: 1.5rem;
}

.support-content p {
    margin-bottom: 1rem;
}

.support-content strong {
    color: var(--white);
}

.support-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.support-content li {
    margin-bottom: 0.5rem;
}

.support-btn {
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
}

.support-btn:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

/* Alert Messages */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.alert.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Profile Page Styles */
.profile-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

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

.profile-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.profile-header p {
    font-size: 1.25rem;
    color: var(--light);
    margin: 0;
}

/* Profile Tabs */
.profile-tabs {
    display: flex;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 0.5rem;
    margin-bottom: 2rem;
    gap: 0.5rem;
    overflow-x: auto;
}

.profile-tab {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: transparent;
    color: var(--light);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-weight: 500;
    flex: 1;
    justify-content: center;
}

.profile-tab:hover {
    background: rgba(59, 130, 246, 0.1);
    color: var(--white);
}

.profile-tab.active {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.profile-tab i {
    font-size: 1.1rem;
}

/* Profile Content */
.profile-content {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 2rem;
    min-height: 400px;
}

/* Profile Alerts */
.profile-alert {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-weight: 500;
    animation: slideIn 0.3s ease-out;
}

.profile-alert.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.profile-alert.error {
    background: rgba(239, 68, 68, 0.1);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

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

/* Form Container */
.profile-form-container {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    padding: 2rem;
}

.profile-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Avatar Section */
.profile-avatar-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.avatar-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
}

.avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.avatar-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    opacity: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
}

.avatar-wrapper:hover .avatar-overlay {
    opacity: 1;
}

.avatar-overlay i {
    font-size: 1.5rem;
}

.avatar-delete-btn {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ef4444;
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.avatar-delete-btn:hover {
    background: #dc2626;
    transform: scale(1.1);
}

.avatar-info h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.avatar-info p {
    color: var(--light);
    margin: 0;
}

/* Form Fields */
.profile-fields {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--white);
    font-weight: 500;
    font-size: 0.875rem;
}

.form-group input {
    padding: 1rem;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    color: var(--white);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Section Headers */
.section-header {
    margin-bottom: 2rem;
}

.section-header h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-header p {
    color: var(--light);
    margin: 0;
}

/* Password Section */
.password-section {
    background: rgba(15, 23, 42, 0.3);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    padding: 2rem;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: flex-end;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
}

/* Orders Section */
.orders-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.orders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.order-card {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.order-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
}

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

.order-id {
    font-weight: 600;
    color: var(--white);
}

.order-status {
    font-weight: 500;
    font-size: 0.875rem;
}

.order-content {
    display: flex;
    gap: 1rem;
}

.order-product-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.order-details {
    flex: 1;
}

.order-details h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.order-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.order-quantity,
.order-price {
    color: var(--light);
    font-size: 0.875rem;
}

.order-total {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.order-date {
    color: var(--light);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem;
    color: var(--light);
}

.empty-state i {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1rem;
    opacity: 0.6;
}

.empty-state h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.empty-state p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Balance Section */
.balance-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.balance-card {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.balance-display {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.balance-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.balance-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.balance-label {
    color: var(--light);
    font-size: 0.875rem;
    font-weight: 500;
}

.balance-amount {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
}

.balance-actions {
    display: flex;
    gap: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .profile-container {
        padding: 1rem;
    }
    
    .profile-header h1 {
        font-size: 2rem;
    }
    
    .profile-tabs {
        flex-direction: column;
    }
    
    .profile-tab {
        justify-content: flex-start;
    }
    
    .profile-avatar-section {
        flex-direction: column;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .orders-grid {
        grid-template-columns: 1fr;
    }
    
    .balance-card {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .form-actions {
        justify-content: center;
    }
}

/* Bewertungen Styles */
.bewertungen-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem;
}

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

.bewertungen-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.bewertungen-stats {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 2rem;
    display: inline-block;
}

.durchschnitt {
    text-align: center;
}

.rating {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.anzahl {
    color: var(--light);
    margin-top: 0.5rem;
}

.bewertung-form {
    background: #1f2937;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.bewertung-form h3 {
    margin-bottom: 1.5rem;
    color: var(--white);
}

.rating-wrapper {
    margin-bottom: 1rem;
}

.rating-input {
    display: flex;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.fa-star {
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    transition: color 0.2s ease;
}

.fa-star.hover,
.fa-star.active {
    color: #1e40af;
}

.rating-text {
    display: block;
    margin-top: 0.5rem;
    color: #9ca3af;
    font-size: 0.9rem;
}

.alert {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.alert-success {
    background-color: #064e3b;
    color: #d1fae5;
    border: 1px solid #059669;
}

.alert-danger {
    background-color: #7f1d1d;
    color: #fecaca;
    border: 1px solid #dc2626;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #e5e7eb;
}

.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.375rem;
    background: #374151;
    border: 1px solid #4b5563;
    color: #e5e7eb;
    resize: vertical;
}

.form-group textarea:focus {
    outline: none;
    border-color: #1e40af;
    box-shadow: 0 0 0 2px rgba(30, 64, 175, 0.2);
}

.login-hinweis {
    text-align: center;
    padding: 2rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    margin-bottom: 3rem;
}

.login-hinweis a {
    color: var(--primary);
    text-decoration: none;
}

.login-hinweis a:hover {
    text-decoration: underline;
}

.bewertung {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.profilbild {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.username {
    font-weight: 600;
    color: var(--white);
}

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

.datum {
    color: var(--light);
    font-size: 0.9rem;
}

.bewertung-content p {
    color: var(--light);
    line-height: 1.6;
}

.keine-bewertungen {
    text-align: center;
    color: var(--light);
    font-style: italic;
    padding: 3rem;
}

/* Responsive Design */
/* Affiliate Mobile Styles */
@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
    }

    .affiliate-dashboard {
        grid-template-columns: 1fr !important;
    }
    
    .stats-grid {
        grid-template-columns: 1fr !important;
    }
    
    .affiliate-container {
        padding: 1rem;
    }
    
    .affiliate-header h1 {
        font-size: 2rem;
    }
    
    .link-input-group {
        flex-direction: column;
    }
    
    .copy-btn {
        width: 100% !important;
    }

    .header-inner {
        padding: 0 1rem;
    }

    nav {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 2rem 0;
        border-left: 1px solid rgba(59, 130, 246, 0.3);
    }

    nav.open {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1.5rem;
        background: transparent;
        border: none;
        backdrop-filter: none;
    }

    nav a {
        padding: 16px 20px;
        border-radius: 12px;
        font-size: 16px;
        width: 100%;
        text-align: left;
    }

    .user-menu-container {
        order: -1;
    }

    .user-dropdown {
        position: fixed;
        top: 80px;
        right: 1rem;
        left: 1rem;
        width: auto;
        min-width: auto;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .bewertung-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .products-container {
        padding: 1rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
        border-radius: 16px;
    }

    .products-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .products-container > div:first-of-type {
        padding: 0.75rem;
        font-size: 0.8rem;
        margin: 1rem 0;
    }

    .kategorien-tabs {
        flex-direction: column;
        gap: 0.75rem;
        margin: 2rem 0;
        padding: 0.75rem;
    }

    .kategorie-tab {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }

    .kategorie-tab i {
        font-size: 1rem;
    }

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

    .gaming-product-card {
        aspect-ratio: 1.2;
        transform: none !important; /* Deaktiviere Hover-Effekte auf Mobile */
    }

    .gaming-product-card:hover {
        transform: none !important;
        box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
    }

    .product-content {
        padding: 1rem;
    }

    .product-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        line-height: 1.4;
    }

    .product-price {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .product-description {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
        -webkit-line-clamp: 2;
        line-height: 1.4;
    }

    .add-to-cart-btn,
    .login-required-btn {
        padding: 0.75rem;
        font-size: 0.85rem;
        gap: 0.5rem;
        border-radius: 8px;
    }

    .no-products {
        padding: 3rem 1.5rem;
    }

    .no-products i {
        font-size: 3.5rem;
        margin-bottom: 1rem;
    }

    .no-products h3 {
        font-size: 1.4rem;
    }

    .support-container {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 1rem;
    }

    .conversations-list {
        order: 2;
        max-height: 300px;
    }

    .chat-window {
        order: 1;
        min-height: 400px;
    }
}

/* Moderne Guthaben-Aufladen Seite Styles */
.topup-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.topup-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.topup-header {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
    border-radius: 20px;
    margin-bottom: 3rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.topup-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
    border-radius: 20px 20px 0 0;
}

.topup-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.topup-title i {
    color: var(--accent);
    margin-right: 1rem;
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.5));
}

.current-balance {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    text-align: center;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.balance-label {
    color: var(--light);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.balance-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.discord-topup-info {
    position: relative;
    z-index: 1;
}

.info-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent), var(--primary), transparent);
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.2);
}

.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 20px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.info-icon i {
    font-size: 2rem;
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.info-content h2 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white), var(--light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-content p {
    color: var(--light);
    line-height: 1.7;
    font-size: 1.1rem;
}

.steps {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.step {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--accent));
}

.step:hover {
    transform: translateX(10px);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(16, 185, 129, 0.1) 100%);
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    color: var(--white);
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask-composite: xor;
    opacity: 0.5;
}

.step-content strong {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--light);
    line-height: 1.6;
    margin: 0;
}

.user-info {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.user-info h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-info h3::before {
    content: '👤';
    font-size: 1.2rem;
}

.info-box {
    display: grid;
    gap: 1.5rem;
}

.info-item {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.info-item:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(16, 185, 129, 0.1) 100%);
    border-color: var(--primary);
    transform: translateX(5px);
}

.info-item label {
    color: var(--light);
    font-weight: 600;
    font-size: 1rem;
}

.info-value {
    color: var(--white);
    font-weight: 700;
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    background: rgba(59, 130, 246, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    margin-right: 1rem;
}

/* Kopier-Button für kleine Icon-Buttons (überschrieben durch globale Definition) */

.discord-actions {
    text-align: center;
    margin-top: 2rem;
}

.btn-discord {
    background: linear-gradient(135deg, #5865f2, #4752c4);
    color: var(--white);
    text-decoration: none;
    padding: 1.5rem 3rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.3);
    border: 1px solid rgba(88, 101, 242, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-discord::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;
}

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

.btn-discord:hover {
    background: linear-gradient(135deg, #4752c4, #3b4db8);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(88, 101, 242, 0.4);
    color: var(--white);
    text-decoration: none;
}

.btn-discord i {
    font-size: 1.2rem;
}

.payment-methods {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-methods h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 100px;
}

.payment-method:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.payment-method i {
    font-size: 1.5rem;
    color: var(--primary);
}

.payment-method .paysafe-icon {
    color: #009639;
}

.payment-method span {
    color: var(--light);
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
}

.support-hours {
    background: var(--secondary);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
}

.support-hours h3 {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.support-hours h3 i {
    color: var(--accent);
}

.hours-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.day {
    color: var(--light);
    font-weight: 500;
}

.time {
    color: var(--white);
    font-weight: 600;
}

.response-time {
    text-align: center;
    color: var(--light);
    margin: 0;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 8px;
}

.response-time i {
    color: #fbbf24;
    margin-right: 0.5rem;
}

.response-time strong {
    color: var(--accent);
}

/* Responsive Design für moderne Guthaben-Aufladen Seite */
@media (max-width: 768px) {
    .topup-container {
        padding: 1rem;
        margin: 1rem;
        border-radius: 16px;
    }

    .topup-header {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
        border-radius: 16px;
    }

    .topup-title {
        font-size: 2rem;
    }

    .current-balance {
        padding: 1.5rem;
    }

    .balance-amount {
        font-size: 2rem;
    }

    .info-card {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .info-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }

    .info-icon i {
        font-size: 1.5rem;
    }

    .info-content h2 {
        font-size: 1.5rem;
    }

    .info-content p {
        font-size: 1rem;
    }

    .steps {
        gap: 1rem;
    }

    .step {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .step-content strong {
        font-size: 1.1rem;
    }

    .user-info {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .user-info h3 {
        font-size: 1.3rem;
    }

    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 1.25rem;
    }

    .info-value {
        margin-right: 0;
        margin-top: 0.5rem;
        width: 100%;
        text-align: center;
    }

    .btn-discord {
        padding: 1.25rem 2rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

    .payment-icons {
        gap: 1rem;
    }

    .payment-method {
        min-width: 80px;
        padding: 0.8rem;
    }

    .hours-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* Notification Styles für Copy-Funktion */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    font-weight: 500;
}

.notification-success {
    background: var(--accent);
    color: var(--white);
}

.notification-error {
    background: var(--danger);
    color: var(--white);
}

/* Footer Styles */
footer {
    background: var(--dark);
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 1.5rem;
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand h3::before {
    content: '🎮';
    font-size: 1.2rem;
}

.footer-brand p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

.footer-links h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
    padding-bottom: 0.4rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 1.1rem;
    width: 20px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-bottom p {
    color: var(--gray);
    margin: 0;
    font-size: 0.9rem;
}

.hosting-partner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.hosting-partner small {
    color: var(--gray);
}

.hosting-partner a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hosting-partner a:hover {
    color: var(--accent);
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 1.25rem 1rem;
        text-align: center;
    }

    .footer-brand h3 {
        justify-content: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-links h4 {
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .footer-links a:hover {
        transform: translateX(0);
        transform: scale(1.05);
    }
}

/* Auth Page Styles */
.auth-page-container {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
}

.auth-container {
    width: 100%;
    max-width: 900px;
    background: var(--secondary);
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: var(--shadow-lg);
    padding: 3rem;
    text-align: center;
}

.auth-page-title {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.auth-page-title i {
    color: var(--primary);
    font-size: 2rem;
}

.auth-page-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.auth-forms-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    text-align: left;
}

.auth-card {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.auth-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.auth-card-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.auth-card-header i {
    color: var(--primary);
    font-size: 1.2rem;
}

.auth-card-header h2 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

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

.auth-form .form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.auth-form .form-group label i {
    color: var(--primary);
    font-size: 0.9rem;
    width: 16px;
}

.auth-form input {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--dark);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    color: var(--white);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.auth-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.auth-form input::placeholder {
    color: var(--gray);
}

.auth-button {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.auth-button.primary {
    background: var(--gradient);
    color: var(--white);
}

.auth-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.auth-button.secondary {
    background: rgba(16, 185, 129, 0.8);
    color: var(--white);
}

.auth-button.secondary:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.auth-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.auth-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

.auth-message.success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #86efac;
}

.auth-message i {
    font-size: 1rem;
}

.auth-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.auth-footer p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

.auth-footer a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.auth-footer a:hover {
    color: var(--accent);
}

/* Auth Page Responsive */
@media (max-width: 768px) {
    .auth-page-container {
        padding: 1rem;
    }

    .auth-container {
        padding: 2rem;
    }

    .auth-page-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .auth-forms-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .auth-card {
        padding: 1.5rem;
    }

    .auth-card-header h2 {
        font-size: 1.3rem;
    }
}

/* Legal Pages Styles */
.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--secondary);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--primary);
}

.legal-header h1 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.legal-header h1 i {
    color: var(--primary);
}

.legal-header p {
    color: var(--gray);
    font-size: 1rem;
    margin: 0;
}

.legal-content {
    line-height: 1.8;
}

.legal-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 12px;
}

.legal-section h2 {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legal-section h2::before {
    content: '📋';
    font-size: 1.2rem;
}

.legal-section h3 {
    color: var(--light);
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section p {
    color: var(--light);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.legal-section ul {
    color: var(--light);
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-section ul li {
    margin-bottom: 0.5rem;
    position: relative;
}

.legal-section ul li::marker {
    color: var(--primary);
}

.legal-section a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.legal-section strong {
    color: var(--white);
    font-weight: 600;
}

.legal-footer {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    text-align: center;
}

.legal-footer p {
    color: var(--light);
    margin-bottom: 1rem;
}

.legal-footer a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-footer a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Legal Pages Responsive */
@media (max-width: 768px) {
    .legal-container {
        padding: 1rem;
        margin: 1rem;
    }

    .legal-header h1 {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .legal-section {
        padding: 1.5rem;
    }

    .legal-section h2 {
        font-size: 1.2rem;
    }

    .legal-section ul {
        margin-left: 1rem;
    }

    .legal-footer {
        padding: 1.5rem;
    }
}

/* Support Login Container - Breiteres Design */
.support-login-container {
    min-height: calc(100vh - 120px);
    padding: 2rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
}

.support-login-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.support-login-header h1 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.support-login-header h1 i {
    color: var(--primary);
}

.support-login-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.support-login-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.support-info-card {
    background: var(--secondary);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.support-info-card h2 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.support-info-card h2 i {
    color: var(--primary);
}

.support-info-card p {
    color: var(--light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.support-features-card {
    background: var(--secondary);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.support-features-card h3 {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    justify-content: center;
}

.support-features-card h3 i {
    color: var(--accent);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.feature-item i {
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.feature-item h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.feature-item p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Responsive für Support Login */
@media (max-width: 768px) {
    .support-login-container {
        padding: 1rem;
    }

    .support-login-header h1 {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .support-login-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .support-info-card,
    .support-features-card {
        padding: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-item {
        padding: 1rem;
    }
}

/* Alert Styles */
.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    font-weight: 500;
}

.alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Admin Modal Styles */
.admin-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
}

.admin-modal-content {
    background-color: var(--dark);
    padding: 2rem;
    border-radius: 12px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--light);
    cursor: pointer;
}

.close-modal:hover {
    color: var(--white);
}

.application-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-item.full-width {
    grid-column: 1 / -1;
}

.detail-item label {
    font-weight: bold;
    color: var(--primary);
    font-size: 0.9rem;
}

.detail-item span {
    color: var(--light);
}

.motivation-text {
    background: rgba(30, 41, 59, 0.5);
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    line-height: 1.5;
}

.admin-btn.small {
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
}

/* Application Status Styles */
.application-status-section h2 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.application-status-section > p {
    color: var(--light);
    margin-bottom: 2rem;
}

/* Status Timeline */
.status-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.status-timeline::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 3rem;
    bottom: 3rem;
    width: 2px;
    background: rgba(59, 130, 246, 0.3);
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
}

.step-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: rgba(30, 41, 59, 0.8);
    border: 2px solid rgba(59, 130, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: all 0.3s ease;
}

.timeline-step.completed .step-icon {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.timeline-step.success .step-icon {
    background: #22c55e;
    border-color: #22c55e;
}

.timeline-step.rejected .step-icon {
    background: #ef4444;
    border-color: #ef4444;
}

.timeline-step.pending .step-icon {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(59, 130, 246, 0.3);
    color: var(--light);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.step-content {
    flex: 1;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 0.5rem;
}

.step-content h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--light);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.step-content p:last-child {
    margin-bottom: 0;
}

.status-pending {
    color: #fbbf24 !important;
}

.status-approved {
    color: #22c55e !important;
}

.status-rejected {
    color: #ef4444 !important;
}

.next-steps {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 8px;
}

.next-steps h4 {
    color: #22c55e;
    margin-bottom: 0.75rem;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    padding: 0.25rem 0;
    color: var(--light);
}

.next-steps li::before {
    content: '✓';
    color: #22c55e;
    margin-right: 0.5rem;
    font-weight: bold;
}

.next-steps a {
    color: var(--primary);
    text-decoration: none;
}

.next-steps a:hover {
    text-decoration: underline;
}

.reapply-info {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 8px;
}

.reapply-info ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
}

.reapply-info li {
    padding: 0.25rem 0;
    color: var(--light);
}

.reapply-info li::before {
    content: '•';
    color: #ef4444;
    margin-right: 0.5rem;
}

/* Application Details */
.application-details {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.application-details h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

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

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-item.full-width {
    grid-column: 1 / -1;
}

.info-item label {
    font-weight: bold;
    color: var(--primary);
    font-size: 0.9rem;
}

.info-item span {
    color: var(--light);
}

.info-item a {
    color: var(--primary);
    text-decoration: none;
}

.info-item a:hover {
    text-decoration: underline;
}

.motivation-preview {
    background: rgba(30, 41, 59, 0.8);
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    line-height: 1.5;
    color: var(--light);
}

/* No Application State */
.no-application {
    text-align: center;
    padding: 3rem;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
}

.no-application i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.no-application h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.no-application p {
    color: var(--light);
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .status-timeline::before {
        left: 1.5rem;
    }
    
    .timeline-step {
        gap: 1rem;
    }
    
    .step-icon {
        width: 3rem;
        height: 3rem;
    }
    
    .application-info-grid {
        grid-template-columns: 1fr;
    }
}

/* DevZone Styles */
.devzone-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

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

.devzone-header h1 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.devzone-header h1 i {
    color: var(--primary);
}

.devzone-header p {
    color: var(--light);
    font-size: 1.1rem;
}

.devzone-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.devzone-nav-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.devzone-nav-item:hover,
.devzone-nav-item.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.devzone-content {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 2rem;
}

/* Marktplatz Styles */
.marketplace-section h2 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.marketplace-section p {
    color: var(--light);
    margin-bottom: 2rem;
}

.marketplace-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.marketplace-filters select {
    padding: 0.5rem 1rem;
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 6px;
    color: var(--white);
    font-size: 0.9rem;
}

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

.developer-product-card {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.developer-product-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.developer-product-card .product-image-wrapper {
    height: 200px;
    background: rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.developer-product-card .product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.developer-product-card .product-image-wrapper .no-image {
    color: var(--primary);
    font-size: 3rem;
}

.developer-product-card .product-content {
    padding: 1.5rem;
}

.developer-product-card h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.developer-name {
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.developer-product-card .product-description,
.devzone .product-description {
    color: var(--light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    max-height: 120px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(59, 130, 246, 0.6) rgba(30, 41, 59, 0.3);
    padding-right: 8px;
    position: relative;
}

.developer-product-card .product-description::-webkit-scrollbar,
.devzone .product-description::-webkit-scrollbar {
    width: 8px;
}

.developer-product-card .product-description::-webkit-scrollbar-track,
.devzone .product-description::-webkit-scrollbar-track {
    background: rgba(30, 41, 59, 0.3);
    border-radius: 6px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.developer-product-card .product-description::-webkit-scrollbar-thumb,
.devzone .product-description::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.6), rgba(16, 185, 129, 0.4));
    border-radius: 6px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.developer-product-card .product-description::-webkit-scrollbar-thumb:hover,
.devzone .product-description::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.product-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: var(--light);
    flex-wrap: wrap;
}

.product-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.product-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(59, 130, 246, 0.2);
    color: var(--primary);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 500;
}

.product-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Developer Bewerbung Styles */
.apply-section h2 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.apply-section > p {
    color: var(--light);
    margin-bottom: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: var(--light);
    font-size: 0.9rem;
    line-height: 1.4;
}

.developer-application-form {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 2rem;
}

.form-section {
    margin-bottom: 2rem;
}

.form-section h3 {
    color: var(--white);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 6px;
    color: var(--white);
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Dashboard Styles */
.dashboard-section h2 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.dashboard-section > p {
    color: var(--light);
    margin-bottom: 2rem;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.stat-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--light);
    font-size: 0.9rem;
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.action-card {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.action-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.action-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.action-card h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.action-card p {
    color: var(--light);
    font-size: 0.9rem;
}

/* Meine Produkte Styles */
.products-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.products-section h2 {
    color: var(--white);
}

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

.my-product-card {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.my-product-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.my-product-card .product-image-wrapper {
    height: 150px;
    background: rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.my-product-card .product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.status-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-draft {
    background: rgba(156, 163, 175, 0.2);
    color: #9CA3AF;
}

.status-pending_review {
    background: rgba(251, 191, 36, 0.2);
    color: #FBBF24;
}

.status-approved {
    background: rgba(34, 197, 94, 0.2);
    color: #22C55E;
}

.status-rejected {
    background: rgba(239, 68, 68, 0.2);
    color: #EF4444;
}

.my-product-card .product-content {
    padding: 1.5rem;
}

.my-product-card h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.product-price {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: var(--light);
}

.product-stats span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

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

/* Verdienste Styles */
.earnings-section h2 {
    color: var(--white);
    margin-bottom: 2rem;
}

.earnings-overview {
    margin-bottom: 3rem;
}

.earnings-card {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.earnings-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.earnings-card .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.min-payout {
    color: var(--light);
    font-size: 0.9rem;
}

.sales-history h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.sales-table-wrapper {
    overflow-x: auto;
}

.sales-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.sales-table th,
.sales-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.sales-table th {
    background: rgba(59, 130, 246, 0.1);
    color: var(--white);
    font-weight: 600;
}

.sales-table td {
    color: var(--light);
}

.sales-table tr:last-child td {
    border-bottom: none;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: var(--bg-secondary);
    margin: auto;
    padding: 2rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close {
    color: var(--light);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.close:hover {
    color: var(--white);
}

.modal h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
}

.access-denied {
    text-align: center;
    padding: 3rem;
}

.access-denied i {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.access-denied h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.access-denied p {
    color: var(--light);
    margin-bottom: 2rem;
}

.no-products {
    text-align: center;
    padding: 3rem;
}

.no-products i {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.no-products h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.no-products p {
    color: var(--light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .devzone-navigation {
        flex-direction: column;
    }
    
    .devzone-nav-item {
        justify-content: center;
    }
    
    .marketplace-filters {
        flex-direction: column;
    }
    
    .benefits-grid,
    .dashboard-stats,
    .quick-actions {
        grid-template-columns: 1fr;
    }
    
    .products-section .section-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .devzone-container {
        padding: 1rem;
    }
    
    .devzone-content {
        padding: 1rem;
    }
}

/* Verbesserte Cross-Browser-Kompatibilität */
.gaming-product-card,
.kategorie-tab,
.add-to-cart-btn,
.login-required-btn {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}

/* Fix für Safari Backdrop-Filter */
@supports not (backdrop-filter: blur(10px)) {
    .products-container,
    .kategorien-tabs,
    .gaming-product-card {
        background: rgba(15, 23, 42, 0.95);
    }
}

/* Fix für ältere Browser */
.product-image {
    -o-object-fit: cover;
    object-fit: cover;
}

/* Verbesserte Fokus-States für Accessibility */
.kategorie-tab:focus,
.add-to-cart-btn:focus,
.login-required-btn:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* PDF Download Button */
.chat-closed-hint .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #6c757d;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    text-decoration: none;
    margin-top: 1rem;
    transition: background-color 0.2s;
}

.chat-closed-hint .btn-secondary:hover {
    background-color: #5a6268;
}

.chat-closed-hint .btn-secondary i {
    font-size: 1.1em;
}

/* Kategorie-Info Styles */
.category-info {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.category-info h2 {
    color: var(--light);
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.category-info h2 i {
    color: var(--primary);
    font-size: 1.5rem;
}

.category-badge {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Produkt-Kategorie-Badge */
.product-category-badge {
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: var(--accent);
    padding: 0.3rem 0.6rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin: 0.5rem 0;
    backdrop-filter: blur(5px);
}

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

/* Preis-Info Banner */
.price-info-banner {
    background: linear-gradient(45deg, #1e40af, #3b82f6);
    color: #fff;
    padding: 1rem;
    margin: 1rem 0 2rem 0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 0.95rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.price-info-banner i {
    font-size: 1.25rem;
    color: #fff;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .price-info-banner {
        font-size: 0.9rem;
        padding: 0.75rem;
        margin: 0.75rem 0 1.5rem 0;
    }
}

/* Bewertungssterne */
.rating-stars .fa-star {
    color: rgba(30, 64, 175, 0.2); /* #1e40af mit Transparenz für ungefüllte Sterne */
    margin-right: 2px;
    font-size: 1.1rem;
}

.rating-stars .fa-star.filled {
    color: #1e40af; /* Gefüllte Sterne in #1e40af */
}

/* Bewertungsformular Sterne */
.rating-input .fa-star {
    color: rgba(30, 64, 175, 0.2);
    cursor: pointer;
    transition: color 0.2s ease;
    font-size: 1.5rem;
    margin: 0 2px;
}

.rating-input .fa-star:hover,
.rating-input .fa-star.active {
    color: #1e40af;
}