@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&family=Roboto+Mono:wght@400;500;700&display=swap");

body {
  color: #212529;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  font-family: "Inter", sans-serif;
  background-color: #f8f9fa;
}

* {
  box-sizing: border-box;
}

.container, .container-fluid {
  position: relative;
}

.container-fluid {
  max-width: 1200px;
}

a {
  color: #0d6efd;
  cursor: pointer;
  transition: all 0.25s ease;
}

a:hover, a:focus {
  color: #0a58ca;
  text-decoration: none;
}

p, h1, h2, h3, h4, h5, h6, ul, ol {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  font-family: "Roboto Mono", monospace;
  color: #212529;
}

ul, ol {
  list-style: none;
}

input, button, textarea {
  outline-style: none;
  padding: 0;
  border: none;
  border-radius: 0;
  transition: all 0.25s ease;
}

table {
  width: 100%;
}

.page {
  padding: 50px;
}

@media (max-width: 767px) {
  .page { padding: 15px; }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .page { padding: 25px; }
}

.page__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  min-height: calc(100vh - 100px);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

@media (max-width: 767px) {
  .page__inner { padding: 0 15px; }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .page__inner { padding: 0 25px; }
}
@media (min-width: 1200px) {
  .page__inner { padding: 50px 50px 0; }
}

/* Background grid for technical look */
.page__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at top left, #ffffff 0%, #f0f4f8 100%);
  z-index: 0;
  opacity: 1;
}

.page__inner::after {
  content: "";
  display: block;
  position: absolute;
  right: 100px;
  top: 50%;
  z-index: 0;
  width: 20vw;
  height: 20vw;
  border: 3px dashed #0d6efd;
  opacity: 0.4;
  transform: translateY(-50%) rotate(45deg);
  animation: float__2 45s linear infinite;
}

@media (max-width: 1199px) {
  .page__inner::after { display: none; }
}

@keyframes float__2 {
  0% { transform: translateY(-50%) rotate(0deg); }
  100% { transform: translateY(-50%) rotate(360deg); }
}

.fluid__box {
  position: relative;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  z-index: 2;
}

.loader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999999;
  width: 100%;
  height: 100%;
  background-color: #f8f9fa;
}

.loader > div {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.header__inner {
  padding: 40px 0;
}

.header__logo > a {
  display: inline-block;
  text-decoration: none;
}

.header__logo .logo-placeholder {
  font-family: 'Roboto Mono', monospace;
  font-size: 32px;
  font-weight: 700;
  color: #0d6efd;
  letter-spacing: -1px;
}

.header__logo .logo-placeholder span {
  color: #212529;
}

.main__content {
  position: relative;
  z-index: 2;
}

.content__inner {
  position: relative;
  z-index: 3;
  padding: 40px 0;
  max-width: 800px;
}

@media (max-width: 1199px) {
  .content__inner {
    max-width: 100%;
    text-align: center;
  }
}

.content__inner > p, .content__inner > h2, .content__inner > div {
  padding: 15px 0;
}

.content__inner h2 {
  line-height: 1.2;
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -2px;
  color: #212529;
}

.content__inner h2 span {
  color: #0d6efd;
}

@media (max-width: 479px) {
  .content__inner h2 { font-size: 40px; }
}

.content__inner p {
  font-size: 18px;
  line-height: 1.6;
  color: #6c757d;
}

.content__inner p > strong {
  font-size: 22px;
  font-weight: 500;
  color: #212529;
}

.content__inner p.highlight-tech {
  font-family: 'Roboto Mono', monospace;
  font-size: 16px;
  color: #0d6efd;
  background: rgba(13, 110, 253, 0.05);
  display: inline-block;
  padding: 5px 10px;
  border-radius: 4px;
  margin-top: 15px;
}

.footer {
  font-weight: 500;
  font-family: "Inter", sans-serif;
  margin-top: 50px;
  padding-bottom: 20px;
}

.footer__inner {
  display: flex;
  flex-flow: row wrap;
  border-top: 1px solid #e9ecef;
  padding-top: 20px;
}

.footer__column {
  width: 33.3333%;
  padding: 30px 0;
  text-align: center;
}

@media (max-width: 767px) {
  .footer__column {
    width: 100%;
    padding: 15px 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .footer__column {
    width: 50%;
  }
}

.footer__column h4 {
  font-family: "Roboto Mono", monospace;
  font-size: 14px;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.footer__list > ul > li {
  padding: 5px 0;
}

.footer__list > ul > li, .footer__list > ul > li > a {
  color: #212529;
  font-size: 15px;
}

.footer__list > ul > li > a:hover {
  color: #0d6efd;
}

.footer__social {
  font-size: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer__social > ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 15px;
}

.footer__social > ul > li > a {
  color: #6c757d;
}

.footer__social > ul > li > a:hover {
  transform: translateY(-3px);
}

.footer__social > ul > li > a.fa-facebook:hover { color: #3b5999; }
.footer__social > ul > li > a.fa-instagram:hover { color: #e4405f; }
.footer__social > ul > li > a.fa-linkedin:hover { color: #0077b5; }
.footer__social > ul > li > a.fa-github:hover { color: #333; }
