/**
 * Sinkori Network V2 - Core Variables & Resets
 */

:root {
    --bg-dark: #07090f;
    --surface: rgba(20, 25, 40, 0.45);
    --surface-hover: rgba(30, 40, 60, 0.65);
    --surface-solid: #0c101a;
    --border: rgba(255, 255, 255, 0.08);
    --primary-glow: #00f0ff;
    --verified-green: #00fa9a;
    --disputed-orange: #ff7300;
    --emerging-blue: #3a86ff;
    --pro-purple: #9d4edd;
    --text-main: #f8f9fa;
    --text-muted: #8b9bb4;
    --font-stack: 'Inter', system-ui, -apple-system, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* * FULL SCREEN OVERRIDE
 * Forces the shortcode container to bypass the active WordPress Theme constraints.
 */
.sinkori-network-app {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 99999 !important; /* Renders above theme headers and WP admin bar */
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-stack);
    display: flex;
    overflow: hidden; /* Prevents theme scrolling */
    background-image: radial-gradient(circle at 50% 50%, rgba(0, 240, 255, 0.03) 0%, transparent 50%);
}