/*
Theme Name: CryptoWorld Pro (Mercury Clone)
Template: astra
Description: Custom Dark Mode Crypto Theme for Pakistan
Version: 1.0.0
Author: CryptoWorld Team
*/

/* --- 1. DARK MODE BASE --- */
:root {
    --bg-dark: #191919;
    --card-dark: #222222;
    --border-color: #333333;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --accent-gold: #f0b90b; /* Binance Gold */
    --accent-green: #2ccf78;
}

body, .site-content, .ast-container, .site-header {
    background-color: var(--bg-dark) !important;
    color: var(--text-gray);
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-white) !important;
}

/* --- 2. THE "EXCHANGE CARD" (Mercury Style) --- */
/* Use this class in a Group Block for your lists */
.exchange-card {
    display: flex;
    align-items: center;
    background: var(--card-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    transition: transform 0.2s;
}

.exchange-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent-gold);
}

.exchange-logo {
    width: 60px;
    height: 60px;
    margin-right: 20px;
    border-radius: 50%;
}

.exchange-info {
    flex-grow: 1;
}

.exchange-name {
    color: var(--text-white);
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

.exchange-rating {
    color: var(--accent-gold);
    font-size: 14px;
}

.exchange-bonus {
    color: var(--accent-green);
    font-size: 13px;
    background: rgba(44, 207, 120, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 5px;
}

.exchange-btn {
    background-color: var(--accent-gold);
    color: #000 !important;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
}

.exchange-btn:hover {
    background-color: #d9a505;
}

/* --- 3. MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .exchange-card {
        flex-direction: column;
        text-align: center;
    }
    .exchange-logo {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .exchange-btn {
        width: 100%;
        display: block;
        margin-top: 15px;
    }
}