@charset "UTF-8";
/* ================================================================
   BRUTALIST THEME - RAW, HARSH, HONEST
   Based on architectural brutalism and "béton brut"
   Function over form. Disruption over comfort.
   ================================================================ */
/* RESET AND BASE - NO POLISH */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-radius: 0 !important;
  /* NO CURVES */ }

:root {
  --black: #000000;
  --white: #FFFFFF;
  --gray: #808080;
  --grid-size: 20px; }

html {
  font-size: 16px;
  -webkit-font-smoothing: auto;
  /* NO SMOOTHING */
  -moz-osx-font-smoothing: auto; }

body {
  font-family: 'Courier New', Courier, monospace;
  font-size: 1rem;
  line-height: 1.4;
  background: var(--white);
  color: var(--black);
  font-weight: 700;
  letter-spacing: 0.02em;
  overflow-x: hidden; }

/* BRUTAL CONTAINER - ASYMMETRIC */
.brutal-container {
  max-width: none;
  padding: 0;
  position: relative;
  z-index: 1; }

/* GRID OVERLAY - VISIBLE STRUCTURE */
.grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(0deg, transparent, transparent calc(var(--grid-size) - 1px), rgba(0, 0, 0, 0.03) calc(var(--grid-size) - 1px), rgba(0, 0, 0, 0.03) var(--grid-size)), repeating-linear-gradient(90deg, transparent, transparent calc(var(--grid-size) - 1px), rgba(0, 0, 0, 0.03) calc(var(--grid-size) - 1px), rgba(0, 0, 0, 0.03) var(--grid-size));
  pointer-events: none;
  z-index: 9999; }

/* TYPOGRAPHY - OVERSIZED AND HARSH */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Arial Black', 'Arial Bold', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.9;
  margin: 0;
  word-break: break-word; }

h1 {
  font-size: clamp(3rem, 12vw, 8rem); }

h2 {
  font-size: clamp(2rem, 8vw, 5rem); }

h3 {
  font-size: clamp(1.5rem, 5vw, 3rem); }

h4 {
  font-size: 1.5rem; }

h5 {
  font-size: 1.2rem; }

h6 {
  font-size: 1rem; }

p {
  margin: 1em 0;
  max-width: 65ch; }

/* LINKS - HARSH UNDERLINE */
a {
  color: var(--black);
  text-decoration: none;
  border-bottom: 4px solid var(--black);
  transition: none;
  font-weight: 900; }

a:hover {
  background: var(--black);
  color: var(--white); }

/* BRUTAL HEADER - ASYMMETRIC LAYOUT */
.brutal-header {
  border-bottom: 8px solid var(--black);
  padding: 40px 20px;
  background: var(--white);
  position: relative; }

.brutal-title-block {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 30px; }

.site-title {
  font-size: clamp(2.5rem, 10vw, 6rem);
  margin: 0; }

.site-title a {
  border: none; }

.site-title a:hover {
  background: none;
  color: var(--black);
  text-decoration: line-through;
  text-decoration-thickness: 6px; }

.brutal-slash {
  font-size: clamp(2rem, 8vw, 5rem);
  font-weight: 900;
  opacity: 0.3; }

/* NAVIGATION - RAW LIST */
.brutal-nav {
  border: 4px solid var(--black);
  padding: 20px;
  background: var(--white);
  transform: rotate(-0.5deg);
  margin-left: 40px; }

.nav-label {
  font-weight: 900;
  font-size: 0.8rem;
  margin-bottom: 15px;
  display: block;
  letter-spacing: 0.2em; }

.nav-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px; }

.nav-item {
  border: 2px solid var(--black);
  background: var(--white); }

.nav-link {
  display: block;
  padding: 15px;
  border: none;
  font-size: 1.1rem;
  letter-spacing: 0.05em; }

.nav-link:hover {
  background: var(--black);
  color: var(--white);
  transform: translate(3px, 3px); }

.nav-marker {
  display: inline-block;
  margin-right: 5px;
  font-weight: 900; }

/* MAIN CONTENT - BRUTAL SPACING */
.brutal-main {
  padding: 60px 20px;
  min-height: 70vh; }

/* HOME PAGE - HERO SECTION */
.brutal-hero {
  padding: 80px 20px;
  border: 12px solid var(--black);
  background: var(--white);
  margin-bottom: 80px;
  position: relative;
  transform: rotate(0.5deg); }

.hero-marker {
  position: absolute;
  top: -30px;
  left: 20px;
  background: var(--white);
  padding: 5px 15px;
  border: 4px solid var(--black);
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 0.2em; }

.hero-title {
  margin-bottom: 30px;
  line-height: 0.85;
  max-width: 20ch; }

.hero-subtitle {
  font-size: clamp(1.2rem, 4vw, 2.5rem);
  font-weight: 900;
  max-width: 30ch;
  margin-top: 30px;
  font-family: 'Courier New', monospace;
  line-height: 1.2; }

.hero-decoration {
  margin-top: 40px;
  display: flex;
  gap: 15px; }

.decoration-block {
  font-size: 3rem;
  display: inline-block;
  animation: blink 2s infinite; }

.decoration-block:nth-child(2) {
  animation-delay: 0.3s; }

.decoration-block:nth-child(3) {
  animation-delay: 0.6s; }

@keyframes blink {
  0%, 100% {
    opacity: 1; }
  50% {
    opacity: 0.3; } }

/* POSTS GRID - ASYMMETRIC */
.brutal-posts {
  margin-top: 80px; }

.section-title {
  font-size: clamp(2rem, 6vw, 4rem);
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  gap: 15px; }

.title-bracket {
  font-size: 1.5em;
  opacity: 0.4; }

.posts-grid {
  display: grid;
  gap: 40px; }

.post-card {
  border: 6px solid var(--black);
  padding: 30px;
  background: var(--white);
  position: relative;
  transform: rotate(-0.3deg);
  transition: transform 0.1s; }

.post-card:nth-child(even) {
  transform: rotate(0.3deg);
  margin-left: 60px; }

.post-card:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.2); }

.post-marker {
  position: absolute;
  top: -15px;
  left: 20px;
  background: var(--white);
  padding: 5px 10px;
  font-weight: 900;
  font-size: 1.5rem; }

.post-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 20px;
  line-height: 1.1; }

.post-title a {
  border: none; }

.post-title a:hover {
  background: var(--black);
  color: var(--white);
  padding: 0 10px; }

.post-meta {
  margin-bottom: 20px;
  font-size: 0.9rem;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center; }

.post-date {
  font-weight: 900;
  letter-spacing: 0.1em; }

.post-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap; }

.tag {
  border: 2px solid var(--black);
  padding: 3px 8px;
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.05em; }

.post-summary {
  margin: 20px 0;
  line-height: 1.6;
  font-weight: 400; }

.post-link a {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  border-bottom-width: 3px; }

/* ARTICLE PAGE - HARSH STRUCTURE */
.brutal-article {
  max-width: 900px;
  margin: 0 auto; }

.article-header {
  border: 8px solid var(--black);
  padding: 40px;
  margin-bottom: 60px;
  background: var(--white);
  position: relative; }

.header-marker {
  position: absolute;
  top: -20px;
  left: 30px;
  background: var(--white);
  padding: 5px 15px;
  border: 4px solid var(--black);
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.2em; }

.article-title {
  margin-bottom: 30px;
  line-height: 1; }

.article-meta {
  margin-top: 30px;
  display: grid;
  gap: 10px; }

.meta-row {
  display: flex;
  gap: 15px;
  align-items: baseline;
  flex-wrap: wrap; }

.meta-label {
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  min-width: 80px; }

.meta-value {
  font-weight: 400; }

.meta-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap; }

.header-divider,
.footer-divider {
  margin: 30px 0;
  font-size: 0.5rem;
  letter-spacing: -0.1em;
  word-break: break-all;
  opacity: 0.3;
  line-height: 1; }

/* ARTICLE CONTENT - RAW TYPOGRAPHY */
.article-content {
  padding: 40px 20px;
  font-family: 'Courier New', monospace;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.7; }

.article-content h2,
.article-content h3,
.article-content h4 {
  margin-top: 2em;
  margin-bottom: 0.5em;
  border-bottom: 4px solid var(--black);
  padding-bottom: 0.2em; }

.article-content a {
  border-bottom: 3px solid var(--black); }

.article-content strong {
  font-weight: 900;
  background: var(--black);
  color: var(--white);
  padding: 2px 5px; }

.article-content em {
  font-style: normal;
  border-bottom: 2px solid var(--black);
  font-weight: 700; }

.article-content code {
  background: var(--black);
  color: var(--white);
  padding: 3px 8px;
  font-family: 'Courier New', monospace;
  font-weight: 700;
  border: 3px solid var(--black); }

.article-content pre {
  background: var(--white);
  border: 6px solid var(--black);
  padding: 30px;
  overflow-x: auto;
  margin: 40px 0;
  font-size: 0.9rem;
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.1); }

.article-content pre code {
  background: transparent;
  border: none;
  padding: 0;
  color: var(--black); }

.article-content blockquote {
  border-left: 10px solid var(--black);
  padding-left: 30px;
  margin: 40px 0;
  font-weight: 700;
  font-size: 1.2rem;
  font-style: italic; }

.article-content ul,
.article-content ol {
  margin: 20px 0;
  padding-left: 40px; }

.article-content li {
  margin: 10px 0; }

.article-content img {
  max-width: 100%;
  border: 6px solid var(--black);
  margin: 40px 0;
  image-rendering: crisp-edges;
  filter: contrast(1.2) grayscale(30%); }

/* ARTICLE FOOTER */
.article-footer {
  margin-top: 80px;
  border: 4px solid var(--black);
  padding: 30px; }

.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px; }

.nav-prev,
.nav-next {
  display: flex;
  flex-direction: column;
  gap: 10px; }

.nav-next {
  text-align: right;
  align-items: flex-end; }

.nav-label {
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.2em; }

/* LIST PAGE */
.brutal-list {
  max-width: 1000px;
  margin: 0 auto; }

.list-header {
  border: 8px solid var(--black);
  padding: 40px;
  margin-bottom: 60px;
  position: relative; }

.list-title {
  line-height: 1; }

.list-description {
  margin-top: 30px;
  font-size: 1.2rem;
  line-height: 1.5; }

.list-content {
  display: grid;
  gap: 30px; }

.list-item {
  border: 4px solid var(--black);
  padding: 30px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  transition: all 0.1s; }

.list-item:hover {
  transform: translateX(10px);
  box-shadow: -8px 8px 0 rgba(0, 0, 0, 0.15); }

.item-marker {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1; }

.item-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 15px; }

.item-title a {
  border: none; }

.item-title a:hover {
  background: var(--black);
  color: var(--white);
  padding: 0 10px; }

.item-meta {
  margin-bottom: 15px;
  font-size: 0.9rem;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center; }

.meta-separator {
  font-weight: 900; }

.item-summary {
  line-height: 1.6;
  font-weight: 400; }

/* FOOTER - BRUTAL GRID */
.brutal-footer {
  border-top: 8px solid var(--black);
  padding: 40px 20px;
  margin-top: 100px;
  background: var(--black);
  color: var(--white); }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px; }

.footer-block {
  font-weight: 900; }

.footer-label {
  letter-spacing: 0.2em;
  font-size: 0.9rem; }

.footer-copyright {
  font-family: 'Courier New', monospace;
  letter-spacing: 0.1em; }

.footer-raw {
  text-align: right;
  font-size: 0.8rem;
  letter-spacing: -0.1em; }

.raw-marker {
  opacity: 0.5; }

/* RESPONSIVE - MAINTAIN BRUTALITY */
@media (max-width: 768px) {
  .brutal-header {
    padding: 30px 15px; }
  .brutal-nav {
    margin-left: 0;
    transform: none; }
  .nav-list {
    grid-template-columns: 1fr; }
  .brutal-hero {
    padding: 40px 20px;
    border-width: 6px; }
  .post-card:nth-child(even) {
    margin-left: 0; }
  .article-header {
    padding: 25px;
    border-width: 5px; }
  .article-content {
    padding: 20px 10px;
    font-size: 1rem; }
  .article-nav {
    grid-template-columns: 1fr; }
  .nav-next {
    text-align: left;
    align-items: flex-start; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px; }
  .footer-raw {
    text-align: left; } }

/* NO SELECTION SMOOTHNESS */
::selection {
  background: var(--black);
  color: var(--white); }

::-moz-selection {
  background: var(--black);
  color: var(--white); }

/* TABLES - RAW GRID */
table {
  width: 100%;
  border-collapse: collapse;
  border: 4px solid var(--black);
  margin: 30px 0; }

th, td {
  border: 2px solid var(--black);
  padding: 15px;
  text-align: left; }

th {
  background: var(--black);
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em; }

/* FORMS - BRUTAL INPUT */
input, textarea, select, button {
  font-family: 'Courier New', monospace;
  font-size: 1rem;
  font-weight: 700;
  border: 4px solid var(--black);
  padding: 15px;
  background: var(--white);
  color: var(--black); }

input:focus, textarea:focus, select:focus {
  outline: none;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.2); }

button {
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.1s; }

button:hover {
  background: var(--black);
  color: var(--white);
  transform: translate(3px, 3px); }

button:active {
  transform: translate(6px, 6px);
  box-shadow: none; }

/* SECTION DIVIDER FOR LIST PAGES */
.section-divider {
  margin: 60px 0 40px 0;
  font-size: 0.5rem;
  letter-spacing: -0.1em;
  word-break: break-all;
  opacity: 0.3;
  line-height: 1; }

.subsection-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px; }

/* QUOTES SHORTCODE - BRUTAL STYLE */
.pouet {
  border: 6px solid var(--black);
  padding: 30px;
  margin: 60px 0;
  background: var(--white);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  align-items: center; }

.pouet-photo {
  margin: 0;
  position: relative;
  display: inline-block; }

.pouet-photo::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 0, 0, 0.35);
  pointer-events: none;
  mix-blend-mode: multiply; }

.pouet-image {
  width: 120px !important;
  height: 120px !important;
  object-fit: cover;
  border: 4px solid var(--black) !important;
  filter: grayscale(100%) contrast(1.3) !important;
  margin: 0 !important;
  display: block; }

.pouet-quote {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 500; }

.pouet-quote em {
  font-style: normal;
  font-weight: 700; }

.pouet-quote strong {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem; }

@media (max-width: 768px) {
  .pouet {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px; }
  .pouet-image {
    width: 90px !important;
    height: 90px !important; } }

/* PORTRAIT IMAGES - REDUCED SIZE WITH RED OVERLAY */
.portrait-wrapper {
  position: relative;
  display: inline-block;
  margin: 40px auto;
  max-width: 250px;
  width: 100%; }

.portrait-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 0, 0, 0.35);
  pointer-events: none;
  mix-blend-mode: multiply; }

img.portrait {
  max-width: 100% !important;
  width: 100% !important;
  height: auto !important;
  margin: 0 !important;
  display: block !important;
  border: 6px solid var(--black) !important;
  /*filter: grayscale(100%) contrast(1.2) !important;*/
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.15) !important; }

a.white {
  color: white; }

@media (max-width: 768px) {
  .portrait-wrapper {
    max-width: 180px; } }
