/* === FILE: assets/style.css === */

/* --- Reset --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background: linear-gradient(120deg, #171923 0%, #191631 85%, #0e0c18 100%);
  min-height: 100%;
  color: #fff;
  font-family: 'Inter', 'Segoe UI', 'Roboto', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Header & Nav --- */
header {
  background: #16132aee;
  border-bottom: 3.5px solid #ff4470;
  box-shadow: 0 6px 36px 0 #90002317;
  padding: 32px 0 14px 0;
  text-align: center;
  position: relative;
  z-index: 12;
}
header h1 {
  font-size: 2.45rem;
  font-weight: 700;
  letter-spacing: -1.2px;
  color: #fff;
  text-shadow: 0 2px 32px #ff447077;
  margin-bottom: 13px;
}
header nav {
  margin: 0 auto 10px auto;
  font-size: 1.12rem;
  display: inline-block;
  background: #25192f80;
  border-radius: 12px;
  box-shadow: 0 2px 12px #44003111;
  padding: 8px 22px 7px 22px;
}
header nav a {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 7px;
  background: transparent;
  color: #ffd5ec;
  font-weight: 500;
  margin: 0 3px;
  transition: background .18s, color .18s;
}
header nav a:hover {
  background: #ff4470e0;
  color: #fff;
}
.age-gate {
  font-size: .97rem;
  color: #ffb3c6;
  margin-top: 6px;
  letter-spacing: 0.04em;
}

/* --- Main Content --- */
main {
  max-width: 980px;
  margin: 42px auto 36px auto;
  background: rgba(27,24,32,0.97);
  border-radius: 16px;
  padding: 42px 24px 38px 24px;
  box-shadow: 0 6px 50px 0 #ff447033, 0 2.5px 1px #230006cc;
}
.hero-banner {
  width: 100%;
  max-width: 780px;
  display: block;
  margin: 34px auto 30px auto;
  border-radius: 22px;
  box-shadow: 0 10px 56px #ff447033, 0 2px 12px #ff447040;
  border: 4px solid #ff3851;
  object-fit: cover;
  aspect-ratio: 21/9;
}
.hero-title {
  font-size: 2.4rem;
  color: #ff3851;
  margin: 0.2em 0 0.18em 0;
  font-weight: 700;
  text-shadow: 0 2px 32px #ff005560;
  letter-spacing: 1.4px;
  text-align: center;
}
.hero-sub {
  font-size: 1.16rem;
  color: #fff;
  margin-bottom: 28px;
  text-align: center;
}

/* --- Articles Grid --- */
.articles-list, .articles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(295px, 1fr));
  gap: 2.1rem 1.2rem;
  margin: 0;
  padding: 0;
}
.card, article {
  background: #21192aee;
  border-radius: 15px;
  box-shadow: 0 2px 32px #ff447040, 0 0 1px 0 #111;
  overflow: hidden;
  border: 1.5px solid #3a1a21;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .16s;
  position: relative;
}
.card:hover, article:hover {
  box-shadow: 0 9px 42px #ff0079bb, 0 0 1px 0 #111;
  transform: translateY(-6px) scale(1.032);
  z-index: 3;
}
.card img, article img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  border-radius: 0 0 14px 14px;
  margin-bottom: 0;
  box-shadow: 0 4px 16px #ff447022;
}
.card h3, article h3 {
  color: #fa4578;
  font-size: 1.19em;
  margin: 19px 0 8px 0;
  padding: 0 10px;
  font-weight: 600;
}
.meta {
  font-size: .97em;
  color: #ffd4fc;
  margin: 0 0 8px 0;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  opacity: 0.92;
  padding: 0 10px;
}
.card p, article p {
  color: #f7f7fc;
  font-size: 1.03em;
  margin: 0 0 18px 0;
  padding: 0 10px;
}
.read-more {
  color: #ffd166;
  text-decoration: underline;
  font-size: .99em;
  padding-left: 7px;
}
.read-more:hover { color: #ff4470; }

/* --- Category Banner --- */
.cat-banner {
  max-width: 450px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 26px auto;
  border-radius: 14px;
  box-shadow: 0 4px 24px #0002;
}

/* --- Forms & Inputs --- */
input, textarea {
  background: #201627;
  color: #ffdbe6;
  border: 1.5px solid #ff4470cc;
  border-radius: 8px;
  font-size: 1.04em;
  padding: 11px 13px;
  margin: 7px 0 14px 0;
  width: 100%;
  outline: none;
  box-shadow: 0 1px 7px #ff447025;
  transition: border .15s, box-shadow .16s;
}
input:focus, textarea:focus {
  border: 2px solid #ffd166;
  background: #23203a;
}
.contact-form label {
  color: #ffdbe6;
  font-weight: 600;
  font-size: 1.04em;
  margin-top: 12px;
  display: block;
}

/* --- Buttons, CTA --- */
button, .cta, .fake-ad-btn {
  background: linear-gradient(90deg, #ff4470 0%, #ffb800 100%);
  color: #222;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 1.07rem;
  margin: 16px 0 0 0;
  box-shadow: 0 2px 8px #18182833;
  cursor: pointer;
  transition: background .16s, color .16s, transform .12s;
  outline: none;
}
button:hover, .cta:hover, .fake-ad-btn:hover {
  background: linear-gradient(90deg, #ffb800 0%, #ff4470 100%);
  color: #fff;
  transform: scale(1.055);
}

/* --- Fake Ad/CPA Styles --- */
[id*="qr"], [class*="qr"], .popup, .ad, .adsbyvli, .sb {
  display: inline-block !important;
  background: #2c2330;
  border: 1.7px solid #ff4470;
  border-radius: 9px;
  padding: 10px 14px;
  margin: 10px auto 8px auto;
  min-width: 130px;
  min-height: 34px;
  font-size: 1em;
  color: #ffb800;
  box-shadow: 0 1px 8px #ff447045;
  cursor: pointer;
  transition: background .16s, border .16s, color .16s;
  position: relative;
  z-index: 4;
}
[id*="qr"]:hover, [class*="qr"]:hover, .popup:hover, .ad:hover, .adsbyvli:hover, .sb:hover {
  background: #ff4470;
  color: #fff;
  border-color: #ffd166;
  box-shadow: 0 6px 32px #ff447066;
}

/* --- Footer --- */
footer {
  background: #191828;
  color: #f7b8e7;
  font-size: .99rem;
  padding: 38px 0 15px 0;
  text-align: center;
  border-top: 2.5px solid #ff4470;
  margin-top: 50px;
  letter-spacing: .07em;
}
footer a {
  color: #ffd166;
  margin: 0 6px;
  text-decoration: underline dotted;
  transition: color .14s;
}
footer a:hover { color: #ff4470; }

/* --- Responsive & Mobile --- */
@media (max-width: 850px) {
  main { padding: 15px 1vw 18px 1vw; max-width: 100vw; }
  .hero-banner { max-width: 98vw; }
  .articles-list, .articles { grid-template-columns: 1fr; gap: 20px; }
  header { padding: 14vw 0 5vw 0; }
  .cat-banner { max-width: 98vw; }
}
@media (max-width: 600px) {
  header h1 { font-size: 1.23em; }
  .hero-title { font-size: 1.18em;}
  main { border-radius: 7vw; }
}
::-webkit-scrollbar { width: 8px; background: #25192f; }
::-webkit-scrollbar-thumb { background: #ff4470; border-radius: 8px; }
