/* =====================================================
   TeamSpeak6 Styles - ts3list.de
   ===================================================== */

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

body {
    background: #0a0a0a;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
}

/* =====================================================
   Navigation
   ===================================================== */
.navbar {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #00ff88;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #00ff88;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
}

/* =====================================================
   Hero Section
   ===================================================== */
.hero-section {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 255, 255, 0.1) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    background: linear-gradient(45deg, #00ff88, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    color: #aaa;
    margin-bottom: 40px;
}

/* =====================================================
   Stats Cards
   ===================================================== */
.stats-container {
    max-width: 1400px;
    margin: -40px auto 40px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.stat-card {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: #00ff88;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #00ff88;
    margin-bottom: 10px;
}

.stat-label {
    color: #888;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =====================================================
   Main Content
   ===================================================== */
.main-container {
    width: 100%;
    max-width: 100%;
    padding: 0 20px 40px;
    margin: 0 auto;
}

/* =====================================================
   Server Grid
   ===================================================== */
.servers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
    padding: 0 5%;
    width: 100%;
}

.server-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
    margin: 0 auto;
}

.server-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00ff88, #00ffff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.server-card:hover::before {
    transform: scaleX(1);
}

.server-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.server-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 20px;
}

.server-name {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 5px;
}

.server-description {
    color: #888;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.server-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.status-online {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
    border: 1px solid #00ff00;
}

.status-offline {
    background: rgba(255, 0, 0, 0.2);
    color: #ff0000;
    border: 1px solid #ff0000;
}

.status-empty {
    background: rgba(255, 170, 0, 0.2);
    color: #ffaa00;
    border: 1px solid #ffaa00;
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

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

.server-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.info-label {
    color: #888;
    font-size: 14px;
}

.info-value {
    color: #fff;
    font-weight: bold;
    font-size: 14px;
}

/* =====================================================
   Progress Bar
   ===================================================== */
.users-bar {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    height: 8px;
    overflow: hidden;
    margin: 10px 0;
}

.users-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ff88, #00ffff);
    border-radius: 10px;
    transition: width 0.3s ease;
}

/* =====================================================
   Buttons
   ===================================================== */
.server-actions {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.btn {
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
}

.btn-connect {
    background: linear-gradient(45deg, #00ff88, #00ffff);
    color: #000;
}

.btn-connect:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.5);
}

.btn-details {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-details:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #00ff88;
}

.btn-register {
    background: linear-gradient(45deg, #ff6b6b, #ff8787);
    color: #fff;
    border: none;
}

.btn-register:hover {
    background: linear-gradient(45deg, #ff5252, #ff6b6b);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.5);
}

.btn-add-server {
    background: linear-gradient(45deg, #ff006e, #8338ec);
    color: #fff;
    padding: 15px 40px;
    font-size: 16px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-server:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.4);
}

/* =====================================================
   Add Server Section
   ===================================================== */
.add-server-section {
    text-align: center;
    padding: 40px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px dashed rgba(0, 255, 136, 0.3);
    border-radius: 15px;
    margin-top: 40px;
    transition: all 0.3s ease;
}

.add-server-section:hover {
    border-color: #00ff88;
    background: rgba(0, 255, 136, 0.05);
}

/* =====================================================
   Modal
   ===================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.show {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: #1a1a1a;
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

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

.modal-header {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 255, 255, 0.1) 100%);
    padding: 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: #00ff88;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-btn:hover {
    color: #ff4444;
    transform: rotate(90deg);
}

/* =====================================================
   Forms
   ===================================================== */
.form-section {
    padding: 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    color: #00ffff;
    margin-bottom: 20px;
    font-size: 18px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #aaa;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #00ff88;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.required {
    color: #ff4444;
}

.help-text {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 12px;
}

.form-actions {
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.btn-cancel,
.btn-submit {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cancel {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.btn-cancel:hover {
    background: rgba(255, 68, 68, 0.2);
}

.btn-submit {
    background: linear-gradient(45deg, #00ff88, #00ffff);
    color: #000;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.5);
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* =====================================================
   Mobile Menu
   ===================================================== */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* =====================================================
   Notification
   ===================================================== */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 10px;
    color: #fff;
    font-weight: bold;
    z-index: 3000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    background: linear-gradient(45deg, #00ff88, #00ffff);
    color: #000;
}

.notification.error {
    background: linear-gradient(45deg, #ff4444, #ff6666);
}

/* =====================================================
   Feature Cards Section
   ===================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mt-4 {
    margin-top: 40px !important;
}

.card {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00ff88, #00ffff);
    animation: borderMove 3s linear infinite;
}

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

.text-white {
    color: #fff !important;
}

.mb-4 {
    margin-bottom: 24px !important;
}

.mb-3 {
    margin-bottom: 16px !important;
}

.text-center {
    text-align: center !important;
}

.card > h3 {
    background: linear-gradient(45deg, #00ff88, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 10px;
}

.text-decoration-none {
    text-decoration: none !important;
}

.h-100 {
    height: 100% !important;
}

.col-md-4 .card {
    background: rgba(0, 0, 0, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    min-height: 180px;
}

.col-md-4 .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00ff88, #00ffff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.col-md-4 .card:hover::before {
    transform: scaleX(1);
}

.col-md-4 .card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.5) !important;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
    background: rgba(0, 0, 0, 0.8) !important;
}

.card-body {
    position: relative;
    z-index: 1;
    padding: 0;
}

.fa-3x {
    font-size: 2.5em !important;
}

.col-md-4 .card-body {
    text-align: center;
}

.col-md-4 h5 {
    color: #fff !important;
    font-size: 16px;
    font-weight: bold;
    margin-top: 12px;
    margin-bottom: 8px;
}

.col-md-4 .small {
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.6) !important;
    line-height: 1.4;
}

/* =====================================================
   Alert Info Box
   ===================================================== */
.alert {
    background: rgba(0, 255, 136, 0.1) !important;
    border: 1px solid rgba(0, 255, 136, 0.3) !important;
    border-radius: 10px;
    padding: 15px 20px;
    margin-top: 20px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.alert::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ff88, transparent);
    animation: alertScan 3s linear infinite;
}

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

.alert strong {
    color: #00ff88;
    font-weight: bold;
}

.alert small {
    display: block;
    margin-top: 5px;
    opacity: 0.7;
    font-size: 12px;
}

/* =====================================================
   Hover Animations
   ===================================================== */
.col-md-4 .card:hover .fas,
.col-md-4 .card:hover .fab {
    animation: iconPulse 0.8s ease infinite;
}

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

.container > .card {
    animation: subtleGlow 4s ease-in-out infinite alternate;
}

@keyframes subtleGlow {
    0% { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); }
    100% { box-shadow: 0 10px 40px rgba(0, 255, 136, 0.2); }
}

/* =====================================================
   Footer
   ===================================================== */
footer {
    margin-top: auto !important;
    background: rgba(0, 0, 0, 0.95) !important;
    border-top: 2px solid #00ff88 !important;
    padding: 40px 0 20px !important;
    width: 100%;
    position: relative;
}

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

footer .row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

footer .col-md-3 {
    flex: 1;
    min-width: 200px;
}

footer h5 {
    color: #00ff88 !important;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: bold;
}

footer ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

footer ul li {
    margin-bottom: 8px;
}

footer ul li a {
    color: #888 !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

footer ul li a:hover {
    color: #00ff88 !important;
    padding-left: 5px;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ff88, #00ffff, transparent);
    animation: footerGlow 3s linear infinite;
}

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

/* =====================================================
   Responsive - Mobile
   ===================================================== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 20px;
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-section {
        padding: 60px 5%;
    }

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

    .server-actions {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .container {
        max-width: 100%;
        padding: 0 15px;
    }

    .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 10px;
    }

    .card {
        padding: 20px;
    }

    .fa-3x {
        font-size: 2em !important;
    }

    .col-md-4 h5 {
        font-size: 15px;
    }

    footer .row {
        flex-direction: column;
    }

    footer .col-md-3 {
        width: 100%;
        margin-bottom: 20px;
    }

    footer {
        padding: 30px 15px !important;
    }
}

/* =====================================================
   Responsive - Tablet
   ===================================================== */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 900px;
    }

    .col-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}


      /* SCROLLBALKEN FIX */
        html {
            overflow-y: scroll;
            overflow-x: hidden;
        }

        body {
            overflow-x: hidden;
        }

        /* SERVER CARD */
        .server-showcase {
            max-width: 1200px;
            margin: 30px auto 40px;
            padding: 0 20px;
        }

        .server-main-card {
            background: linear-gradient(145deg, rgba(0, 0, 0, 0.9) 0%, rgba(10, 30, 20, 0.9) 100%);
            border: 2px solid rgba(0, 255, 136, 0.4);
            border-radius: 20px;
            padding: 25px 40px;
            display: grid;
            grid-template-columns: auto 1fr auto auto;
            align-items: center;
            gap: 30px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 255, 136, 0.1);
        }

        .server-main-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #00ff88, #00ffff, #00ff88);
            background-size: 200% 100%;
            animation: gradientMove 3s linear infinite;
        }

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

        .server-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #00ff88, #00ffff);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 20px rgba(0, 255, 136, 0.4);
            flex-shrink: 0;
        }

        .server-icon i {
            font-size: 35px;
            color: #000;
        }

        .server-info-section {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .server-title {
            font-size: 24px;
            font-weight: bold;
            background: linear-gradient(45deg, #00ff88, #00ffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 0;
        }

        .server-address {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .address-text {
            font-family: 'Courier New', monospace;
            font-size: 16px;
            color: #00ff88;
            background: rgba(0, 255, 136, 0.1);
            padding: 6px 12px;
            border-radius: 8px;
            border: 1px solid rgba(0, 255, 136, 0.3);
        }

        .copy-btn {
            background: transparent;
            border: 1px solid #00ff88;
            color: #00ff88;
            padding: 6px 12px;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 12px;
        }

        .copy-btn:hover {
            background: #00ff88;
            color: #000;
        }

        .status-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 12px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 12px;
            width: fit-content;
        }

        .status-badge.online {
            background: rgba(0, 255, 0, 0.15);
            border: 1px solid #00ff00;
            color: #00ff00;
        }

        .status-badge.offline {
            background: rgba(255, 0, 0, 0.15);
            border: 1px solid #ff0000;
            color: #ff0000;
        }

        .pulse-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            animation: pulseDot 1.5s ease-in-out infinite;
        }

        .pulse-dot.online {
            background: #00ff00;
        }

        .pulse-dot.offline {
            background: #ff0000;
        }

        @keyframes pulseDot {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }

        .server-stats-inline {
            display: flex;
            gap: 20px;
        }

        .stat-box {
            text-align: center;
            padding: 10px 15px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .stat-box .value {
            font-size: 22px;
            font-weight: bold;
            color: #00ff88;
        }

        .stat-box .label {
            font-size: 10px;
            color: #888;
            text-transform: uppercase;
        }

        .server-buttons {
            display: flex;
            gap: 10px;
        }

        .btn-connect-main, .btn-more {
            padding: 12px 25px;
            border: none;
            border-radius: 10px;
            font-weight: bold;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }

        .btn-connect-main {
            background: linear-gradient(135deg, #00ff88, #00ffff);
            color: #000;
        }

        .btn-connect-main:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 255, 136, 0.5);
        }

        .btn-more {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .btn-more:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: #00ff88;
            color: #00ff88;
        }

        /* MODAL FÜR SERVER-DETAILS */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease;
        }

        .modal-overlay.show {
            display: flex;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal-content {
            background: linear-gradient(145deg, #0a0a0a 0%, #1a1a1a 100%);
            border: 2px solid rgba(0, 255, 136, 0.4);
            border-radius: 20px;
            width: 90%;
            max-width: 900px;
            max-height: 85vh;
            overflow-y: auto;
            animation: slideUp 0.3s ease;
            position: relative;
        }

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

        .modal-header {
            background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 255, 255, 0.1) 100%);
            padding: 25px 30px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 10;
            backdrop-filter: blur(10px);
        }

        .modal-header h2 {
            color: #00ff88;
            margin: 0;
            font-size: 24px;
        }

        .close-modal {
            background: none;
            border: none;
            color: #fff;
            font-size: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .close-modal:hover {
            background: rgba(255, 68, 68, 0.2);
            color: #ff4444;
            transform: rotate(90deg);
        }

        .modal-body {
            padding: 30px;
        }

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

        .detail-item {
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 20px;
            transition: all 0.3s ease;
        }

        .detail-item:hover {
            border-color: rgba(0, 255, 136, 0.4);
            background: rgba(0, 255, 136, 0.05);
            transform: translateY(-3px);
        }

        .detail-item .icon {
            width: 40px;
            height: 40px;
            background: rgba(0, 255, 136, 0.15);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #00ff88;
            font-size: 18px;
            margin-bottom: 12px;
        }

        .detail-item .label {
            font-size: 12px;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
        }

        .detail-item .value {
            font-size: 20px;
            font-weight: bold;
            color: #fff;
            margin-bottom: 10px;
            word-break: break-word;
        }

        .detail-item .description {
            font-size: 12px;
            color: #666;
            line-height: 1.5;
            padding-top: 10px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .detail-item .description i {
            color: #00ff88;
            margin-right: 5px;
        }

        /* HERO */
        .hero-section {
            padding: 30px 20px;
            text-align: center;
            background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, rgba(0, 255, 255, 0.05) 100%);
        }

        .hero-title {
            font-size: 36px;
            background: linear-gradient(45deg, #00ff88, #00ffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
        }

        .hero-subtitle {
            font-size: 16px;
            color: #888;
        }

        /* FEATURES */
        .features-section {
            width: 100%;
            padding: 40px 20px;
            background: linear-gradient(135deg, #09154d 0%, #040d0b 100%);
        }

        .features-title {
            text-align: center;
            font-size: 28px;
            background: linear-gradient(45deg, #00ff88, #00ffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 30px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 15px;
            max-width: 1800px;
            margin: 0 auto;
        }

        .feature-card {
            background: rgba(0, 0, 0, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 20px 15px;
            text-align: center;
            transition: all 0.3s ease;
            text-decoration: none;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #00ff88, #00ffff);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            border-color: rgba(0, 255, 136, 0.5);
            box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
            background: rgba(0, 0, 0, 0.8);
        }

        .feature-card i {
            font-size: 2.2em;
            margin-bottom: 12px;
            display: block;
        }

        .feature-card h5 {
            color: #fff;
            font-size: 14px;
            font-weight: bold;
            margin: 0 0 6px 0;
        }

        .feature-card p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 11px;
            margin: 0;
            line-height: 1.3;
        }

        /* RESPONSIVE */
        @media (max-width: 1400px) {
            .features-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 1100px) {
            .features-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .server-main-card {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 20px;
            }
            
            .server-icon {
                margin: 0 auto;
            }
            
            .server-stats-inline {
                justify-content: center;
            }
            
            .server-buttons {
                justify-content: center;
                flex-wrap: wrap;
            }
            
            .server-address {
                justify-content: center;
            }
            
            .status-badge {
                margin: 0 auto;
            }

            .details-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .hero-title {
                font-size: 28px;
            }

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

            .modal-content {
                width: 95%;
                max-height: 90vh;
            }

            .modal-body {
                padding: 20px;
            }
        }

        @media (max-width: 500px) {
            .features-grid {
                grid-template-columns: 1fr;
            }
        }

        /* SPECIAL FEATURE CARD - Bot Control */
.feature-card-special {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1) 0%, rgba(0, 255, 255, 0.1) 100%) !important;
    border: 2px solid rgba(255, 0, 255, 0.4) !important;
    position: relative;
    animation: specialPulse 3s ease-in-out infinite;
}

.feature-card-special::before {
    background: linear-gradient(90deg, #ff00ff, #00ffff, #ff00ff) !important;
    background-size: 200% 100%;
    animation: gradientMove 2s linear infinite;
}

.feature-card-special:hover {
    border-color: #ff00ff !important;
    box-shadow: 0 10px 40px rgba(255, 0, 255, 0.4) !important;
    transform: translateY(-8px) scale(1.02);
}

.special-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    color: #000;
    font-size: 9px;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: badgePulse 2s ease-in-out infinite;
    box-shadow: 0 3px 15px rgba(255, 0, 255, 0.5);
}

@keyframes specialPulse {
    0%, 100% { 
        box-shadow: 0 5px 20px rgba(255, 0, 255, 0.2);
    }
    50% { 
        box-shadow: 0 5px 30px rgba(255, 0, 255, 0.4);
    }
}

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

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