:root{
  --accent: #b62527;
  --base: #252021;
  --base2: #1b1718;
  --text: #f5f5f5;
  --muted: #d0cccc;
}
*{ box-sizing:border-box; }

/* Website Reader  */
.sr-only{
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Basic Elements */
.logo{
  max-width: 240px;
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  filter: drop-shadow(0 8px 18px rgba(182, 37, 39, 0.45));
}

.home-logo {
  margin: auto;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(182, 37, 39, 0.35);
  box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}

main{
  max-width: 1400px;
  margin: 0 auto;
  padding: 42px 18px 60px;
}

body{
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(135deg, var(--base), var(--base2));
  color: var(--text);
  padding-top: 70px;
}

.card{
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(182,37,39,0.18);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

h1,h2,h3{ margin: 0 0 12px; }

p{ color: var(--muted); line-height: 1.65; }

.button{
  display:inline-block;
  padding: 12px 28px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  text-decoration:none;
  font-weight: bold;
  letter-spacing: .5px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.button:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(182, 37, 39, 0.45);
}

.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.col-12{ grid-column: span 12; }
.col-6{ grid-column: span 6; }

@media (max-width: 780px){
  .col-6{ grid-column: span 12; }
  body{ padding-top: 72px; }
}

/* Footer Elements */
.site-footer {
  padding: 64px 18px 40px;
  background: var(--base);
  border-top: 2px solid var(--accent);
  text-align: center;
}

.footer-social {
  margin-bottom: 40px;
}

.footer-social-title {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-social-icons {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.footer-social-icons a {
  color: #ffffff;
  font-size: 1.4rem;
  opacity: 0.85;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-social-icons a:hover {
  opacity: 1;
  transform: translateY(-3px);
}

.footer-logo{
  width: 220px;
  max-width: 70vw;
  height: auto;
  display: block;
  margin: 0 auto 12px;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.35));
}

.footer-copyright {
  font-size: 0.85rem;
  color: #a39f9f;
}

@media (max-width: 640px) {
  .footer-social-icons { gap: 18px; }
}

/* Heading Elements */
.page-title {
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.02;
  margin: 10px 0 24px;
  padding-top: 20px;
  letter-spacing: 0.5px;
}

.kicker {
  display: inline-block;
  color: #d6d3d3;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  margin-top: 8px;
}

/* Devlogs Elements */
.devlog-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
  margin-top: 26px;
}

.devlog-card {
  grid-column: span 3;
  text-decoration: none;
  color: inherit;
}

@media (max-width: 1100px) {
  .devlog-card { grid-column: span 6; }
}
@media (max-width: 640px) {
  .devlog-card { grid-column: span 12; }
}

.devlog-thumb {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(182,37,39,0.22);
  background: rgba(0,0,0,0.25);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.devlog-thumb img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transform: scale(1.0);
  transition: transform .25s ease;
}

.devlog-card:hover .devlog-thumb img {
  transform: scale(1.04);
}

.devlog-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 14px 2px 8px;
  color: #d6d3d3;
  font-weight: 700;
  font-size: 0.9rem;
}

.devlog-meta .pill {
  display: inline-block;
  width: 44px;
  height: 3px;
  background: #b62527;
  border-radius: 999px;
  opacity: 0.9;
}

.devlog-title {
  font-size: 1.8rem;
  line-height: 1.05;
  margin: 0 2px;
}

.devlog-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.devlog-item {
  border-radius: 18px;
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(182,37,39,0.18);
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
  overflow: hidden;
}

.chev {
  font-weight: 900;
  color: #ffffff;
  opacity: 0.75;
}

.devlog-body {
  display: none;
  padding: 0 16px 16px;
  color: #d0cccc;
}

.devlog-item.open .devlog-body {
  display: block;
}

.devlog-body .focus {
  margin-top: 10px;
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: #b62527;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.devlogs-home {
  margin-top: 60px;
  margin-bottom: 60px;
}

.devlogs-home .devlog-grid {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* Devlogs Page Elements */
.devlogs-page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 42px 18px 60px;
}

.devlogs-hero {
  text-align: center;
  margin-bottom: 26px;
}

.devlogs-title {
  margin-bottom: 10px;
}

.devlog-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

.devlog-image-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 22px 0;
  align-items: start;
}

.devlog-image-row .devlog-image {
  width: 100%;
  max-width: none;
  margin: 0;
}

@media (max-width: 720px) {
  .devlog-image-row {
    grid-template-columns: 1fr;
  }
}

.devlogs-subtitle {
  margin: 0 auto 26px;
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.devlog-cards {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: 24px;
}

@media (max-width: 1100px) {
  .devlog-cards { gap: 16px; }
}
@media (max-width: 980px) {
  .devlog-cards { grid-template-columns: repeat(6, 1fr); }
}
@media (max-width: 640px) {
  .devlog-cards { grid-template-columns: repeat(1, 1fr); }
}

.devlog-card {
  grid-column: span 3;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.22);
  box-shadow: 0 10px 28px rgba(0,0,0,0.28);
  text-decoration: none;
  color: inherit;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

@media (max-width: 980px) { .devlog-card { grid-column: span 3; } }
@media (max-width: 640px) { .devlog-card { grid-column: span 12; } }

.devlog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(182,37,39,0.35);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.devlog-card-media {
  position: relative;
  height: 190px;
  background: rgba(0,0,0,0.25);
}

.devlog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.devlog-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 900;
  color: #fff;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(6px);
}

.devlog-card-body {
  padding: 14px 14px 16px;
}

.devlog-card-title {
  font-size: 1.05rem;
  line-height: 1.2;
  margin: 8px 0 8px;
  font-weight: 900;
}

.devlog-card-excerpt {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.devlog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(208,204,204,0.85);
  font-weight: 800;
  font-size: 0.85rem;
}

.devlog-empty {
  text-align: center;
  margin: 26px 0 0;
  color: var(--muted);
  font-weight: 800;
}

/* Devlog Toolbar Elements */
.devlogs-toolbar {
  display: grid;
  grid-template-columns: 1fr 260px 220px;
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(182,37,39,0.18);
  background: rgba(0,0,0,0.22);
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
}

.devlogs-search, .devlogs-select {
  height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.22);
  color: #fff;
  padding: 0 14px;
  font-weight: 700;
  outline: none;
}

.devlogs-search::placeholder {
  color: rgba(208, 204, 204, 0.75);
  font-weight: 700;
}

.devlogs-search:focus, .devlogs-select:focus {
  border-color: rgba(182,37,39,0.55);
  box-shadow: 0 0 0 3px rgba(182,37,39,0.18);
}

@media (max-width: 980px) {
  .devlogs-toolbar {
    grid-template-columns: 1fr;
  }
}

.dd {
  position: relative;
}

.dd-native {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.dd-button {
  width: 100%;
  height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.22);
  color: #fff;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.dd-button:hover {
  border-color: rgba(182,37,39,0.35);
}

.dd-button:focus-visible {
  outline: none;
  border-color: rgba(182,37,39,0.55);
  box-shadow: 0 0 0 3px rgba(182,37,39,0.18);
}

.dd-icon {
  opacity: 0.8;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.dd.open .dd-icon {
  transform: rotate(180deg);
  opacity: 1;
}

.dd-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  z-index: 50;

  border-radius: 16px;
  border: 1px solid rgba(182,37,39,0.22);
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 55px rgba(0,0,0,0.55);

  padding: 8px;
  display: none;
}

.dd.open .dd-menu {
  display: block;
}

.dd-option {
  width: 100%;
  border-radius: 12px;
  padding: 11px 12px;
  color: rgba(255,255,255,0.92);
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.12s ease, transform 0.12s ease;
}

.dd-option:hover {
  background: rgba(255,255,255,0.06);
}

.dd-option[aria-selected="true"] {
  background: rgba(182,37,39,0.18);
  outline: 1px solid rgba(182,37,39,0.30);
}

.dd-option.dd-active {
  background: rgba(255,255,255,0.08);
}

@media (max-width: 980px) {
  .dd-menu { top: calc(100% + 8px); }
}

/* Devlogs Individual Post Page Elements */
.post-page{
  max-width: 1400px;
  margin: 0 auto;
  padding: 42px 18px 70px;
}

.post-topbar{
  margin-bottom: 16px;
}

.post-back{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(182,37,39,0.30);
  background: rgba(0,0,0,0.22);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}

.post-back:hover{
  border-color: rgba(182,37,39,0.55);
}

.post{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(182,37,39,0.22);
  background: rgba(0,0,0,0.22);
  box-shadow: 0 18px 55px rgba(0,0,0,0.40);
}

.post-hero{
  position: relative;
  height: clamp(220px, 36vw, 420px);
  background: rgba(0,0,0,0.35);
}

.post-hero-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-inner{
  padding: 28px 28px 36px;
}

.post-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: rgba(208,204,204,0.90);
  font-weight: 800;
  margin-bottom: 14px;
}

.post-pill{
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 900;
  color: #fff;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.14);
}

.post-dot{ opacity: 0.6; }

.post-title{
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  line-height: 1.05;
}

.post-body{
  color: rgba(245,245,245,0.92);
  line-height: 1.85;
  font-size: 1.25rem;
}

.post-body p{
  color: rgba(245,245,245,0.92);
  margin: 0 0 18px;
}

.post-body h2{
  margin: 42px 0 12px;
  font-size: 2.0rem;
  line-height: 1.15;
}

.post-body h3{
  margin: 28px 0 10px;
  font-size: 1.45rem;
}

.post-body hr{
  border: 0;
  height: 1px;
  background: rgba(255,255,255,0.10);
  margin: 28px 0;
}

.post-body img {
  max-width: 75%;
  height: auto;
  display: block;
  margin: 22px auto;
}

.post-notfound{
  margin-top: 18px;
  text-align: center;
  color: var(--muted);
  font-weight: 900;
}

.feature-callout {
  max-width: 980px;
  margin: 28px auto;
  padding: 22px 24px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(182,37,39,0.22);
  box-shadow: 0 12px 30px rgba(0,0,0,0.22);
  text-align: left;
}

.feature-callout h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.feature-callout ul {
  margin: 0;
  padding-left: 18px;
}

.feature-callout li {
  margin: 8px 0;
  color: var(--muted);
}

@media (max-width: 720px){
  .post-inner{ padding: 22px 18px 28px; }
}

/* Top Nav */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(6px);
}

.nav-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 6px 12px;
  padding-left: 100px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-logo img {
  height: 56px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 0.88rem;
  position: relative;
  opacity: 0.85;
  transition: opacity 0.2s ease;
  padding: 6px 6px;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #b62527;
  transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-social-icons{
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-social-icons a{
  color: #ffffff;
  font-size: 1.4rem;
  opacity: 0.85;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-social-icons a:hover{
  opacity: 1;
  transform: translateY(-3px);
}

header.top-nav {
  padding: 8px 12px;
  background: rgba(0,0,0,0.16);
  border-bottom: 3px solid var(--accent);
}

@media (max-width: 780px) {
  .nav-logo img { height: 44px; }
  .nav-inner { padding: 6px 10px; gap: 12px; }
  .nav-links a { font-size: 0.85rem; }
}

/* Home Page Elements */
.who-we-are {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 18px 70px;
  text-align: center;
}

/* Home Page Game Elements */
.featured-game {
  width: 100%;
  margin-bottom: 0;
}

.featured-banner {
  position: relative;
  width: 100%;
  min-height: clamp(460px, 55vw, 680px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.featured-banner-bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/yabaseo/space-placeholder.png");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.featured-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(18, 13, 13, 0.92) 0%,
      rgba(18, 13, 13, 0.78) 38%,
      rgba(18, 13, 13, 0.30) 65%,
      rgba(18, 13, 13, 0.05) 100%
    ),
    linear-gradient(
      to top,
      rgba(0,0,0,0.45) 0%,
      transparent 40%
    );
  z-index: 1;
}

.featured-banner-content {
  position: relative;
  z-index: 2;
  padding: 52px clamp(24px, 6vw, 80px);
  max-width: 680px;
  display: flex;
  flex-direction: column;
}

.featured-banner-content .kicker {
  margin-bottom: 10px;
}

.featured-banner-content .featured-title-image {
  max-width: 800px;
  width: 150%;
  height: auto;
  display: block;
  margin: 0 0 18px;
  filter: drop-shadow(0 10px 28px rgba(0,0,0,0.55));
}

.featured-banner-content .featured-desc {
  color: rgba(208,204,204,0.90);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 0 14px;
  font-size: 1.25rem;
}

.featured-cta {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition: transform .2s ease, box-shadow .2s ease;
  align-self: flex-start;
  margin-top: 6px;
}

.featured-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(182, 37, 39, 0.45);
}

.featured-platforms {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  color: #d6d3d3;
  font-weight: 700;
  font-size: 0.9rem;
}

.platform-badges {
  display: flex;
  gap: 10px;
}

.badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
}

@media (max-width: 860px) {
  .featured-banner {
    min-height: clamp(380px, 70vw, 520px);
  }
  .featured-banner-overlay {
    background:
      linear-gradient(
        to bottom,
        rgba(18,13,13,0.55) 0%,
        rgba(18,13,13,0.88) 55%,
        rgba(18,13,13,0.96) 100%
      );
  }
  .featured-banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    padding: 36px 28px;
  }
}

@media (max-width: 540px) {
  .featured-banner { min-height: 420px; }
  .featured-banner-content { padding: 24px 18px 28px; }
  .featured-banner-content .featured-title-image { max-width: 300px; }
}

/* About Page */
.about-page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 18px 70px;
  text-align: center;
}

.about-hero {
  padding: 30px 0 10px;
}

.about-logo {
  width: 1000px;
  max-width: 70vw;
  height: auto;
  display: block;
  margin: 0 auto 12px;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.35));
}

.about-subtitle {
  margin: 0 0 18px;
  padding-top: 20px;
  letter-spacing: 0.18em;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.95rem;
}

.about-blurb {
  max-width: 760px;
  margin: 0 auto;
  margin-bottom: 1rem;
  line-height: 1.8;
  color: var(--muted);
  font-size: 1.25rem;
}

.about-section-title {
  margin: 60px 0 22px;
  letter-spacing: 0.12em;
  font-weight: 900;
  font-size: 1.4rem;
  color: #ffffff;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px;
  align-items: start;
  justify-items: center;
  margin-top: 18px;
}

@media (max-width: 820px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.team-member {
  width: 100%;
  max-width: 360px;
  padding: 18px 10px 0;
}

.team-picture {
  width: 170px;
  height: 170px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(182, 37, 39, 0.35);
  box-shadow: 0 18px 45px rgba(0,0,0,0.35);
  margin-bottom: 16px;
}

.team-name {
  margin: 6px 0 6px;
  font-size: 1.35rem;
}

.team-role {
  margin: 0 0 12px;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.team-bio {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.125rem;
}

.about-contact {
  margin-top: 10px;
}

.contact-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 18px 18px 6px;
  border-radius: 18px;
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(182,37,39,0.18);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  text-align: center;
}

.contact-line {
  margin: 10px 0;
  color: var(--muted);
}

.contact-card a {
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid rgba(182,37,39,0.6);
}

.contact-card a:hover {
  border-bottom-color: rgba(182,37,39,1);
}

.contact-line.muted {
  opacity: 0.75;
}

.post-body {
  color: rgba(245,245,245,0.92);
  line-height: 1.85;
  font-size: 1.25rem;
}

.devlog-prose {
  max-width: 900px;
  margin: 0 auto;
}

.devlog-prose p,
.devlog-prose h2,
.devlog-prose h3,
.devlog-prose ul,
.devlog-prose ol {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.post-body p {
  color: rgba(245,245,245,0.92);
  margin: 0 0 22px;
}

.post-body h2 {
  margin: 56px auto 18px;
  font-size: 2.4rem;
  line-height: 1.12;
}

.post-body h3 {
  margin: 28px 0 10px;
  font-size: 1.45rem;
}

.post-body .devlog-small-image {
  border: none;
  box-shadow: none;
  border-radius: 0;
  max-width: 280px;
  width: 25%;
  height: auto;
  display: block;
  margin-top: 150px;
}

.devlog-wide-image {
  max-width: 1180px;
  width: 100%;
  margin: 26px auto 30px;
}

.post-divider {
  max-width: 900px;
  margin: 42px auto;
  height: 1px;
  background: rgba(255,255,255,0.08);
}

.feature-callout {
  max-width: 980px;
  margin: 28px auto;
  padding: 22px 24px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(182,37,39,0.22);
  box-shadow: 0 12px 30px rgba(0,0,0,0.22);
  text-align: left;
}

.feature-callout h3,
.feature-callout h2 {
  margin: 0 0 10px;
}

.feature-callout ul {
  margin: 0;
  padding-left: 18px;
}

.feature-callout li {
  margin: 8px 0;
  color: var(--muted);
}

.devlog-image-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 28px auto 10px;
  align-items: start;
  max-width: 1180px;
}

.devlog-image-row figure {
  margin: 0;
}

.devlog-image-row .devlog-image {
  width: 100%;
  max-width: none;
  margin: 0 0 10px;
}

.devlog-image-row figcaption {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: left;
}

.closing-note {
  margin-top: 42px;
}

.closing-note h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.post-body .featured-title-image {
  max-width: 1000px;
  width: 100%;
  height: auto;
  display: block;
  margin: 8px auto 28px;
  filter: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

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

@media (max-width: 720px) {
  .devlog-image-row {
    grid-template-columns: 1fr;
  }

  .post-body {
    font-size: 1.08rem;
    line-height: 1.75;
  }

  .post-body h2 {
    font-size: 2rem;
    margin: 42px auto 16px;
  }
}