/*
Theme Name: DIGIWYND
Theme URI: https://market.digiwynd.com
Author: DIGIWYND Marketplace
Author URI: https://digiwynd.com
Description: Premium Digital Assets Marketplace - Buy and sell online businesses securely with escrow protection
Version: 1.0.0
License: GPLv2 or later
Text Domain: digiwynd
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
*/

/* Basic Styles */
body {
    background: #000000;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 0;
}

.digiwynd-header {
    background: #0a0a0a;
    border-bottom: 1px solid #1f1f1f;
    padding: 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.digiwynd-nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.digiwynd-logo {
    color: #0096ff;
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
}

.digiwynd-nav-menu a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 25px;
}

.digiwynd-btn-primary {
    background: #0096ff;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
}

.digiwynd-main {
    margin-top: 80px;
    min-height: 500px;
}

.digiwynd-card {
    background: #111111;
    border: 1px solid #1f1f1f;
    border-radius: 12px;
    padding: 20px;
    margin: 15px;
}

.digiwynd-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    padding: 20px;
}

.digiwynd-footer {
    background: #0a0a0a;
    border-top: 1px solid #1f1f1f;
    padding: 40px 20px;
    text-align: center;
    margin-top: 50px;
}