:root {
  /* Colors - ThePornDude Inspired Palette */
  --bg-body: #1c1c1c;
  /* Dark/Black pattern base */
  --bg-card: #282828;
  /* Slightly lighter card bg */
  --bg-sidebar: #222222;
  /* Dark Sidebar */

  --text-main: #f5f5f5;
  --text-muted: #aaaaaa;

  /* Brand Colors */
  --primary: #2eaf61;
  /* TPD Green (Visit Buttons) */
  --primary-hover: #26904f;
  /* Darker Green */

  --secondary: #fb9c48;
  /* TPD Orange (Rank/Stars) */
  --gold: #fb9c48;
  /* Mapping gold to the brand orange */

  --border-color: #383838;

  /* Dimensions */
  --sidebar-width: 260px;
  --header-height: 60px;

  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;

  /* Radius */
  --radius-sm: 5px;
  --radius-md: 10px;
  /* TPD uses rounded 10px */

  /* Transitions */
  --trans-fast: 0.2s ease;
}

body.light-mode {
  /* Placeholder for light mode if requested later */
}