@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bruno+Ace&family=Faster+One&family=Splash&display=swap');

@font-face {
  font-family: 'Orbitron';
  src: url('../fonts/Orbitron/Orbitron-VariableFont_wght.ttf') format('truetype');
}

@font-face {
  font-family: 'Rock Salt';
  src: url('../fonts/Rock_Salt/RockSalt-Regular.ttf') format('truetype');
}

:root {
  --primary: #003cb3;
  --primary-dark: #002d8a;
  --primary-light: #1a4cb0;
  --accent: #c70000;
  --accent-light: #e06767;
  --danger: #bd0000;
  --success: #2ecc71;
  --text-dark: #1a1a2e;
  --text-medium: #4a4a68;
  --text-light: #7a7a8e;
  --bg-white: #ffffff;
  --bg-light: #f8f9fc;
  --bg-muted: #eef1f6;
  --border-light: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.7;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  line-height: 1.3;
  font-weight: 700;
}

h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }

p {
  color: var(--text-medium);
  line-height: 1.8;
  text-align: justify;
}

a {
  color: var(--primary);
  transition: var(--transition);
  text-decoration: none;
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
}

.bruno-ace-regular {
  font-family: "Bruno Ace", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.faster-one-regular {
  font-family: "Faster One", system-ui;
  font-weight: 400;
  font-style: normal;
}

.splash-regular {
  font-family: "Splash", cursive;
  font-weight: 400;
  font-style: normal;
}

.RockSalt {
  font-family: 'Rock Salt', cursive;
  text-shadow: 2px 2px 8px red;
  float: left;
  margin: 0;
  padding: 0;
  width: 100%;
  line-height: 1;
}

.container {
  display: flex;
}

.container > * {
  flex: 1;
}

.center {
  text-align: center;
}

div.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  font-size: 20px;
}

main {
  width: 100%;
}
