:root {
    --bg-body: #0a0e14;
    --bg-surface: #131a24;
    --bg-surface-hover: #1c2533;
    --bg-banner: #05080c;
    --ms-visio: #0f2a4a;
    --ms-visio-light: #2d6da5;
    --ms-visio-accent: #4cc2ff;
    --text-main: #e6e9ed;
    --text-muted: #8b9bb4;
    --line-color: #2d3748;
    --line-active: #4cc2ff;
    --border-color: rgba(76, 194, 255, 0.15);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.6);
    --circle-size: 20px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
}

body {
    background-color: var(--bg-body);
    background-image: 
        linear-gradient(rgba(10, 14, 20, 0.95), rgba(10, 14, 20, 0.95)),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231c2533' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    color: var(--text-main);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

#content-wrapper {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    min-height: 100vh;
}