@charset "UTF-8";
/*!
* Start Bootstrap - Creative v7.0.6 (https://startbootstrap.com/theme/creative)
* Copyright 2013-2022 Start Bootstrap
* Licensed under MIT (https://github.com/StartBootstrap/startbootstrap-creative/blob/master/LICENSE)
*/

:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #f4623a;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  /* Muted darker primary */
  --bs-primary: #1e6b63;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #b38f00;
  --bs-danger: #a71d2a;
  --bs-light: #f8f9fa;
  --bs-dark: #1a1d20;
  --bs-primary-rgb: 30, 107, 99;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 179, 143, 0;
  --bs-danger-rgb: 167, 29, 42;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 26, 29, 32;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 200, 200, 200;
  --bs-body-bg-rgb: 26, 29, 32;
  --bs-font-sans-serif: "Merriweather Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: Merriweather, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #c8c8c8;
  --bs-body-bg: #1a1d20;
}

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

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: #1a1d20;
  background-image: url("../assets/img/bg.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-family: "Merriweather Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-weight: 500;
  line-height: 1.2;
}

h1, .h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 2.5rem;
  }
}

h2, .h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 2rem;
  }
}

h3, .h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 1.75rem;
  }
}

h4, .h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 1.5rem;
  }
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

a {
  color: #32a89d;
  text-decoration: underline;
}
a:hover {
  color: #287f76;
}

img {
  vertical-align: middle;
}

button {
  border-radius: 0;
}

input, button, select, optgroup, textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button, select {
  text-transform: none;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col-lg-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}
.col-lg-6 {
  flex: 0 0 auto;
  width: 50%;
}
.col-lg-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

@media (min-width: 992px) {
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

.d-flex {
  display: flex !important;
}

.justify-content-center {
  justify-content: center !important;
}

.align-items-center {
  align-items: center !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.h-100 {
  height: 100% !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.text-center {
  text-align: center !important;
}

.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.text-white-75 {
  color: rgba(255, 255, 255, 0.75) !important;
}

.text-muted {
  --bs-text-opacity: 1;
  color: rgba(200, 200, 200, 0.7) !important;
}

/* Navbar Styles */
.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-sm,
.navbar > .container-md,
.navbar > .container-lg,
.navbar > .container-xl,
.navbar > .container-xxl {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  text-decoration: none;
  white-space: nowrap;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

/* Mobile navbar menu styling */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(26, 29, 32, 0.95);
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    border-radius: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.25rem;
    border: 1px solid rgba(50, 168, 157, 0.3);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.4);
  }

  .navbar-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.25rem;
  }

  .navbar-nav .nav-item {
    flex: 1 1 auto;
    min-width: 45%;
  }

  .navbar-nav .nav-link {
    padding: 0.375rem 0.5rem;
    border-radius: 0.25rem;
    transition: background 0.2s ease;
    font-size: 0.8rem;
    text-align: center;
  }

  .navbar-nav .nav-link:hover {
    background: rgba(50, 168, 157, 0.15);
  }

  .navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.25rem 0.5rem;
  }

  .navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(50, 168, 157, 0.5);
  }

  .navbar-toggler-icon {
    width: 1.1em;
    height: 1.1em;
  }
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  transition: box-shadow 0.15s ease-in-out;
}

.navbar-toggler:hover {
  text-decoration: none;
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 0.25rem;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #32a89d;
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.nav-link:hover, .nav-link:focus {
  color: #287f76;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

#mainNav {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  background: rgba(26, 29, 32, 0.95);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  transition: background-color 0.2s ease;
  border-bottom: 1px solid rgba(50, 168, 157, 0.2);
}

#mainNav .navbar-brand {
  font-family: "Merriweather Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

#mainNav .navbar-nav .nav-item .nav-link {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Merriweather Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 0;
}

#mainNav .navbar-nav .nav-item .nav-link:hover, #mainNav .navbar-nav .nav-item .nav-link:active {
  color: #32a89d;
}

@media (min-width: 992px) {
  #mainNav {
    box-shadow: 0 2px 24px 0 rgba(0, 0, 0, 0.3);
    background: rgba(26, 29, 32, 0.75);
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
  }
  #mainNav .navbar-brand {
    color: rgba(255, 255, 255, 0.9);
  }
  #mainNav .navbar-brand:hover {
    color: #32a89d;
  }
  #mainNav .navbar-nav .nav-item .nav-link {
    color: rgba(255, 255, 255, 0.7);
    padding: 0 1rem;
  }
  #mainNav .navbar-nav .nav-item .nav-link:hover {
    color: #32a89d;
  }
  #mainNav .navbar-nav .nav-item:last-child .nav-link {
    padding-right: 0;
  }
}

/* Masthead - Full viewport with gradient overlay only */
header.masthead {
  min-height: 100vh;
  padding-top: 10rem;
  padding-bottom: calc(10rem - 4.5rem);
  background: linear-gradient(to bottom, rgba(92, 77, 66, 0.6) 0%, rgba(92, 77, 66, 0.4) 100%);
}

header.masthead h1, header.masthead .h1 {
  font-size: 2.25rem;
}

@media (min-width: 992px) {
  header.masthead {
    height: 100vh;
    min-height: 40rem;
    padding-top: 4.5rem;
    padding-bottom: 0;
  }
  header.masthead h1, header.masthead .h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1200px) {
  header.masthead h1, header.masthead .h1 {
    font-size: 3.5rem;
  }
}

.divider {
  max-width: 3.25rem;
  border-width: 0.2rem;
  border-color: rgba(50, 168, 157, 0.6);
}

.divider-light {
  border-color: rgba(255, 255, 255, 0.6);
}

/* Buttons */
.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn:hover {
  color: #212529;
}

.btn-primary {
  color: #fff;
  background: rgba(30, 107, 99, 0.8);
  border-color: rgba(30, 107, 99, 0.5);
}

.btn-primary:hover {
  color: #fff;
  background: rgba(30, 107, 99, 1);
  border-color: #32a89d;
}

.btn-outline-primary {
  color: rgba(50, 168, 157, 0.8);
  border-color: rgba(50, 168, 157, 0.5);
  background: transparent;
}

.btn-outline-primary:hover {
  color: #fff;
  background: rgba(30, 107, 99, 0.8);
  border-color: #32a89d;
}

.btn-light {
  color: rgba(255, 255, 255, 0.9);
  background-color: rgba(44, 47, 51, 0.6);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-light:hover {
  color: #fff;
  background-color: rgba(44, 47, 51, 0.9);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-light {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.3);
  background: transparent;
}

.btn-outline-light:hover {
  color: #fff;
  background-color: rgba(44, 47, 51, 0.6);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-xl {
  padding: 1rem 2rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  border-radius: 10rem;
}

.btn-lg {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

/* Page Section */
.page-section {
  padding: 6rem 0;
  background: rgba(26, 29, 32, 0.3);
}

.bg-primary {
  background: rgba(20, 60, 55, 0.35) !important;
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-top: 1px solid rgba(50, 168, 157, 0.2);
  border-bottom: 1px solid rgba(50, 168, 157, 0.2);
}

.bg-dark {
  background: rgba(22, 25, 28, 0.45) !important;
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  border-top: 1px solid rgba(50, 168, 157, 0.15);
  border-bottom: 1px solid rgba(50, 168, 157, 0.15);
}

/* Glassy utility class */
.glassy {
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
}

.bg-gray {
  background: rgba(21, 24, 27, 0.5) !important;
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  border-top: 1px solid rgba(50, 168, 157, 0.15);
}

/* Project Cards */
.project-card {
  background: rgba(44, 47, 51, 0.35);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(50, 168, 157, 0.2);
  color: #c8c8c8;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.4);
  border-color: rgba(50, 168, 157, 0.4);
}

.project-card.featured {
  border: 2px solid rgba(50, 168, 157, 0.4);
  background: rgba(44, 47, 51, 0.8);
}

.project-icon {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  background: rgba(30, 107, 99, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.project-icon.ai {
  background: rgba(179, 143, 0, 0.4);
}

.project-icon.deprecated {
  background: rgba(108, 117, 125, 0.4);
}

.project-status {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.project-status.active {
  background: rgba(30, 107, 99, 0.2);
  color: rgba(50, 168, 157, 0.9);
  border: 1px solid rgba(50, 168, 157, 0.3);
}

.project-status.deprecated {
  background: rgba(255, 193, 7, 0.1);
  color: rgba(255, 193, 7, 0.8);
  border: 1px solid rgba(255, 193, 7, 0.3);
}

/* Steam Widget */
.steam-widget {
  width: 100%;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
}

.steam-widget iframe {
  width: 100%;
  border: none;
  display: block;
}

/* Model Cards */
.model-card {
  background: rgba(44, 47, 51, 0.5);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(50, 168, 157, 0.15);
  transition: all 0.3s ease;
  height: 100%;
}

.model-card:hover {
  background: rgba(44, 47, 51, 0.7);
  border-color: rgba(50, 168, 157, 0.3);
}

.model-card h4 {
  color: rgba(50, 168, 157, 0.9);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.model-meta {
  color: rgba(200, 200, 200, 0.6);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.model-status {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.model-status.active {
  color: rgba(50, 168, 157, 0.9);
}

.model-status.deprecated {
  color: rgba(255, 193, 7, 0.8);
}

.model-card p {
  color: rgba(200, 200, 200, 0.8);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.model-card a {
  color: rgba(50, 168, 157, 0.9);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.model-card a:hover {
  color: #fff;
}

/* Footer */
footer {
  background-color: #15181b;
  border-top: 1px solid rgba(50, 168, 157, 0.1);
}

footer .text-muted {
  color: rgba(200, 200, 200, 0.5) !important;
}

footer a {
  color: rgba(200, 200, 200, 0.5);
  text-decoration: none;
}

footer a:hover {
  color: #32a89d;
}

/* Responsive */
@media (max-width: 991.98px) {
  .col-lg-8 {
    flex: 0 0 auto;
    width: 100%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 100%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 100%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 50%;
  }
}

@media (max-width: 767.98px) {
  header.masthead {
    padding-top: 5rem;
    padding-bottom: 5rem;
    min-height: auto;
  }

  .btn-xl {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }

  .project-card {
    padding: 1.25rem;
    margin-bottom: 1rem;
  }

  .col-xl-3 {
    width: 100%;
  }

  .d-flex.gap-2, .d-flex.gap-3 {
    flex-direction: column;
    align-items: stretch;
  }

  .d-flex .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .gap-2, .gap-3 {
    gap: 0.5rem !important;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .page-section {
    padding: 3rem 0;
  }

  #Matrix {
    opacity: 0.2;
  }

  .navbar-brand {
    font-size: 1rem;
  }
}

/* Print styles */
@media print {
  #Matrix,
  .navbar {
    display: none !important;
  }
}
body {
    width: 100%;
    height: auto;
}
