/* Meymenetsiz ama Unutulmaz™
   Bilinçli olarak çirkin tasarım: görsel rahatsızlık + işlevsellik.
*/

:root{
  --bg: #d8cf7a;          /* kirli sarı */
  --bg2:#c4d6a1;          /* rahatsız yeşil */
  --ink:#111;
  --accent:#6b2cff;       /* sebepsiz mor */
  --danger:#ff0033;
  --card:#f7f2c0;
  --shadow: 3px 3px 0 rgba(0,0,0,.35);
  --border: 2px dashed rgba(0,0,0,.75);
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.06) 1px, transparent 1px) 0 0/19px 19px,
    repeating-linear-gradient(45deg, rgba(255,255,255,.12) 0, rgba(255,255,255,.12) 6px, transparent 6px, transparent 12px),
    var(--bg);
  color:var(--ink);
  /* bilinçli font karmaşası */
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0.15px;
  overflow-x:hidden;
}

/* üstte eski internet hissi */
.topbar{
  background: #efefef;
  border-bottom: 4px solid #000;
  box-shadow: var(--shadow);
  position: sticky;
  top:0;
  z-index: 20;
}
marquee{
  font-family: "Times New Roman", Times, serif;
  font-size: 14px;
  padding: 6px 0;
}

/* masthead */
.masthead{
  display:flex;
  gap: 12px;
  align-items:center;
  padding: 18px 14px 10px;
}
.logo{
  width: 56px;
  height: 56px;
  border-radius: 7px;
  background: radial-gradient(circle at 30% 30%, #fff, #ddd 35%, #aaa 70%, #777);
  border: 3px solid #000;
  box-shadow: var(--shadow);
  font-family: "Comic Sans MS", "Comic Sans", cursive;
  font-size: 36px;
  display:flex;
  align-items:center;
  justify-content:center;
  transform: rotate(-2.2deg);
}
.titleblock h1{
  margin: 0;
  font-family: "Comic Sans MS", "Comic Sans", cursive;
  font-size: 30px;
  line-height: 1;
  text-shadow: 2px 2px 0 rgba(255,255,255,.5);
}
.tm{ color: var(--accent); font-size: 18px; vertical-align: super; }
.subtitle{
  margin: 6px 0 0;
  font-size: 13px;
}
.under{
  background: #fffd;
  padding: 0 6px;
  border: 1px solid #000;
}
.compat{
  margin: 8px 0 0;
  font-size: 12px;
  font-family: "Times New Roman", Times, serif;
}

/* nav */
.nav{
  display:flex;
  gap: 8px;
  align-items:center;
  flex-wrap: wrap;
  padding: 10px 12px;
  background: var(--bg2);
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
}
.navlink{
  padding: 7px 10px;
  color: #000;
  text-decoration: underline wavy var(--accent);
  background: #fff7;
  border: 2px solid #000;
  box-shadow: 2px 2px 0 rgba(0,0,0,.3);
  transform: rotate(0.4deg); /* bilinçli yamukluk */
}
.navlink:nth-child(2){ transform: rotate(-0.6deg); }
.navlink:nth-child(3){ transform: rotate(0.2deg); }

.panic{
  margin-left:auto;
  padding: 7px 10px;
  border: 2px solid #000;
  background: var(--danger);
  color: #fff;
  font-weight: 700;
  box-shadow: var(--shadow);
  cursor: pointer;
}

/* ad zone */
.adzone{ padding: 12px; }
.ad{
  background: #eee;
  border: 4px solid #000;
  box-shadow: var(--shadow);
  padding: 10px 12px;
  position: relative;
}
.ad-badge{
  position:absolute;
  top:-10px;
  left: 10px;
  background: #000;
  color:#fff;
  padding: 3px 6px;
  font-size: 11px;
  transform: rotate(-1.8deg);
}
.ad h2{
  margin: 6px 0 4px;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  letter-spacing: .5px;
  font-size: 20px;
}
.ad-cta{
  margin: 8px 0 6px;
  padding: 8px 10px;
  border: 2px solid #000;
  background: #c9ff3a; /* göz yorar */
  font-weight: 700;
  cursor: pointer;
}
.ad small{ display:block; font-size: 11px; }

/* grid */
.grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 12px;
}
.card{
  background: var(--card);
  border: var(--border);
  box-shadow: var(--shadow);
  padding: 12px;
  transform: translateX(1px); /* 1px kayma: bilinçli rahatsızlık */
}
.card h2{
  margin: 0 0 8px;
  font-family: "Times New Roman", Times, serif;
  font-size: 19px;
  text-decoration: underline;
}
.bullets{ margin: 8px 0 0 18px; padding:0; }
.bullets li{ margin: 4px 0; }

.stockwrap{
  margin-top: 10px;
  border: 2px solid #000;
  background: #fff;
  padding: 8px;
}
.stockimg{
  height: 120px;
  border: 1px solid #000;
  background:
    linear-gradient(135deg, #ddd 0, #ddd 35%, #bbb 35%, #bbb 70%, #999 70%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.9), transparent 45%),
    linear-gradient(0deg, rgba(0,0,0,.2), transparent 55%);
  filter: contrast(1.2) saturate(0.7);
}
.caption{
  margin: 6px 0 0;
  font-size: 11px;
  font-family: "Times New Roman", Times, serif;
}

/* form */
.form label{
  display:block;
  margin: 8px 0;
  font-size: 12px;
}
.form input, .form select{
  width: 100%;
  padding: 8px;
  border: 2px solid #000;
  background: #fff;
  font-size: 14px;
}
.row{
  display:flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.btn{
  padding: 10px 12px;
  border: 2px solid #000;
  cursor: pointer;
  box-shadow: 2px 2px 0 rgba(0,0,0,.35);
}
.primary{
  background: #fff;
  font-weight: 700;
}
.ghost{
  background: #fff7;
  transform: rotate(-0.4deg);
}
.msg{
  min-height: 24px;
  margin: 10px 0 0;
  background: #fff8;
  border: 1px solid #000;
  padding: 6px 8px;
  font-size: 12px;
}

/* counter */
.counter{
  margin-top: 12px;
  padding: 8px 10px;
  background: #fff;
  border: 2px solid #000;
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: baseline;
}
.counter strong{
  font-size: 22px;
  color: var(--accent);
  text-shadow: 1px 1px 0 rgba(0,0,0,.25);
}

/* microcopy */
.micro{
  display:grid;
  gap: 8px;
}
.microitem{
  border: 2px solid #000;
  background: #fff;
  padding: 8px 10px;
}
.tag{
  display:inline-block;
  font-size: 11px;
  padding: 2px 6px;
  border: 1px solid #000;
  background: #fffd;
  margin-bottom: 6px;
}
.text{
  font-size: 13px;
  line-height: 1.35;
}
.details{
  margin-top: 10px;
  border: 2px solid #000;
  background: #fff;
  padding: 8px 10px;
}

/* footer */
.footer{
  margin-top: 8px;
  padding: 12px;
  background: #efefef;
  border-top: 4px solid #000;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.ie{
  border: 2px solid #000;
  padding: 6px 8px;
  background: #fff;
  font-family: "Times New Roman", Times, serif;
}
.fineprint{ font-size: 11px; }
.badlink{
  color: #000;
  text-decoration: underline wavy var(--accent);
  background: #fff;
  padding: 3px 6px;
  border: 1px solid #000;
}
.dot{ padding: 0 6px; }

/* toast */
.toast{
  position: fixed;
  left: 10px;
  bottom: 10px;
  max-width: min(520px, calc(100vw - 20px));
  background: #000;
  color: #fff;
  padding: 10px 12px;
  border: 3px solid #fff;
  box-shadow: var(--shadow);
  transform: translateY(120%);
  transition: transform .25s linear;
  z-index: 50;
  font-size: 12px;
}
.toast.show{ transform: translateY(0); }

/* responsive: bozmadan */
@media (min-width: 860px){
  .grid{ grid-template-columns: 1fr 1fr; }
  #dig{ grid-column: 1 / -1; }
}
