/* ========== DXDY-HUB THEME.CSS v1.0 ========== */
:root{
    /* Colors */
    --gold: #fc4e03; 
    --gold-dark: #a61f22;
    --bg: #f4f6f9;      /* Main page background. Light, not white/black */
    --card: #ffffff;    /* Cards, modals, header sit on top */
    --border: #e6e9ef;  
    --text: #1f2937;    /* Main text */
    --muted: #64748b;   /* Gray text */
    --green: #16a34a;
    --red: #ef4444;
    --red-dark: #dc2626;

    /* Radii + Shadow */
    --radius: 12px;
    --radius-lg: 16px;
    --shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* ========== BASE ========== */
*{margin:0;padding:0;box-sizing:border-box}

body{
    font-family:'Inter', -apple-system,BlinkMacSystemFont,'Segoe UI',Arial,sans-serif;
    background:var(--bg);
    color:var(--text);
    line-height:1.6
}
