:root {
    /* LIGHTER DARK THEME - Gunmetal & Slate */
    --bg-deep: #12131a;           /* Base darker panel */
    --bg-panel: #1c1e29;          /* Lighter mid-tone panel */
    --bg-highlight: #2a2d3d;      /* Brightest interactive elements */
    --accent-red: #cc0000;        /* Bold Crimson */
    --accent-pink: #ff4d8d;       /* Soft Highlight */
    --text-main: #ffffff;
    --text-dim: #a5a7b5;
    --glass-border: rgba(255, 255, 255, 0.12);
}
::-moz-selection { /* Code for Firefox */
  color: white;
  background: var(--accent-red);
}

::selection {
  color: white;
  background: var(--accent-red);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-deep);
    color: var(--text-main);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

section { position: relative; padding: 120px 0; border-bottom: 1px solid var(--glass-border); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 25px; z-index: 5; position: relative; }

.unselectable{
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.selectable{
    -webkit-touch-callout: auto;
    -webkit-user-select: auto;
    -khtml-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}