/*
Theme Name: P2P Expert Trader
Theme URI: https://example.com/p2p-expert-trader
Author: Your Name
Author URI: https://example.com
Description: A high-risk payment processing theme for P2P Expert Trader. Built with Tailwind CSS and a dark neon aesthetic.
Version: 1.2.2
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: p2p-expert-trader
*/

body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: #fff;
}

.neon-bg {
    background-color: #CCFF00;
}

.neon-text {
    color: #CCFF00;
}

.neon-border {
    border-color: #CCFF00;
}

.btn-neon {
    background-color: #CCFF00;
    color: #000;
    padding: 10px 24px;
    border-radius: 9999px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-neon:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.card-dark {
    background-color: #0f0f0f;
    border: 1px solid #1f1f1f;
}

.marquee {
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
}

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

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    background: none;
    border: none;
}

.modal-close:hover {
    color: #fff;
}