.card {
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-body {
    padding: 1rem;
}

.table {
    margin-bottom: 0;
}

.game-log {
    height: 200px;
    overflow-y: auto;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.game-log p {
    margin-bottom: 5px;
}

.game-log .success {
    color: #28a745;
}

.game-log .danger {
    color: #dc3545;
}

.game-log .warning {
    color: #ffc107;
}

.travel-btn {
    margin: 5px;
}

.modal-content {
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-control:focus {
    background-color: #343a40;
    color: white;
    border-color: #007bff;
}

.ascii-banner {
    font-family: monospace;
    white-space: pre;
    text-align: center;
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
    margin-bottom: 2rem;
    font-size: 14px;
    line-height: 1.2;
    padding: 20px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px #00ff00;
    }
    to {
        text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00;
    }
}

.footer {
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .price {
    color: #28a745;
    font-weight: bold;
}

.ask-discord-btn {
    background-color: #5865F2;
    border-color: #4752C4;
    color: white;
    transition: all 0.3s ease;
}

.ask-discord-btn:hover {
    background-color: #4752C4;
    border-color: #3C45A5;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(88, 101, 242, 0.2);
}

.ask-discord-btn i {
    margin-right: 8px;
} 