/* Cryptocurrency Exchanges Main Styles */
.cryptoexchanges-container {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 20px 0;
}

.cryptoexchanges-header {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.cryptoexchanges-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.cryptoexchanges-content {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cryptoexchanges-footer {
    margin-top: 20px;
    text-align: center;
    color: #718096;
    font-size: 14px;
}

/* Button styles */
.cryptoexchanges-btn {
    background: #10B981;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cryptoexchanges-btn:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Responsive design */
@media (max-width: 768px) {
    .cryptoexchanges-header {
        padding: 15px;
    }
    
    .cryptoexchanges-header h3 {
        font-size: 20px;
    }
    
    .cryptoexchanges-content {
        padding: 15px;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .cryptoexchanges-container {
        color: #e2e8f0;
    }
    
    .cryptoexchanges-content {
        background: #2D3748;
        box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }
    
    .cryptoexchanges-footer {
        color: #a0aec0;
    }
}
