/*
Theme Name: 80s Vids
Theme URI: https://example.com
Author: Claude
Author URI: https://example.com
Description: A neon synthwave WordPress theme for an 80s music video and TV clip site — chrome-and-neon wordmark logo, hot pink, electric cyan, and deep purple on black. Three-column layout with widgetized sidebars and a grid-based "Latest Videos" homepage.
Version: 1.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: 80s-vids
Tags: blog, grid-layout, two-columns, three-columns, custom-menu, featured-images, widgets, pink, purple, black
*/

/* ---------- Reset & base ---------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: #0d0518;
  background-image: linear-gradient(180deg, #0d0518 0%, #140a24 100%);
  color: #e9e4f5;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #ff2e97; text-decoration: none; transition: color .15s ease; }
a:hover { color: #00e5ff; }
h1, h2, h3, h4 { font-family: Georgia, 'Times New Roman', serif; color: #fff; margin: 0 0 .5em; line-height: 1.2; }
ul { list-style: none; margin: 0; padding: 0; }
hr { border: none; border-top: 1px solid #2c1b45; margin: 1.5em 0; }
::selection { background: #ff2e97; color: #0d0518; }

/* ---------- Layout ---------- */
.site-wrap {
  max-width: 1536px;
  margin: 0 auto;
  padding: 32px 24px;
  display: grid;
  grid-template-columns: 230px 1fr 230px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 1100px) {
  .site-wrap { grid-template-columns: 1fr; }
  .sidebar { order: 3; }
}

/* ---------- Header ---------- */
.site-header { grid-column: 1 / -1; text-align: center; margin-bottom: 8px; }
.site-branding { margin: 10px auto 18px; }
.site-title {
  font-family: 'Courier New', Courier, monospace;
  font-weight: 900;
  font-size: 74px;
  letter-spacing: 1px;
  margin: 0;
  line-height: 1;
}
.site-title a { display: inline-block; }
.logo-80s {
  background: linear-gradient(180deg, #cfe9ff 0%, #7fb8e6 25%, #ffffff 48%, #a06be0 62%, #7b2ff7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 30px rgba(123,47,247,.35);
}
.logo-vids {
  color: #ff2e97;
  text-shadow: 0 0 18px rgba(255,46,151,.75), 0 0 36px rgba(255,46,151,.4);
}
.site-description {
  display: block;
  font-family: 'Courier New', Courier, monospace;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 3px;
  color: #00e5ff;
  text-shadow: 0 0 12px rgba(0,229,255,.6);
  margin-top: 6px;
}
.header-rule {
  height: 8px;
  margin-bottom: 22px;
  background:
    linear-gradient(90deg, transparent, #00e5ff 12%, #ff2e97 50%, #00e5ff 88%, transparent) top / 100% 2px no-repeat,
    linear-gradient(90deg, transparent, #ff2e97 12%, #7b2ff7 50%, #ff2e97 88%, transparent) bottom / 100% 2px no-repeat;
  box-shadow: 0 0 10px rgba(255,46,151,.4);
}

/* ---------- Nav ---------- */
.main-nav {
  border-top: 1px solid #2c1b45;
  border-bottom: 1px solid #2c1b45;
  padding: 14px 0;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
}
.main-nav ul { display: flex; align-items: center; gap: 34px; flex-wrap: wrap; justify-content: center; }
.main-nav li { position: relative; }
.main-nav a {
  color: #e9e4f5;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.main-nav a:hover, .main-nav .current-menu-item > a { color: #00e5ff; }
.main-nav .menu-item-has-children > a::after { content: '\2304'; margin-left: 5px; font-size: 11px; display: inline-block; }
.main-nav .search-toggle { color: #e9e4f5; margin-left: 10px; }
.main-nav ul ul {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background: #170c2a;
  border: 1px solid #2c1b45;
  min-width: 190px;
  padding: 8px 0;
  z-index: 20;
}
.main-nav li:hover > ul { display: block; }
.main-nav ul ul li { display: block; }
.main-nav ul ul a { display: block; padding: 8px 16px; }

/* ---------- Section heading ---------- */
.section-heading {
  font-family: 'Courier New', Courier, monospace;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 1.5px;
  color: #fff;
  border-bottom: 2px solid #ff2e97;
  padding-bottom: 10px;
  margin: 8px 0 24px;
  text-transform: uppercase;
}

/* ---------- Content grid (Latest Reviews) ---------- */
.content-main { min-width: 0; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 760px) { .review-grid { grid-template-columns: 1fr; } }

.review-card { display: flex; flex-direction: column; }
.review-card .thumb { border: 1px solid #2c1b45; margin-bottom: 14px; overflow: hidden; position: relative; }
.review-card .thumb::after {
  content: ''; position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(0,229,255,0);
  transition: box-shadow .2s ease;
}
.review-card .thumb:hover::after { box-shadow: inset 0 0 0 2px #00e5ff; }
.review-card .thumb img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .3s ease; }
.review-card .thumb:hover img { transform: scale(1.04); }
.review-card h2 { font-size: 21px; margin-bottom: 8px; }
.review-card h2 a { color: #fff; }
.review-card h2 a:hover { color: #ff2e97; }
.review-meta { font-size: 13px; color: #9184b3; margin-bottom: 10px; }
.review-meta a { color: #00e5ff; font-weight: 600; }
.review-meta .sep { margin: 0 6px; color: #443463; }
.review-card .excerpt { color: #c3bcdb; font-size: 15px; margin-bottom: 10px; flex-grow: 1; }
.read-more { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: #ff2e97; }
.read-more:hover { color: #00e5ff; }

.pagination { grid-column: 1/-1; text-align: center; margin-top: 40px; }
.pagination a, .pagination span {
  display: inline-block; padding: 8px 14px; margin: 0 3px;
  border: 1px solid #2c1b45; color: #e9e4f5; font-size: 13px;
}
.pagination .current { background: #ff2e97; border-color: #ff2e97; color: #fff; }
.pagination a:hover { border-color: #00e5ff; color: #00e5ff; }

/* ---------- Single post ---------- */
.single-review .thumb { border: 1px solid #2c1b45; margin-bottom: 22px; }
.single-review h1 { font-size: 34px; margin-bottom: 10px; }
.single-review .entry-content { color: #d8d3ea; font-size: 17px; }
.single-review .entry-content p { margin: 0 0 1.2em; }
.rating-badge {
  display: inline-block; background: #170c2a; border: 1px solid #ff2e97;
  color: #ff2e97; font-weight: 700; padding: 6px 14px; font-size: 13px;
  letter-spacing: .5px; margin-bottom: 18px;
}

/* ---------- Comments ---------- */
.comments-area { margin-top: 46px; border-top: 1px solid #2c1b45; padding-top: 30px; }
.comment-list { margin-bottom: 30px; }
.comment-list li { padding: 16px 0; border-bottom: 1px solid #221338; }
.comment-author { color: #fff; font-weight: 700; font-size: 14px; }
.comment-meta { color: #8778a5; font-size: 12px; margin-bottom: 6px; }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%; background: #170c2a; border: 1px solid #2c1b45; color: #e9e4f5;
  padding: 10px 12px; margin-bottom: 12px; font-family: inherit; font-size: 14px;
}
.comment-form textarea { min-height: 130px; }
.comment-form input[type="submit"] {
  background: #ff2e97; color: #fff; border: none; padding: 11px 26px;
  font-weight: 700; text-transform: uppercase; font-size: 13px; letter-spacing: .5px; cursor: pointer;
}
.comment-form input[type="submit"]:hover { background: #00e5ff; color: #0d0518; }

/* ---------- Sidebars ---------- */
.sidebar { font-size: 14px; }
.widget { margin-bottom: 34px; }
.widget-title, .sidebar h3 {
  color: #ff2e97;
  font-family: 'Courier New', Courier, monospace;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #2c1b45;
}
.sidebar p { color: #b6adcf; }

/* search widget */
.search-form { display: flex; }
.search-form input[type="search"] {
  flex: 1; background: #170c2a; border: 1px solid #2c1b45; color: #e9e4f5;
  padding: 9px 10px; font-size: 13px;
}
.search-form button {
  background: #ff2e97; border: 1px solid #ff2e97; color: #fff; padding: 0 14px; cursor: pointer;
}
.search-form button:hover { background: #00e5ff; border-color: #00e5ff; color: #0d0518; }

/* browse-by / categories list */
.sidebar-list li { border-bottom: 1px solid #221338; }
.sidebar-list li a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 2px; color: #d8d3ea; font-size: 14px;
}
.sidebar-list li a:hover { color: #00e5ff; }
.sidebar-list li a::after { content: '\203A'; color: #4d3c70; font-size: 16px; }

/* recent reviews (mini list) */
.mini-post-list li { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid #221338; }
.mini-post-list img { width: 56px; height: 56px; object-fit: cover; border: 1px solid #2c1b45; flex-shrink: 0; }
.mini-post-list .mini-title { color: #e9e4f5; font-size: 13px; font-weight: 600; line-height: 1.35; }
.mini-post-list .mini-title:hover { color: #ff2e97; }
.mini-post-list .mini-date { color: #8778a5; font-size: 11px; margin-top: 3px; }

/* top rated */
.rated-list li { padding: 10px 0; border-bottom: 1px solid #221338; }
.rated-list .stars { color: #ff2e97; letter-spacing: 1px; font-size: 13px; margin-top: 3px; }
.rated-list a { color: #e9e4f5; font-size: 13.5px; font-weight: 600; }
.rated-list a:hover { color: #00e5ff; }

/* follow / social */
.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 34px; height: 34px; border: 1px solid #2c1b45; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #e9e4f5;
}
.social-row a:hover { border-color: #00e5ff; color: #00e5ff; }

/* recent comments */
.recent-comments li { padding: 9px 0; border-bottom: 1px solid #221338; font-size: 13.5px; color: #b6adcf; }
.recent-comments a { color: #e9e4f5; font-weight: 600; }
.recent-comments a:hover { color: #ff2e97; }

/* ---------- Footer ---------- */
.site-footer {
  grid-column: 1 / -1;
  border-top: 1px solid #2c1b45;
  margin-top: 40px;
  padding-top: 24px;
  text-align: center;
  color: #6d5d92;
  font-size: 13px;
}
.site-footer a { color: #9184b3; }
.site-footer a:hover { color: #ff2e97; }

/* ---------- Misc ---------- */
.no-results { padding: 40px 0; color: #b6adcf; }
.screen-reader-text { position: absolute; left: -9999px; }
.alignwide { max-width: 100%; }
