



.social-links-hero a {
    margin: 0 0.3rem;
}

.social-links-hero .btn {
    color: #657fa1;
    font-size: 1.5rem;
    transition: color 0.3s;
}

    .social-links-hero .btn:hover {
        color: #0d6efd;
    }

















* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #1a1a1a;
    color: #e0e0e0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
}

h2 {
    text-align: center;
    color: #4a9eff;
    margin-bottom: 30px;
}

.panel {
    background: #2a2a2a;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.info-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

    .info-row label {
        font-weight: bold;
        color: #888;
        min-width: 80px;
    }

    .info-row span {
        background: #1a1a1a;
        padding: 10px 15px;
        border-radius: 5px;
        font-family: monospace;
        flex: 1;
    }

.connect-section {
    margin-top: 30px;
}

    .connect-section h4 {
        color: #4a9eff;
        margin-bottom: 15px;
    }

input[type="text"] {
    width: 100%;
    padding: 12px;
    background: #1a1a1a;
    border: 1px solid #444;
    border-radius: 5px;
    color: #e0e0e0;
    font-size: 16px;
    margin-bottom: 15px;
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.btn-primary {
    background: #4a9eff;
    color: white;
}

    .btn-primary:hover {
        background: #357abd;
    }

.btn-small {
    padding: 5px 15px;
    font-size: 14px;
}

.btn-danger {
    background: #dc3545;
    color: white;
}

    .btn-danger:hover {
        background: #c82333;
    }

.status {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s;
}

    .status.success {
        background: #28a745;
        opacity: 1;
    }

    .status.error {
        background: #dc3545;
        opacity: 1;
    }

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.messages {
    height: 400px;
    overflow-y: auto;
    background: #1a1a1a;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
}

.message {
    margin-bottom: 10px;
    padding: 10px 15px;
    border-radius: 8px;
    max-width: 70%;
}

    .message.sent {
        background: #4a9eff;
        margin-left: auto;
        text-align: right;
    }

    .message.received {
        background: #444;
    }

.message-input {
    display: flex;
    gap: 10px;
}

    .message-input input {
        flex: 1;
        margin-bottom: 0;
    }

.error-container {
    text-align: center;
    padding: 50px;
}

    .error-container h2 {
        color: #dc3545;
        margin-bottom: 20px;
    }

    .error-container a {
        display: inline-block;
        margin-top: 20px;
        text-decoration: none;
    }

.error-message {
    background: #dc3545;
    color: white;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    border: 2px solid #4a9eff;
}

    .modal-content h3 {
        color: #4a9eff;
        margin-bottom: 20px;
    }

    .modal-content p {
        margin-bottom: 25px;
        font-size: 16px;
    }

.modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

    .modal-buttons button:first-child {
        background: #28a745;
    }

        .modal-buttons button:first-child:hover {
            background: #218838;
        }

    .modal-buttons button:last-child {
        background: #dc3545;
    }

        .modal-buttons button:last-child:hover {
            background: #c82333;
        }
