body {
    background-color: #1c1c1c;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.card {
    background-color: #2b2b2b;
    border-color: #3d3d3d;
}

.card-title {
    color: #ffffff;
}

.card-subtitle {
    color: #a0a0a0;
}

.list-group-item {
    background-color: #2b2b2b;
    color: #ffffff;
    border-color: #3d3d3d;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.poolbot-title {
    display: flex;
    align-items: center;
    justify-content: center;
}

.emoji {
    font-size: 72px;
    margin-right: 20px;
}

.fancy-text {
    font-size: 48px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    background: linear-gradient(45deg, #00bfff, #007bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glowing 2s ease-in-out infinite;
}

@keyframes glowing {
    0% {
        text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    }
    50% {
        text-shadow: 0 0 20px rgb(0, 0, 0);
    }
    100% {
        text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    }
}