﻿/* =========================================
   Dwibble – Default Brand Theme
   ========================================= */

:root {
    /* ========================
       Surfaces
       ======================== */

    --bg-main: #0b0e13;
    --bg-panel: #12161d;
    --bg-header: #0b0e13;
    /* ========================
       Text
       ======================== */

    --text-primary: #FFFFFF;
    --text-secondary: #9aa4b2;
    --text-inverse: #0b0e13;
    /* ========================
       Brand accents (Dwibble Gold)
       ======================== */

    --brand-accent-primary: #d4af37; /* Gold */
    --brand-accent-primary-rgb: 212, 175, 55;
    --brand-accent-secondary: #ffffff; /* White */
    --brand-accent-secondary-rgb: 255, 255, 255;
    --brand-accent-tertiary: #1f2937; /* subtle slate */
    --brand-accent-tertiary-rgb: 31, 41, 55;
    /* ========================
       Borders
       ======================== */

    --border-subtle: #262c36;
}

/* =========================================
   Dwibble – Background Texture
   ========================================= */

.dw-bg-perforated {
    background-color: #0b0e13;
    background-image: linear-gradient( to bottom, rgba(255,255,255,0.02), rgba(0,0,0,0.5) ), radial-gradient( circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 1.5px );
    background-size: 100% 100%, 10px 10px;
}

/* =========================================
   Dwibble – Menu Interaction
   ========================================= */

.dw-menu-item:hover {
    border-color: var(--brand-accent-primary);
    color: var(--brand-accent-primary);
    box-shadow: 0 0 0 1px rgba(0,0,0,0.4), 0 0 10px rgba(var(--brand-accent-primary-rgb), 0.35);
}

/* =========================================
   Dwibble – Badge
   ========================================= */

.dw-badge {
    width: 28px;
    height: 28px;
    object-fit: contain;
    background: rgba(255,255,255,0.02);
    border-radius: 6px;
    padding: 3px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6));
}
