/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== GLOBAL BACKGROUND - BRICK WALL ===== */
body {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  /* Base Mortar Color (Gritty Grey instead of pure white) */
  background-color: #d8d3cd;
  
  background-image: 
      /* Layer 1: Heavy Noise/Dirt Overlay (Breaks the cartoon look) */
      url("https://www.transparenttextures.com/patterns/asfalt-dark.png"),
      
      /* Layer 2: Vignette to darken edges */
      radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.4) 100%),

      /* Layer 3: The Bricks (Now with uneven lighting) */
      linear-gradient(335deg, rgba(152, 68, 58, 0.95) 23px, transparent 23px),
      linear-gradient(155deg, rgba(138, 58, 48, 0.95) 23px, transparent 23px), /* Slightly darker for variation */
      linear-gradient(335deg, rgba(152, 68, 58, 0.95) 23px, transparent 23px),
      linear-gradient(155deg, rgba(138, 58, 48, 0.95) 23px, transparent 23px);

  background-size: 
      400px 400px,      /* Noise size */
      100% 100%,        /* Vignette size */
      58px 58px,        /* Brick sizes... */
      58px 58px,
      58px 58px,
      58px 58px;

  background-position: 
      0 0,
      0 0,
      0px 2px,
      4px 35px,
      29px 31px,
      34px 6px;

  /* Multiply blend mode adds the grit to the color */
  background-blend-mode: multiply, multiply, normal, normal, normal, normal;
  
  color: #000000;
  overflow-x: hidden;
  min-height: 100vh;
  padding: 0;
}

/* ===== PAGE CONTAINER ===== */
.page-container {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

/* ===== BOARD WRAPPER ===== */
.board-wrapper {
  width: min(980px, 92vw);
  margin: 0 auto;
  position: relative;
}

/* ===== CORKBOARD - REALISTIC 3D BOARD ===== */
.corkboard {
  position: relative;
  width: 100%;
  min-height: 900px;
  margin: 50px auto;
  background-color: #C08F64;
  background-image: url('https://www.transparenttextures.com/patterns/cork-board.png');
  background-size: 300px 300px;
  background-position: 0 0;
  background-repeat: repeat;
  background-blend-mode: multiply;
  /* 3D Metallic Frame */
  border: 20px solid;
  border-image: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 25%, #b8b8b8 50%, #d0d0d0 75%, #e8e8e8 100%) 1;
  border-style: outset;
  box-shadow: 
    /* Outer frame shadow */
    0 0 0 2px #a0a0a0,
    /* Inner vignette */
    inset 0 0 80px rgba(0, 0, 0, 0.4),
    inset 0 0 40px rgba(0, 0, 0, 0.2),
    /* 3D depth shadow */
    0 40px 100px rgba(0, 0, 0, 0.9),
    0 20px 50px rgba(0, 0, 0, 0.7),
    /* Frame bevel highlight */
    inset -5px -5px 10px rgba(255, 255, 255, 0.1),
    inset 5px 5px 10px rgba(0, 0, 0, 0.3);
  padding: 2.5rem;
  overflow: hidden;
  border-radius: 2px;
}

/* ===== RED STRINGS SVG ===== */
.evidence-strings {
  position: absolute;
  top: 2.5rem;
  left: 2.5rem;
  width: calc(100% - 5rem);
  height: calc(100% - 5rem);
  pointer-events: none;
  z-index: 1;
}

.red-string {
  stroke: #DC2626;
  stroke-width: 2;
  stroke-dasharray: 4, 3;
  fill: none;
  opacity: 0.7;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.5));
}

/* ===== BOARD ELEMENTS - ABSOLUTE POSITIONING ===== */
.board-element {
  position: absolute;
  z-index: 10;
}

/* ===== 3D PUSH PINS ===== */
.board-element::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 26px;
  /* 3D Red Sphere Effect */
  background: radial-gradient(
    circle at 30% 30%,
    #ff6b6b 0%,
    #ff4444 20%,
    #cc0000 50%,
    #990000 80%,
    #660000 100%
  );
  border: 2px solid #440000;
  border-radius: 50%;
  box-shadow: 
    /* Pin highlight */
    inset -3px -3px 6px rgba(0, 0, 0, 0.4),
    inset 3px 3px 6px rgba(255, 255, 255, 0.3),
    /* Pin drop shadow into cork */
    0 4px 8px rgba(0, 0, 0, 0.6),
    0 2px 4px rgba(0, 0, 0, 0.4);
  z-index: 15;
}

/* Pin shank (metal part sticking out) */
.board-element::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 10px;
  background: linear-gradient(to bottom, #cccccc 0%, #999999 50%, #666666 100%);
  box-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-radius: 0 0 2px 2px;
  z-index: 14;
}

/* ===== BOARD TITLE - WALL BANNER (OUTSIDE CORKBOARD) ===== */
.board-title {
  position: relative;
  margin: 0 auto 30px auto;
  width: fit-content;
  max-width: 90%;
  background-color: #f9f9f9;
  background-image: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.02) 2px,
      rgba(0, 0, 0, 0.02) 4px
    );
  padding: 1rem 3rem;
  border: none;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.5),
    0 5px 15px rgba(0, 0, 0, 0.4);
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: #000000;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
  transform: rotate(-1deg);
  z-index: 20;
  /* Tape effect */
  overflow: visible;
}

/* Tape strips holding the banner to the wall */
.board-title::before,
.board-title::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 20px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  z-index: -1;
}

.board-title::before {
  top: -8px;
  left: 20px;
  transform: rotate(-35deg);
}

.board-title::after {
  top: -8px;
  right: 20px;
  transform: rotate(35deg);
}

/* ===== CONTRACT ADDRESS - YELLOW STICKY NOTE (ZONE 1: TOP HEADER - RIGHT) ===== */
.contract-note {
  top: 30px;
  right: 30px;
  left: auto;
  background: linear-gradient(135deg, #FFF9C4 0%, #FFF59D 50%, #FFF176 100%);
  padding: 1.6rem 1.1rem 0.85rem 1.1rem;
  width: 250px;
  max-width: 250px;
  box-shadow: 
    5px 10px 25px rgba(0, 0, 0, 0.5),
    0 2px 4px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transform: rotate(3deg);
  transition: transform 0.3s ease;
  border: none;
  position: relative;
  z-index: 21;
}

/* Move pin higher for contract note */
.contract-note::before {
  top: -20px !important;
}

/* ===== THE DATE - POLAROID STYLE (TOP CENTER) ===== */
.date-photo {
  top: 40px;
  left: 40%;
  transform: rotate(2deg);
  width: 180px;
  max-width: 180px;
}

.date-calendar {
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  padding: 1.5rem 1rem;
  text-align: center;
  border: 2px solid #000000;
  box-shadow: inset 0 0 0 3px #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 120px;
  margin-bottom: 0;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.calendar-month {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  color: #DC2626;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.calendar-day {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #000000;
  line-height: 1;
}

.calendar-year {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  font-weight: 900;
  color: #DC2626;
  line-height: 1.2;
  text-align: center;
  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  word-wrap: break-word;
}

/* ===== THE CIPHER - TORN PAPER STYLE (TOP RIGHT) ===== */
.cipher-note {
  top: 50px;
  right: 40px;
  left: auto;
  width: 200px;
  max-width: 200px;
  background-color: #fdfbf7;
  background-image: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.02) 2px,
      rgba(0, 0, 0, 0.02) 4px
    );
  padding: 1.2rem 1rem;
  box-shadow: 
    5px 10px 25px rgba(0, 0, 0, 0.5),
    0 2px 4px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transform: rotate(-3deg);
  border: none;
}

.cipher-note .note-content {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #1a1a1a;
  text-align: center;
}

.cipher-note .note-content p {
  margin: 0.5rem 0;
}

.cipher-emoji {
  font-size: 1.5rem;
  display: block;
  margin-top: 0.5rem;
}

.contract-note:hover {
  transform: rotate(0deg) scale(1.05);
  z-index: 21;
}

.top-secret-stamp {
  position: absolute;
  top: -12px;
  right: -10px;
  bottom: auto;
  left: auto;
  background-color: #DC2626;
  color: #FFFFFF;
  padding: 0.4rem 0.9rem;
  font-weight: 900;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  border: 3px solid #000000;
  transform: rotate(15deg);
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  box-shadow: 
    0 4px 8px rgba(0, 0, 0, 0.5),
    inset 0 -2px 4px rgba(0, 0, 0, 0.3);
  z-index: 22;
}

.ca-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #000000;
  position: relative;
  z-index: 17;
}

.ca-address {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 600;
  word-break: break-all;
  margin-bottom: 0.75rem;
  color: #000000;
  user-select: all;
  line-height: 1.4;
  position: relative;
  z-index: 17;
}

.copy-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  padding: 0.5rem 1rem;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 17;
}

.copy-btn:hover {
  background-color: #FFFFFF;
  color: #000000;
}

.copy-btn:active {
  transform: scale(0.95);
}

.copy-btn svg {
  width: 12px;
  height: 12px;
}

/* ===== PHOTOS - POLAROID STYLE (ZONE 2 & 3) ===== */
.evidence-photo {
  background-color: #FFFFFF;
  padding: 10px 10px 42px 10px;
  box-shadow: 
    5px 10px 25px rgba(0, 0, 0, 0.5),
    0 2px 4px rgba(0, 0, 0, 0.3);
  border: none;
  max-width: 220px;
  transform: rotate(-1deg);
  transition: transform 0.3s ease;
}

.evidence-photo:hover {
  transform: rotate(0deg) scale(1.05);
  z-index: 25;
}

/* ZONE 3: Bottom Row */
.card-subject {
  bottom: 10%;
  left: 10%;
  width: 170px;
  max-width: 170px;
  transform: rotate(-2deg);
}

/* ZONE 2: Middle Row - Logo Center */
.card-logo {
  top: 30%;
  left: 50%;
  transform: translateX(-50%) rotate(1deg);
  width: 200px;
  max-width: 200px;
}

/* Removed card-catalyst - not in layout requirements */
.card-catalyst {
  display: none;
}

/* ZONE 2: Middle Row */
.card-target {
  top: 30%;
  right: 5%;
  width: 170px;
  max-width: 170px;
  transform: rotate(-1deg);
}

.evidence-img {
  width: 100%;
  height: auto;
  display: block;
  background-color: #F9FAFB;
}

.photo-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background-color: #000000;
  color: #FFFFFF;
  padding: 0.4rem;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
}

.photo-label.logo-ca {
  font-size: 0.5rem;
  padding: 0.3rem 0.2rem;
  word-break: break-all;
  overflow-wrap: break-word;
  line-height: 1.2;
  max-width: calc(100% - 20px);
  margin: 0 auto;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* ===== STICKY NOTES (ZONE 3: BOTTOM ROW) ===== */
.sticky-note {
  background: linear-gradient(135deg, #FFF9C4 0%, #FFF59D 50%, #FFF176 100%);
  padding: 0.85rem;
  width: 180px;
  max-width: 180px;
  box-shadow: 
    5px 10px 25px rgba(0, 0, 0, 0.5),
    0 2px 4px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border: none;
  transform: rotate(-2deg);
  transition: transform 0.3s ease;
}

.sticky-note:hover {
  transform: rotate(0deg) scale(1.05);
  z-index: 25;
}

.card-thesis {
  bottom: 15%;
  left: 35%;
  transform: rotate(-2deg);
}

.card-insider {
  bottom: 15%;
  right: 30%;
  transform: rotate(2deg);
  background: linear-gradient(135deg, #FFE0F0 0%, #FFC1E3 50%, #FFA8D5 100%);
}

.card-targetnote {
  bottom: 10%;
  right: 5%;
  transform: rotate(-1deg);
  background: linear-gradient(135deg, #E0F2FF 0%, #B3E5FC 50%, #81D4FA 100%);
}

.note-header {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
  color: #000000;
  border-bottom: 2px solid #000000;
  padding-bottom: 0.35rem;
}

.note-content {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  line-height: 1.5;
  color: #000000;
}

.note-content p {
  margin-bottom: 0.4rem;
}

.highlight {
  color: #DC2626;
  font-weight: 700;
}

.emphasis {
  font-weight: 700;
  font-size: 0.85rem;
}

.goal-text {
  font-weight: 700;
  color: #DC2626;
  font-size: 0.8rem;
}

/* ===== CHART FEED CARD (ZONE 2: MIDDLE ROW) ===== */
.card-feed {
  top: 30%;
  left: 5%;
  background-color: #FFFFFF;
  padding: 10px 10px 42px 10px;
  box-shadow: 
    5px 10px 25px rgba(0, 0, 0, 0.5),
    0 2px 4px rgba(0, 0, 0, 0.3);
  width: 240px;
  max-width: 240px;
  transform: rotate(-2deg);
  transition: transform 0.3s ease;
  border: none;
}

.card-feed:hover {
  transform: rotate(0deg) scale(1.02);
  z-index: 25;
}

.chart-label {
  background-color: #000000;
  color: #FFFFFF;
  padding: 0.4rem;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.6rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.chart-box {
  background-color: #FFFFFF;
  border: none;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.chart-box .evidence-img {
  width: 100%;
  height: auto;
  display: block;
}

.chart-placeholder-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: #6B7280;
  margin-bottom: 0.35rem;
  text-align: center;
}

.chart-placeholder-subtext {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  color: #9CA3AF;
  text-align: center;
}

/* ===== THE CONVICTION ZONE ===== */
.conviction-zone {
  width: 100%;
  max-width: 1400px;
  margin: 4rem auto 2rem;
  padding: 0 2rem;
}

.conviction-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #FFFFFF;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 3rem;
  text-shadow: 
    3px 3px 0 rgba(0, 0, 0, 0.8),
    0 0 20px rgba(0, 0, 0, 0.5);
  position: relative;
  display: inline-block;
  width: 100%;
  /* Stencil-style effect */
  -webkit-text-stroke: 2px rgba(0, 0, 0, 0.3);
  paint-order: stroke fill;
}

.conviction-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  width: 100%;
}

.evidence-card {
  position: relative;
  background-color: #fdfbf7;
  background-image: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.02) 2px,
      rgba(0, 0, 0, 0.02) 4px
    );
  padding: 2rem 2rem 2rem 3.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #1a1a1a;
  box-shadow: 
    0 8px 30px rgba(0, 0, 0, 0.4),
    0 4px 10px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transform: rotate(-0.5deg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* Tape effect using pseudo-elements */
  overflow: visible;
}

.evidence-card:nth-child(even) {
  transform: rotate(0.5deg);
}

.evidence-card:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.5),
    0 6px 15px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  z-index: 10;
}

/* Tape effect - top corners */
.evidence-card::before,
.evidence-card::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 15px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 
    0 1px 3px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  z-index: 1;
}

.evidence-card::before {
  top: -5px;
  left: 20px;
  transform: rotate(-45deg);
}

.evidence-card::after {
  top: -5px;
  right: 20px;
  transform: rotate(45deg);
}

.card-number {
  position: absolute;
  top: -15px;
  left: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #DC2626;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #000000;
  box-shadow: 
    0 4px 8px rgba(0, 0, 0, 0.5),
    inset 0 -2px 4px rgba(0, 0, 0, 0.3);
  z-index: 2;
  transform: rotate(-5deg);
}

.card-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: #000000;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #000000;
  padding-bottom: 0.5rem;
}

.card-text {
  margin: 0;
  color: #1a1a1a;
  font-weight: 400;
}

/* Redacted Card Styling */
.evidence-card.redacted-card {
  background-color: #e8e8e0;
  background-image: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.03) 2px,
      rgba(0, 0, 0, 0.03) 4px
    );
  border: 2px solid rgba(0, 0, 0, 0.2);
  position: relative;
}

.evidence-card.redacted-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 8px,
    rgba(0, 0, 0, 0.1) 8px,
    rgba(0, 0, 0, 0.1) 10px
  );
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
}

.evidence-card.redacted-card .card-title {
  color: #DC2626;
  border-bottom-color: #DC2626;
  position: relative;
  z-index: 2;
}

.evidence-card.redacted-card .card-text {
  position: relative;
  z-index: 2;
}

.redacted-code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: #666666;
  letter-spacing: 0.2em;
  margin: 1rem 0;
  padding: 0.8rem;
  background-color: rgba(0, 0, 0, 0.05);
  border: 1px dashed rgba(0, 0, 0, 0.2);
  text-align: center;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

/* Responsive Grid */
@media (min-width: 640px) {
  .conviction-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .conviction-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .conviction-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== BACKGROUND INTELLIGENCE DOSSIER ===== */
.dossier-section {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 3rem 2.5rem 2.5rem;
  background-color: #f0e6d2;
  background-image: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.03) 2px,
      rgba(0, 0, 0, 0.03) 4px
    );
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.5),
    0 6px 20px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border: 2px solid rgba(0, 0, 0, 0.1);
  transform: rotate(-0.3deg);
  overflow: visible;
}

.dossier-tab {
  position: absolute;
  top: -20px;
  left: 50px;
  background-color: #d4c5a9;
  padding: 0.6rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 900;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid rgba(0, 0, 0, 0.2);
  box-shadow: 
    0 4px 8px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  z-index: 2;
  clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 100%, 15px 100%);
}

.dossier-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.dossier-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.dossier-header {
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid #000000;
}

/* Subject Section */
.subject-photo-container {
  position: relative;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

.subject-photo {
  width: 100%;
  height: auto;
  display: block;
  border: 4px solid #000000;
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.4),
    inset 0 0 0 2px #ffffff;
  background-color: #ffffff;
  padding: 8px;
  object-fit: cover;
  aspect-ratio: 3/4;
}

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

.subject-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: #000000;
  margin: 0 0 0.75rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid;
  margin-bottom: 1rem;
  box-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.3),
    inset 0 -2px 4px rgba(0, 0, 0, 0.2);
}

.status-active {
  background-color: #10B981;
  color: #FFFFFF;
  border-color: #000000;
}

.subject-description {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #1a1a1a;
  margin: 0;
  text-align: left;
}

/* Precedent Section */
.precedent-chart-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.precedent-chart {
  width: 100%;
  height: auto;
  display: block;
  border: 2px solid #000000;
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px #ffffff;
  background-color: #ffffff;
  padding: 12px;
  object-fit: contain;
}

.precedent-info {
  text-align: left;
}

.exhibit-label {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #000000;
}

.precedent-stats {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  color: #DC2626;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.precedent-description {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #1a1a1a;
  margin: 0;
}

/* Paper Clip Effect */
.paper-clip {
  position: absolute;
  width: 30px;
  height: 40px;
  border: 3px solid #666666;
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  background: linear-gradient(135deg, #c0c0c0 0%, #808080 100%);
  box-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.4),
    inset 0 -2px 2px rgba(0, 0, 0, 0.3),
    inset 0 2px 2px rgba(255, 255, 255, 0.5);
  z-index: 5;
}

.paper-clip-top {
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
}

/* Confidential Stamp */
.confidential-stamp {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%) rotate(-45deg);
  font-family: 'Inter', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(220, 38, 38, 0.15);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

/* Responsive Design */
@media (max-width: 968px) {
  .dossier-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .dossier-section {
    padding: 2.5rem 2rem 2rem;
    margin: 3rem auto;
  }

  .dossier-header {
    font-size: 1.5rem;
  }

  .confidential-stamp {
    font-size: 3rem;
    right: 2%;
  }
}

@media (max-width: 640px) {
  .dossier-section {
    padding: 2rem 1.5rem 1.5rem;
    margin: 2rem auto;
  }

  .dossier-tab {
    left: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }

  .dossier-header {
    font-size: 1.3rem;
  }

  .subject-name {
    font-size: 1.2rem;
  }

  .confidential-stamp {
    font-size: 2.5rem;
  }

  .subject-photo-container {
    max-width: 220px;
  }
}

/* ===== TWEET TIMELINE SECTION ===== */
.tweet-timeline {
  width: 100%;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 3rem 2rem;
  position: relative;
  background-color: #D66F49;
  background-image: url("https://www.transparenttextures.com/patterns/brick-wall.png");
  background-size: 300px auto;
  background-blend-mode: multiply;
  box-shadow: inset 0 0 150px rgba(0,0,0,0.5);
}

.timeline-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  text-align: center;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 4rem;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
  position: relative;
  z-index: 10;
}

.timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Central Timeline String */
.timeline-string {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    #DC2626 0px,
    #DC2626 8px,
    transparent 8px,
    transparent 16px
  );
  transform: translateX(-50%);
  z-index: 1;
  box-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

/* Timeline Evidence Items */
.timeline-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4rem;
  gap: 2rem;
  z-index: 5;
}

/* Polaroid Photo - Left Side */
.evidence-polaroid {
  position: relative;
  background-color: #FFFFFF;
  padding: 10px 10px 40px 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transform: rotate(-2deg);
  width: 280px;
  max-width: 280px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.evidence-polaroid:hover {
  transform: rotate(-1deg) scale(1.05);
  z-index: 10;
}

.polaroid-img {
  width: 100%;
  height: auto;
  display: block;
  background-color: #F9FAFB;
}

/* 3D Red Pin on Polaroid (connects to timeline) */
.evidence-pin {
  position: absolute;
  width: 16px;
  height: 16px;
  background: radial-gradient(circle at 30% 30%, #ff4444 0%, #cc0000 50%, #990000 100%);
  border-radius: 50%;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.6),
    inset -2px -2px 4px rgba(0, 0, 0, 0.4),
    inset 2px 2px 4px rgba(255, 255, 255, 0.2);
  z-index: 20;
}

/* Index Card / Note - Right Side */
.evidence-note {
  position: relative;
  background-color: #fdf5e6;
  background-image: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 23px,
      rgba(139, 69, 19, 0.08) 23px,
      rgba(139, 69, 19, 0.08) 24px
    );
  padding: 1.5rem 1.8rem;
  width: 100%;
  max-width: 400px;
  box-shadow: 
    inset 0 0 50px rgba(139, 69, 19, 0.15),
    0 10px 20px rgba(0, 0, 0, 0.3),
    5px 10px 25px rgba(0, 0, 0, 0.4);
  transform: rotate(1deg);
  border: none;
  border-radius: 3px 245px 2px 30px / 245px 3px 230px 2px;
  transition: transform 0.3s ease;
}

.evidence-note:hover {
  transform: rotate(0deg) scale(1.02);
  z-index: 10;
}

.note-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: #DC2626;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(220, 38, 38, 0.3);
  padding-bottom: 0.5rem;
}

.note-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9rem;
  line-height: 1.8;
  color: #3b2f2f;
  margin: 0;
  text-align: left;
}

/* ===== TWEETS EXPLAINED SECTION ===== */
.tweets-explained {
  width: 100%;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 3rem 2rem;
  padding-top: 50px;
  position: relative;
  background-color: #fffdf2;
  background-image: 
    /* Vertical Red Margin Line */
    linear-gradient(90deg, transparent 79px, #ffb3b3 79px, #ffb3b3 81px, transparent 81px),
    /* Horizontal Blue Lines */
    linear-gradient(#e1e8ed 1px, transparent 1px);
  background-size: 100% 100%, 100% 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.explained-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  text-align: center;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 4rem;
  text-shadow: none;
  position: relative;
  z-index: 10;
}

.explained-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Case Overview Card (Timeline Point 0) */
.case-overview-card {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto 4rem auto;
  background-color: #fdf5e6;
  background-image: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 23px,
      rgba(139, 69, 19, 0.05) 23px,
      rgba(139, 69, 19, 0.05) 24px
    );
  padding: 2.5rem 3rem;
  box-shadow: 
    inset 0 0 50px rgba(139, 69, 19, 0.15),
    0 10px 20px rgba(0, 0, 0, 0.3),
    8px 15px 35px rgba(0, 0, 0, 0.4);
  border: none;
  border-radius: 2px 255px 3px 25px / 255px 5px 225px 3px;
  transform: rotate(-0.5deg);
  z-index: 5;
  transition: transform 0.3s ease;
}

.case-overview-card:hover {
  transform: rotate(0deg) scale(1.01);
  z-index: 10;
}

.case-stamp {
  position: absolute;
  top: 15px;
  right: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 900;
  color: #DC2626;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0.3rem 0.8rem;
  border: 2px solid #DC2626;
  border-radius: 2px;
  background-color: rgba(220, 38, 38, 0.1);
  transform: rotate(5deg);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.case-headline {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #DC2626;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
  border-bottom: 3px solid rgba(220, 38, 38, 0.3);
  padding-bottom: 0.8rem;
}

.case-content {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9rem;
  line-height: 1.9;
  color: #3b2f2f;
  text-align: left;
}

.case-content p {
  margin: 1rem 0;
}

.case-content strong {
  font-weight: 700;
  color: #2c2c2c;
}

/* SVG Web Strings Container */
.timeline-strings {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

/* Evidence Cards */
.explained-card {
  position: relative;
  width: 45%;
  max-width: 480px;
  margin-bottom: 4rem;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.explained-card.card-left {
  margin-left: 0;
  margin-right: auto;
}

.explained-card.card-right {
  margin-left: auto;
  margin-right: 0;
}

/* 3D Red Pins on Photos and Notes */
.evidence-pin-top {
  position: absolute;
  width: 16px;
  height: 16px;
  background: radial-gradient(circle at 30% 30%, #ff4444 0%, #cc0000 50%, #990000 100%);
  border-radius: 50%;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.6),
    inset -2px -2px 4px rgba(0, 0, 0, 0.4),
    inset 2px 2px 4px rgba(255, 255, 255, 0.2);
  z-index: 20;
}

.explained-photo {
  position: relative;
}

.explained-content {
  position: relative;
}

/* Evidence Photo */
.explained-photo {
  background-color: #FFFFFF;
  padding: 8px 8px 35px 8px;
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.3);
  transform: rotate(-2.5deg);
  transition: transform 0.3s ease;
}

.explained-card.card-right .explained-photo {
  transform: rotate(2.8deg);
}

.explained-photo:hover {
  transform: rotate(0deg) scale(1.03);
  z-index: 10;
}

.evidence-photo-img {
  width: 100%;
  height: auto;
  display: block;
  background-color: #F9FAFB;
}

/* Video styling for evidence photos */
.explained-photo video.evidence-photo-img {
  object-fit: contain;
  max-height: 300px;
}

/* Investigation Note Content */
.explained-content {
  background-color: #fdf5e6;
  background-image: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 23px,
      rgba(139, 69, 19, 0.08) 23px,
      rgba(139, 69, 19, 0.08) 24px
    );
  padding: 1.8rem 2rem;
  box-shadow: 
    inset 0 0 50px rgba(139, 69, 19, 0.15),
    0 10px 20px rgba(0, 0, 0, 0.3),
    5px 10px 25px rgba(0, 0, 0, 0.4);
  transform: rotate(1.2deg);
  border: none;
  border-radius: 2px 255px 3px 25px / 255px 5px 225px 3px;
  transition: transform 0.3s ease;
}

.explained-card.card-right .explained-content {
  transform: rotate(-1.8deg);
}

.explained-content:hover {
  transform: rotate(0deg) scale(1.01);
  z-index: 10;
}

.explained-headline {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: #DC2626;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  border-bottom: 2px solid rgba(220, 38, 38, 0.3);
  padding-bottom: 0.5rem;
}

.explained-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  line-height: 1.8;
  color: #3b2f2f;
  margin: 0;
  text-align: left;
}

/* Full Intelligence Report Styling */
.full-report-card {
  width: 100% !important;
  max-width: 700px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.explained-content.full-report {
  padding: 2.5rem 3rem;
  min-height: auto;
  max-width: 100%;
}

.report-body {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9rem;
  line-height: 2;
  color: #3b2f2f;
  margin-top: 1rem;
}

.report-body p {
  margin: 1.2rem 0;
}

.report-body strong {
  font-weight: 700;
  color: #2c2c2c;
}

.report-body em {
  font-style: italic;
  color: #4a4a4a;
}

.report-divider {
  border: none;
  border-top: 2px solid rgba(220, 38, 38, 0.3);
  margin: 2rem 0;
  width: 100%;
}

.highlight-box {
  background-color: rgba(220, 38, 38, 0.1);
  border-left: 4px solid #DC2626;
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 2px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.final-statement {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: #DC2626;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: rgba(220, 38, 38, 0.05);
  border: 2px solid rgba(220, 38, 38, 0.3);
  border-radius: 4px;
}

/* THE LAST CHANCE Section */
.last-chance-section {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 4rem auto 0;
  z-index: 5;
}

.confidential-envelope {
  position: relative;
  background: linear-gradient(
    to bottom,
    #f5f5f0 0%,
    #e8e8e0 50%,
    #dcdcd0 100%
  );
  background-image: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 23px,
      rgba(0, 0, 0, 0.05) 23px,
      rgba(0, 0, 0, 0.05) 24px
    );
  padding: 2.5rem 3rem;
  box-shadow: 
    8px 15px 35px rgba(0, 0, 0, 0.7),
    0 4px 8px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  transform: rotate(1deg);
  transition: transform 0.3s ease;
  border-top: 8px solid #DC2626;
}

.confidential-envelope:hover {
  transform: rotate(0deg) scale(1.02);
  z-index: 10;
}

.envelope-stamp {
  position: absolute;
  top: -15px;
  right: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  font-weight: 900;
  color: #DC2626;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0.4rem 1rem;
  border: 3px solid #DC2626;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.95);
  transform: rotate(-8deg);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  z-index: 20;
}

.last-chance-headline {
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: #DC2626;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
  border-bottom: 3px solid rgba(220, 38, 38, 0.3);
  padding-bottom: 0.8rem;
  text-align: center;
}

.contract-address-box {
  background-color: #FFFFFF;
  border: 2px solid #DC2626;
  padding: 1.5rem;
  border-radius: 4px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ca-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  color: #DC2626;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}

.ca-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9rem;
  font-weight: 600;
  word-break: break-all;
  margin-bottom: 1rem;
  color: #000000;
  user-select: all;
  line-height: 1.6;
  padding: 0.8rem;
  background-color: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 2px;
}

.copy-btn-decoded {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background-color: #DC2626;
  color: #FFFFFF;
  border: 2px solid #DC2626;
  padding: 0.6rem 1.2rem;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.copy-btn-decoded:hover {
  background-color: #FFFFFF;
  color: #DC2626;
}

.copy-btn-decoded:active {
  transform: scale(0.95);
}

.copy-btn-decoded svg {
  width: 14px;
  height: 14px;
}

/* Red Circle Marker for Clues */
.circled-clue {
  position: relative;
  display: inline-block;
  padding: 0 2px;
  border: 2px solid #DC2626;
  border-radius: 50% 40% 50% 40%;
  transform: rotate(-2deg);
  background-color: rgba(220, 38, 38, 0.1);
  box-shadow: 0 0 3px rgba(220, 38, 38, 0.3);
}

/* Magnifying Glass Decorative Element */
.magnifying-glass {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 60px;
  height: 60px;
  z-index: 25;
  pointer-events: none;
}

.magnifying-glass::before {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border: 4px solid #DC2626;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 0 0 2px rgba(255, 255, 255, 0.5),
    inset 0 0 10px rgba(0, 0, 0, 0.2);
  transform: rotate(-15deg);
}

.magnifying-glass::after {
  content: '';
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 20px;
  height: 4px;
  background: #DC2626;
  border-radius: 2px;
  transform: rotate(45deg);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* ===== DISCLAIMER FOOTER ===== */
.disclaimer-footer {
  width: 100%;
  max-width: 980px;
  margin: 2rem auto 0;
  padding: 1rem 2rem;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: #666666;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background-color: #000000;
  border: none;
  box-shadow: none;
}

/* ===== TELEGRAM FLOAT BUTTON ===== */
/* Social Buttons Stack Container */
.social-stack {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1000;
}

/* X (Twitter) Button */
.x-float {
  width: 56px;
  height: 56px;
  background-color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  border: 2px solid #FFFFFF;
  text-decoration: none;
}

.x-float:hover {
  background-color: #1a1a1a;
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
}

.x-float svg {
  width: 28px;
  height: 28px;
  color: #FFFFFF;
}

/* Telegram Button */
.telegram-float {
  width: 56px;
  height: 56px;
  background-color: #0088CC;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 136, 204, 0.5);
  transition: all 0.3s ease;
  border: 3px solid #FFFFFF;
  text-decoration: none;
}

.telegram-float:hover {
  background-color: #006699;
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 136, 204, 0.7);
}

.telegram-float svg {
  width: 28px;
  height: 28px;
  color: #FFFFFF;
}

/* ===== UTILITY CLASSES ===== */
.copied {
  background-color: #10B981 !important;
  color: #FFFFFF !important;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
  .corkboard {
    border-width: 15px;
    padding: 2rem;
    min-height: 800px;
    margin: 40px auto;
  }

  .board-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    padding: 0.8rem 2rem;
    margin-bottom: 20px;
    transform: rotate(-1deg);
    max-width: 85%;
  }

  .contract-note {
    width: 220px;
    max-width: 220px;
    top: 25px;
    right: 25px;
    left: auto;
    padding: 1.3rem 1rem 0.7rem 1rem;
  }

  .contract-note::before {
    top: -18px !important;
  }

  .date-photo {
    width: 150px;
    max-width: 150px;
    top: 35px;
    left: 35%;
  }

  .cipher-note {
    width: 160px;
    max-width: 160px;
    top: 40px;
    right: 30px;
  }

  .card-subject,
  .card-target {
    width: 150px;
    max-width: 150px;
  }

  .card-logo {
    width: 180px;
    max-width: 180px;
  }

  .sticky-note {
    width: 150px;
    max-width: 150px;
  }

  .card-feed {
    width: 210px;
    max-width: 210px;
  }
}

@media (max-width: 968px) {
  .tweet-timeline {
    padding: 2rem 1.5rem;
    margin: 3rem auto;
  }

  .timeline-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 3rem;
  }

  .timeline-container {
    padding: 0 1rem;
  }

  .timeline-item {
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .evidence-polaroid {
    width: 240px;
    max-width: 240px;
  }

  .evidence-note {
    max-width: 350px;
    padding: 1.2rem 1.5rem;
  }

  .note-text {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  body {
    padding: 0;
  }

  .page-container {
    padding: 1rem 0.5rem;
  }

  .tweet-timeline {
    padding: 2rem 1rem;
    margin: 2rem auto;
  }

  .timeline-title {
    font-size: clamp(1.3rem, 5vw, 2rem);
    margin-bottom: 2rem;
  }

  .timeline-container {
    padding: 0;
  }

  /* Stack polaroid and note vertically on mobile */
  .timeline-item {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  /* Hide timeline string on mobile or make it less prominent */
  .timeline-string {
    display: none;
  }

  /* Center pin on mobile (top of polaroid) */
  .evidence-pin {
    left: 50% !important;
    right: auto !important;
    top: -8px;
    transform: translateX(-50%);
  }

  .evidence-polaroid {
    width: 100%;
    max-width: 280px;
    transform: rotate(-1deg);
  }

  .evidence-note {
    width: 100%;
    max-width: 100%;
    transform: rotate(0.5deg);
    padding: 1.2rem 1.5rem;
  }

  .note-text {
    font-size: 0.8rem;
  }

  .board-wrapper {
    width: 92vw;
  }

  .corkboard {
    border-width: 12px;
    padding: 1.5rem;
    min-height: 700px;
  }

  .corkboard {
    margin: 30px auto;
  }

  .board-title {
    font-size: clamp(1.2rem, 3vw, 2rem);
    padding: 0.7rem 1.5rem;
    margin-bottom: 15px;
    transform: rotate(-1deg);
    max-width: 90%;
  }

  .contract-note {
    width: 160px;
    max-width: 180px;
    padding: 1.2rem 0.7rem 0.7rem 0.7rem;
    top: 20px;
    right: 20px;
    left: auto;
  }

  .contract-note::before {
    top: -16px !important;
  }

  .date-calendar {
    min-height: 90px;
    padding: 1rem 0.8rem;
  }

  .calendar-year {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
  }

  .date-photo {
    width: 120px;
    max-width: 120px;
    top: 30px;
    left: 30%;
  }

  .cipher-note {
    width: 140px;
    max-width: 140px;
    top: 35px;
    right: 20px;
    padding: 1rem 0.8rem;
  }

  .card-subject {
    width: 120px;
    max-width: 120px;
  }

  .card-logo {
    width: 140px;
    max-width: 140px;
  }

  .card-target {
    width: 120px;
    max-width: 120px;
  }

  .card-thesis {
    width: 140px;
    max-width: 140px;
    padding: 0.7rem;
  }

  .card-insider {
    width: 140px;
    max-width: 140px;
    padding: 0.7rem;
  }

  .card-targetnote {
    width: 140px;
    max-width: 140px;
    padding: 0.7rem;
  }

  .card-feed {
    width: 180px;
    max-width: 180px;
    padding: 0.7rem;
  }

  .chart-box {
    min-height: 150px;
  }

  .evidence-strings {
    display: none;
  }

  .social-stack {
    bottom: 1rem;
    right: 1rem;
    gap: 0.75rem;
  }

  .x-float,
  .telegram-float {
    width: 48px;
    height: 48px;
  }

  .x-float svg,
  .telegram-float svg {
    width: 24px;
    height: 24px;
  }

  .disclaimer-footer {
    padding: 0.8rem 1rem;
    font-size: 0.6rem;
  }

  .conviction-zone {
    margin: 3rem auto 2rem;
    padding: 0 1rem;
  }

  .conviction-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .evidence-card {
    padding: 1.5rem 1.5rem 1.5rem 2.5rem;
    font-size: 0.85rem;
  }

  .card-number {
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
    top: -12px;
    left: 0.75rem;
  }

  .evidence-card {
    padding: 1.8rem 1.5rem 1.5rem 2.5rem;
  }

  .card-title {
    font-size: 1.1rem;
  }

  /* Tweets Explained Section - Mobile */
  .tweets-explained {
    padding: 2rem 1rem;
    margin: 2rem auto;
  }

  .explained-title {
    font-size: clamp(1.3rem, 5vw, 2rem);
    margin-bottom: 2rem;
  }

  .explained-container {
    padding: 0;
  }

  /* Case Overview Card - Mobile */
  .case-overview-card {
    max-width: 100%;
    padding: 2rem 1.5rem;
    margin-bottom: 3rem;
  }

  .case-headline {
    font-size: 1.3rem;
  }

  .case-content {
    font-size: 0.8rem;
  }

  /* Full Report Card - Mobile */
  .full-report-card {
    max-width: 100% !important;
  }

  .explained-content.full-report {
    padding: 2rem 1.5rem;
  }

  .report-body {
    font-size: 0.8rem;
    line-height: 1.8;
  }

  .final-statement {
    font-size: 0.95rem;
    padding: 1.2rem;
  }

  /* THE LAST CHANCE Section - Mobile */
  .last-chance-section {
    max-width: 100%;
    margin: 3rem auto 0;
  }

  .confidential-envelope {
    padding: 2rem 1.5rem;
  }

  .last-chance-headline {
    font-size: 1.4rem;
  }

  .ca-value {
    font-size: 0.8rem;
  }

  /* Stack cards vertically on mobile */
  .explained-card {
    width: 100% !important;
    max-width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 3rem;
  }

  /* Hide timeline strings on mobile */
  .timeline-strings {
    display: none;
  }

  /* Center pin on mobile */
  .evidence-pin-top {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%);
    top: -8px;
  }

  .explained-headline {
    font-size: 1.1rem;
  }

  .explained-text {
    font-size: 0.75rem;
  }
}
