/* =====================================================
   BASE STYLES - TECH BLOGGERS
   =====================================================
   Core foundational styles for the application:
   - CSS Variables
   - Global Reset
   - Typography
   - Utility Classes
===================================================== */

/* CSS Variables */
:root {
  --success-color: #3fb950;
  --success-bg: rgba(63, 185, 80, 0.1);
  --error-color: #f85149;
  --error-bg: rgba(248, 81, 73, 0.1);
  --bg-secondary: #161b22;
  --border-color: #30363d;
}

/* Global Box-Sizing Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background: #0d1117;
  color: #c9d1d9;
  line-height: 1.6;
}

main {
  flex: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 700;
  color: #fff;
}

p {
  margin: 0 0 1rem;
}

a {
  color: #58a6ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #1f6feb;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Utilities */
.text-center {
  text-align: center;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mb-3 {
  margin-bottom: 1rem;
}
