/* Globale Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            color: #f1f1f1;
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
            padding-bottom: 90px; /* Platz für Footer */
        }
        
        body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1511512578047-dfb367046420?q=80&w=2071&auto=format&fit=crop') no-repeat center center/cover;
            opacity: 0.1;
            z-index: -1;
        }
        
        /* Header Styles */
        header {
            background: rgba(10, 15, 30, 0.8);
            backdrop-filter: blur(10px);
            padding: 1.5rem 2rem;
            border-bottom: 2px solid #e94560;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
            position: relative;
        }
        
        .guild-name {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .guild-name h1 {
            font-size: 2.5rem;
            background: linear-gradient(45deg, #ff7e5f, #feb47b, #e94560);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 10px rgba(233, 69, 96, 0.3);
            font-weight: 800;
        }
        
        .guild-name i {
            color: #e94560;
            font-size: 2.8rem;
            animation: pulse 2s infinite;
        }
        
        /* Hauptinhalt */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 2.5rem;
            font-size: 2.2rem;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
            padding: 0 20px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, #e94560, transparent);
        }
        
        /* Server Grid */
        .server-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 25px;
            margin-top: 2rem;
        }
        
        .server-card {
    background: rgba(25, 30, 50, 0.7);
    border-radius: 15px;
    overflow: hidden;
    transition: height 0.4s cubic-bezier(.4,2,.6,1), box-shadow 0.4s, background 0.4s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    transform-style: preserve-3d;
    perspective: 1000px;
    min-height: 120px;
    height: 120px;
}

/* Wenn Content aktiv ist, Card automatisch wachsen lassen */
.server-card.expanded {
    height: auto;
    min-height: 350px; /* Passe ggf. an */
}
        
        .server-card:hover {
            transform: translateY(-10px) scale(1.03);
            box-shadow: 0 15px 30px rgba(233, 69, 96, 0.4);
            border-color: rgba(233, 69, 96, 0.3);
        }
        
        .server-header {
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            background: rgba(20, 25, 45, 0.9);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            cursor: pointer;
        }
        
        .game-icon {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .server-info {
            flex: 1;
        }
        
        .server-info h3 {
            font-size: 1.5rem;
            margin-bottom: 5px;
            color: #feb47b;
        }
        
        .server-info p {
            color: #a0a0c0;
            font-size: 0.9rem;
        }
        
        .status-indicator {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: #4caf50;
            box-shadow: 0 0 10px #4caf50;
        }
        
        .server-status {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
        }
        
        .server-content {
            padding: 20px;
            display: none;
        }
        
        .server-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        .server-stats {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .stat-box {
            background: rgba(40, 45, 70, 0.6);
            padding: 10px 15px;
            border-radius: 10px;
            flex: 1;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .stat-box h4 {
            font-size: 0.9rem;
            color: #a0a0c0;
            margin-bottom: 5px;
        }
        
        .stat-box p {
            font-size: 1.3rem;
            font-weight: bold;
            color: #feb47b;
        }
        
        .server-description {
            margin: 20px 0;
            line-height: 1.6;
            color: #c0c0e0;
        }
        
        .domain-box {
            background: rgba(30, 35, 60, 0.7);
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            margin: 20px 0;
            border: 1px solid rgba(233, 69, 96, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .domain-box p {
            font-size: 1.1rem;
            color: #ff7e5f;
            font-weight: 600;
            letter-spacing: 1px;
        }
        
        .connect-btn {
            display: block;
            width: 100%;
            padding: 12px;
            background: linear-gradient(45deg, #e94560, #ff7e5f);
            border: none;
            border-radius: 8px;
            color: white;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 15px;
            position: relative;
            overflow: hidden;
        }
        
        .connect-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
        }
        
        .connect-btn::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -60%;
            width: 20px;
            height: 200%;
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(25deg);
            transition: all 0.5s;
        }
        
        .connect-btn:hover::after {
            left: 120%;
        }
        
        /* Footer */
        footer {
            text-align: center;
            padding: 2rem;
            margin-top: 3rem;
            background: rgba(10, 15, 30, 0.8);
            border-top: 1px solid rgba(233, 69, 96, 0.3);
            font-size: 0.9rem;
            color: #a0a0c0;
            position: fixed;
            left: 0;
            bottom: 0;
            width: 100%;
            margin-top: 0;
            z-index: 100;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.2);

        }
        
        /* Animierte Partikel */
        #particles-js {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
        }
        
        /* Mausfolgeeffekt */
        .mouse-trail {
            position: fixed;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: rgba(233, 69, 96, 0.6);
            pointer-events: none;
            transform: translate(-50%, -50%);
            mix-blend-mode: screen;
            z-index: 9999;
        }
        
        /* Theme-Spezifische Styles */
        .minecraft-theme {
            background: linear-gradient(135deg, #3a7d34 0%, #245c20 100%);
        }
        
        .rust-theme {
            background: linear-gradient(135deg, #c46d36 0%, #8c4a20 100%);
        }
        
        .csgo-theme {
            background: linear-gradient(135deg, #7d7d7d 0%, #4a4a4a 100%);
        }
        
        .ark-theme {
            background: linear-gradient(135deg, #1e6b7f 0%, #0d4557 100%);
        }
        
        .valorant-theme {
            background: linear-gradient(135deg, #ff4655 0%, #8a2430 100%);
        }

        .bo3-theme {
            background: linear-gradient(135deg, #000000 0%, #8a2430 100%);
        }

        .pal-theme {
            background: linear-gradient(45deg, #000000, #00ff2a);
        }
        
        .minecraft-theme .game-icon {
            background: linear-gradient(45deg, #5a9c50, #3a7d34);
        }
        
        .rust-theme .game-icon {
            background: linear-gradient(45deg, #d88a52, #c46d36);
        }
        
        .csgo-theme .game-icon {
            background: linear-gradient(45deg, #a0a0a0, #7d7d7d);
        }
        
        .ark-theme .game-icon {
            background: linear-gradient(45deg, #2a8da8, #1e6b7f);
        }
        
        .valorant-theme .game-icon {
            background: linear-gradient(45deg, #ff5766, #ff4655);
        }

        .bo3-theme .game-icon {
            background: linear-gradient(45deg, #000000, #ff4655);
        }

        .pal-theme .game-icon {
            background: linear-gradient(45deg, #000000, #00ff2a);
        }
        
        /* Animationen */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .server-grid {
                grid-template-columns: 1fr;
            }
            
            .guild-name h1 {
                font-size: 2rem;
            }
        }
        /* Feedback für Kopieren */
.copy-feedback {
    position: absolute;
    right: 15px;
    top: 10px;
    background: #e94560;
    color: #fff;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.9rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 10;
}

.copy-feedback.active {
    opacity: 1;
}