/* Promotion Modal Styles */
.promotion-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    font-family: 'Courier New', monospace;
}

.promotion-modal {
    background: #111;
    border: 2px solid #0f0;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.promotion-header {
    background: rgba(0, 255, 0, 0.1);
    border-bottom: 1px solid #0f0;
    padding: 16px 24px;
    text-align: center;
}

.promotion-header h2 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: #0f0;
}

.promotion-content {
    padding: 24px;
}

.promotion-message {
    margin-bottom: 24px;
}

.promotion-message p {
    margin-bottom: 16px;
    line-height: 1.6;
}

.promotion-details {
    background: rgba(0, 255, 0, 0.05);
    border: 1px solid #333;
    border-radius: 4px;
    padding: 16px;
    margin: 16px 0;
}

.promotion-detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.promotion-detail-row:last-child {
    margin-bottom: 0;
}

.detail-label {
    color: #888;
    font-weight: bold;
}

.detail-value {
    color: #0f0;
    text-align: right;
}

.promotion-progress {
    text-align: center;
    margin: 24px 0;
}

.promotion-progress-text {
    margin-bottom: 12px;
    font-size: 1rem;
    color: #0f0;
    font-weight: bold;
}

.promotion-progress-ascii {
    font-size: 1rem;
    color: #0f0;
    background: rgba(0, 255, 0, 0.1);
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid #333;
}

.promotion-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 24px;
}

.promotion-button {
    padding: 12px 24px;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    font-weight: bold;
    border: 2px solid;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    min-width: 140px;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promotion-button.accept {
    background: rgba(0, 255, 0, 0.1);
    color: #0f0;
    border-color: #0f0;
}

.promotion-button.accept:hover {
    background: #0f0;
    color: #000;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.promotion-button.decline {
    background: rgba(255, 0, 0, 0.1);
    color: #f00;
    border-color: #f00;
}

.promotion-button.decline:hover {
    background: #f00;
    color: #fff;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.promotion-form {
    display: inline-block;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .promotion-modal {
        width: 95%;
        margin: 20px;
    }

    .promotion-content {
        padding: 16px;
    }

    .promotion-actions {
        flex-direction: column;
        align-items: center;
    }

    .promotion-button {
        width: 100%;
        max-width: 200px;
    }

    .promotion-detail-row {
        flex-direction: column;
        gap: 4px;
    }

    .detail-value {
        text-align: left;
    }

    .promotion-progress-ascii {
        font-size: 0.8rem;
        overflow-x: auto;
        white-space: nowrap;
        max-width: 100%;
    }
}
