/* =========================================================
   CornHub Classic Parody Tube - Authentic Vintage Luxury
   Exact Replication of vi.cornhub.website 
   ========================================================= */

:root {
  --bg-black: #000000;
  --bg-dark: #121212;
  --bg-input: #1a1a1a;
  --primary-orange: #ffa31a;
  --primary-orange-hover: #ffb84d;
  --text-white: #ffffff;
  --text-gray: #999999;
  --text-dim: #666666;
  --border-dark: #222222;
  --font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-black);
  color: var(--text-white);
  font-family: var(--font-family);
  font-size: 13px;
  line-height: 1.4;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--primary-orange);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #050505;
}
::-webkit-scrollbar-thumb {
  background: #2a2a2a;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-orange);
}

/* 1. TOP NETWORK BAR */
.networkbar {
  background-color: var(--bg-black);
  padding: 5px 16px;
  font-size: 11px;
  text-align: center;
  border-bottom: 1px solid #1a1a1a;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.networkbar a {
  color: #888888;
}

.networkbar a:hover {
  color: #ffffff;
}

.networkbar-divider {
  color: #333333;
}

.locale-select {
  background: transparent;
  color: #999999;
  border: 1px solid #2a2a2a;
  padding: 2px 6px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  outline: none;
}

.locale-select option {
  background-color: #111111;
  color: #ffffff;
}

/* 2. HEADER TOP */
.header {
  background-color: var(--bg-black);
  border-bottom: 1px solid #181818;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-top {
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hamburger-btn {
  display: none;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
}

/* Authentic CornHub Logo */
.logo {
  display: flex;
  align-items: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.5px;
  user-select: none;
}

.logo-corn {
  color: #ffffff;
  margin-right: 3px;
}

.logo-hub {
  background-color: var(--primary-orange);
  color: #000000;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 22px;
  font-weight: 900;
  display: inline-block;
  line-height: 1.1;
}

/* Search Form */
.search-form {
  flex: 1;
  max-width: 460px;
  position: relative;
  display: flex;
}

.search-input {
  width: 100%;
  background-color: var(--bg-input);
  color: #ffffff;
  border: 1px solid #333333;
  padding: 7px 36px 7px 12px;
  border-radius: 3px;
  font-size: 13px;
  outline: none;
}

.search-input:focus {
  border-color: var(--primary-orange);
}

.search-btn {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 36px;
  background: transparent;
  border: none;
  color: #777777;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-btn:hover {
  color: var(--primary-orange);
}

/* Header Right - Classic Login / Sign Up */
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  font-weight: 700;
}

.auth-link {
  color: #cccccc;
  cursor: pointer;
}

.auth-link:hover {
  color: var(--primary-orange);
}

/* 3. NAVIGATION BAR (TABS) */
.header-bottom {
  background-color: #0d0d0d;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
}

.nav-links {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  list-style: none;
}

.nav-item a {
  display: block;
  padding: 10px 24px;
  font-size: 12px;
  font-weight: 800;
  color: #aaaaaa;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.15s ease;
}

.nav-item.active a {
  color: var(--primary-orange);
}

.nav-item.active a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--primary-orange);
}

.nav-item a:hover {
  color: #ffffff;
}

/* 4. MAIN LAYOUT */
.site-wrapper {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px;
  min-height: calc(100vh - 180px);
}

/* 5. THE ICONIC "TIKTOK FOR POPPING" PARODY BANNER */
.classic-popping-banner {
  background: #000000;
  border: 1px solid #262626;
  padding: 12px 18px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  user-select: none;
}

.banner-left-box {
  background-color: #d32f2f;
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 2px;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 16px;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.banner-left-box span {
  display: block;
}

.banner-center-text {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 26px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.tiktok-badge-icon {
  width: 32px;
  height: 32px;
}

.text-white-bold {
  color: #ffffff;
}

.text-pink-popping {
  color: #ff1493;
  text-shadow: 0 0 10px rgba(255, 20, 147, 0.4);
}

.banner-right-badge {
  background-color: #d32f2f;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 2px;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 18px;
  font-style: italic;
  text-align: center;
  line-height: 1.15;
  text-transform: uppercase;
  white-space: nowrap;
  transform: skew(-6deg);
  transition: transform 0.15s ease;
}

.classic-popping-banner:hover .banner-right-badge {
  transform: skew(-6deg) scale(1.04);
  background-color: #b71c1c;
}

/* 6. SECTION HEADER */
.section-title {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  margin: 20px 0 14px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* 7. VIDEO GRID - AUTHENTIC 4 COLUMNS */
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 14px;
}

@media (max-width: 992px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Video Card - Clean Classic Tube, No Heavy Box */
.video-card {
  background: transparent;
  display: flex;
  flex-direction: column;
}

.thumbnail-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #111111;
  overflow: hidden;
  display: block;
}

.thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.thumbnail-wrap:hover .thumbnail-img {
  filter: brightness(1.08);
}

.video-badges {
  position: absolute;
  bottom: 4px;
  right: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 1px 1px 2px #000, -1px -1px 2px #000;
}

.badge-hd {
  font-weight: 900;
  color: #ffffff;
}

.badge-duration {
  font-weight: 700;
}

.card-details {
  padding: 6px 0 0 0;
}

.card-title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 3px;
}

.card-title:hover {
  color: var(--primary-orange);
}

.card-uploader {
  font-size: 11px;
  color: #aaaaaa;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 2px;
}

.card-uploader:hover {
  color: #ffffff;
}

.verified-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  background-color: #2596be;
  color: #ffffff;
  border-radius: 50%;
  font-size: 8px;
  font-weight: 900;
  line-height: 1;
  margin-right: 2px;
  flex-shrink: 0;
}

.staff-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  background-color: #ffa31a;
  color: #000000;
  border-radius: 50%;
  font-size: 8px;
  font-weight: 900;
  line-height: 1;
  margin-right: 2px;
  flex-shrink: 0;
}

.verified-icon {
  width: 12px;
  height: 12px;
  color: #2596be;
  fill: #2596be;
}

.card-stats {
  font-size: 11px;
  color: #777777;
  display: flex;
  align-items: center;
  gap: 6px;
}

.like-rate {
  display: flex;
  align-items: center;
  gap: 3px;
}

/* 8. FEATURED CORNSTARS */
.featured-models-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

@media (max-width: 640px) {
  .featured-models-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.model-card {
  position: relative;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 10px;
  border: 1px solid #1f1f1f;
  text-decoration: none;
}

.model-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
}

.model-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.model-card-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--primary-orange);
  object-fit: cover;
}

.model-card-name {
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 4px;
}

.model-card:hover .model-card-name {
  color: var(--primary-orange);
}

.section-divider {
  border: 0;
  border-top: 1px dashed #262626;
  margin: 28px 0 16px 0;
}

/* 9. WATCH VIDEO VIEW */
.watch-layout {
  display: grid;
  grid-template-columns: 7fr 3fr;
  gap: 20px;
}

@media (max-width: 992px) {
  .watch-layout {
    grid-template-columns: 1fr;
  }
}

.video-player-container {
  background-color: #000000;
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  border: 1px solid #222;
}

.video-element {
  width: 100%;
  height: 100%;
  display: block;
  background-color: #000;
}

.player-center-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.2s ease;
}

.player-center-play.playing {
  opacity: 0;
  pointer-events: none;
}

.play-triangle {
  width: 72px;
  height: 72px;
  background-color: var(--primary-orange);
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  padding-left: 5px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.player-center-play:hover .play-triangle {
  transform: scale(1.1);
  background-color: #ffffff;
}

.player-quality-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #0d0d0d;
  border: 1px solid #202020;
  padding: 6px 10px;
  margin-top: 6px;
}

.quality-label {
  font-size: 11px;
  color: #888888;
  font-weight: bold;
}

.quality-tag {
  background-color: #1a1a1a;
  border: 1px solid #333333;
  color: #cccccc;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  cursor: pointer;
}

.quality-tag.active,
.quality-tag:hover {
  background-color: var(--primary-orange);
  color: #000000;
  border-color: var(--primary-orange);
}

.watch-title {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  margin: 14px 0 8px 0;
}

.watch-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #1a1a1a;
  padding-bottom: 12px;
  margin-bottom: 14px;
}

.watch-stats {
  font-size: 12px;
  color: #888888;
  display: flex;
  align-items: center;
  gap: 6px;
}

.watch-actions {
  display: flex;
  gap: 8px;
}

.action-btn {
  background-color: #1a1a1a;
  border: 1px solid #333333;
  color: #cccccc;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.action-btn:hover {
  background-color: #262626;
  color: #ffffff;
}

.action-btn.active-like {
  background-color: #0f3621;
  border-color: #10b981;
  color: #10b981;
}

.action-btn.active-dislike {
  background-color: #3b1212;
  border-color: #ef4444;
  color: #ef4444;
}

.creator-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #1a1a1a;
  padding-bottom: 14px;
  margin-bottom: 20px;
}

.creator-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.creator-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.creator-name {
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.creator-subtext {
  font-size: 11px;
  color: #777777;
}

.subscribe-btn {
  background-color: var(--primary-orange);
  color: #000000;
  border: none;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 16px;
  cursor: pointer;
}

.subscribe-btn:hover {
  background-color: #ffffff;
}

/* Recommended Sidebar */
.recommended-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.recommended-title {
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.recommended-card {
  display: flex;
  gap: 10px;
}

.rec-thumbnail {
  width: 120px;
  aspect-ratio: 16 / 9;
  background-color: #111111;
  position: relative;
  flex-shrink: 0;
}

.rec-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rec-duration {
  position: absolute;
  bottom: 2px;
  right: 4px;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  text-shadow: 1px 1px 2px #000;
}

.rec-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.rec-title {
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rec-title:hover {
  color: var(--primary-orange);
}

.rec-uploader {
  font-size: 10px;
  color: #888888;
}

.rec-stats {
  font-size: 10px;
  color: #666666;
}

/* Comments */
.comments-section {
  margin-top: 20px;
}

.comments-title {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 12px;
}

.comment-input-box {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.comment-avatar {
  font-size: 24px;
}

.comment-form {
  flex: 1;
}

.comment-textarea {
  width: 100%;
  background-color: #111111;
  border: 1px solid #2a2a2a;
  color: #ffffff;
  padding: 8px 10px;
  font-family: inherit;
  font-size: 12px;
  min-height: 50px;
  outline: none;
}

.comment-textarea:focus {
  border-color: var(--primary-orange);
}

.comment-submit-btn {
  margin-top: 6px;
  background-color: var(--primary-orange);
  color: #000000;
  font-weight: 800;
  font-size: 11px;
  border: none;
  padding: 6px 14px;
  cursor: pointer;
  float: right;
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comment-item {
  display: flex;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #141414;
}

.comment-user {
  font-size: 12px;
  font-weight: 700;
  color: #cccccc;
}

.comment-time {
  font-size: 10px;
  color: #666666;
  margin-left: 6px;
}

.comment-body {
  font-size: 12px;
  color: #aaaaaa;
  margin-top: 2px;
}

/* 10. CORNSTARS DIRECTORY */
.models-grid-page {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.model-profile-card {
  background-color: #0c0c0c;
  border: 1px solid #1c1c1c;
  text-align: center;
  padding-bottom: 12px;
}

.model-profile-card:hover {
  border-color: var(--primary-orange);
}

.model-banner-img {
  width: 100%;
  height: 80px;
  object-fit: cover;
}

.model-profile-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--primary-orange);
  margin-top: -30px;
  margin-bottom: 6px;
  background-color: #000;
  object-fit: cover;
}

.model-title-name {
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.model-meta-stats {
  font-size: 11px;
  color: #777777;
  margin-top: 4px;
}

/* 11. FOOTER - AUTHENTIC CORNHUB */
.footer-wrap {
  margin-top: 60px;
  background-color: var(--bg-black);
  border-top: 1px solid #1a1a1a;
  padding: 30px 16px 0 16px;
}

.footer-disclaimer-text {
  max-width: 1100px;
  margin: 0 auto 30px auto;
  font-size: 12px;
  color: #666666;
  text-align: center;
  line-height: 1.6;
}

.footer-columns {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-bottom: 30px;
}

@media (max-width: 768px) {
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer-col h3 {
  font-size: 13px;
  font-weight: 800;
  color: #888888;
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-col a {
  font-size: 12px;
  color: var(--primary-orange);
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-bottom-bar {
  background-color: #050505;
  border-top: 1px solid #141414;
  padding: 12px 16px;
}

.footer-bottom-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: #555555;
}

/* 12. POPUPS (SHARP, RETRO TUBE, NO ROUNDED EDGES, ANTI-ADBLOCK) */

/* 18+ Warning Modal */
.kernel-warning-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.92);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.kernel-warning-dialog {
  background-color: #111111;
  border: 2px solid var(--primary-orange);
  width: 100%;
  max-width: 520px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.95);
}

.kernel-dialog-header {
  background-color: #1a1a1a;
  border-bottom: 1px solid var(--primary-orange);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.kernel-dialog-title {
  font-size: 14px;
  font-weight: 900;
  color: var(--primary-orange);
  margin: 0;
}

.kernel-dialog-close {
  background: transparent;
  border: none;
  color: #777;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

.kernel-dialog-close:hover {
  color: #fff;
}

.kernel-dialog-body {
  padding: 18px;
  color: #cccccc;
  font-size: 13px;
  line-height: 1.6;
}

.kernel-dialog-actions {
  padding: 0 18px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kernel-btn-enter {
  background-color: var(--primary-orange);
  color: #000000;
  border: none;
  font-size: 13px;
  font-weight: 900;
  padding: 12px;
  cursor: pointer;
}

.kernel-btn-enter:hover {
  background-color: #ffffff;
}

.kernel-btn-exit {
  background-color: #222222;
  color: #888888;
  border: 1px solid #333;
  font-size: 12px;
  font-weight: 700;
  padding: 8px;
  cursor: pointer;
}

.kernel-btn-exit:hover {
  background-color: #333333;
  color: #fff;
}

/* Cornstar Messenger (Bottom Right) */
.cob-messenger-box {
  position: fixed;
  bottom: 12px;
  right: 12px;
  width: 290px;
  background-color: #111111;
  border: 1px solid var(--primary-orange);
  z-index: 9990;
}

.cob-messenger-box.collapsed .cob-messenger-body,
.cob-messenger-box.collapsed .cob-messenger-footer {
  display: none;
}

.cob-messenger-header {
  background-color: #181818;
  border-bottom: 1px solid #282828;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.cob-messenger-name {
  font-size: 11px;
  font-weight: 800;
  color: var(--primary-orange);
}

.cob-online-dot {
  width: 6px;
  height: 6px;
  background-color: #10b981;
  display: inline-block;
  margin-right: 4px;
}

.cob-header-controls {
  display: flex;
  gap: 4px;
}

.cob-ctrl-btn {
  background: transparent;
  border: none;
  color: #888;
  font-size: 11px;
  font-weight: bold;
  cursor: pointer;
}

.cob-ctrl-btn:hover {
  color: #fff;
}

.cob-messenger-body {
  padding: 10px;
  max-height: 180px;
  overflow-y: auto;
  background-color: #0a0a0a;
}

.cob-chat-message {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.cob-chat-avatar {
  width: 30px;
  height: 30px;
  border: 1px solid var(--primary-orange);
  object-fit: cover;
}

.cob-chat-bubble {
  background-color: #1c1c1c;
  border: 1px solid #282828;
  padding: 6px 8px;
  font-size: 11px;
  color: #ccc;
  line-height: 1.35;
}

.cob-quick-actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.cob-action-tag {
  background-color: #161208;
  border: 1px solid var(--primary-orange);
  color: var(--primary-orange);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 6px;
  cursor: pointer;
}

.cob-action-tag:hover {
  background-color: var(--primary-orange);
  color: #000;
}

.cob-messenger-footer {
  display: flex;
  border-top: 1px solid #222;
}

.cob-input {
  flex: 1;
  background-color: #080808;
  border: none;
  color: #fff;
  font-size: 11px;
  padding: 6px 8px;
  outline: none;
}

.cob-send-btn {
  background-color: var(--primary-orange);
  border: none;
  color: #000;
  font-size: 10px;
  font-weight: 900;
  padding: 0 10px;
  cursor: pointer;
}

/* Jackpot Modal */
.harvest-jackpot-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.harvest-jackpot-dialog {
  background-color: #0d0d0d;
  border: 2px solid #d32f2f;
  width: 100%;
  max-width: 480px;
  text-align: center;
}

.harvest-jackpot-top {
  background-color: #d32f2f;
  color: #fff;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 900;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.harvest-jackpot-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

.harvest-jackpot-content {
  padding: 20px 16px;
}

.harvest-jackpot-title {
  font-size: 24px;
  font-weight: 900;
  color: #ffeb3b;
  margin-bottom: 4px;
}

.harvest-prize-box {
  background-color: #141414;
  border: 1px dashed var(--primary-orange);
  padding: 12px;
  margin: 12px 0;
}

.harvest-prize-title {
  font-size: 14px;
  font-weight: 900;
  color: var(--primary-orange);
}

.harvest-countdown {
  background-color: #260505;
  border: 1px solid #d32f2f;
  color: #ff5252;
  font-weight: 900;
  padding: 2px 6px;
  margin-left: 6px;
}

.harvest-claim-btn {
  width: 100%;
  background-color: var(--primary-orange);
  color: #000;
  border: none;
  font-size: 13px;
  font-weight: 900;
  padding: 12px;
  margin-top: 12px;
  cursor: pointer;
}

.harvest-claim-btn:hover {
  background-color: #fff;
}

/* Toast */
.toast-container {
  position: fixed;
  bottom: 16px;
  left: 16px;
  z-index: 10000;
}

.toast {
  background-color: #181818;
  color: #ffffff;
  border-left: 3px solid var(--primary-orange);
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.9);
  margin-top: 6px;
  animation: toastFadeIn 0.25s ease-out;
}

@keyframes toastFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   AUTHENTIC VINTAGE TUBE PARODY BANNERS & STRIPS
   (Anti-Adblock Compliant: zero 'ad' keywords, sharp edges)
   ========================================================= */

.corn-parody-strip {
  background: linear-gradient(90deg, #101010 0%, #171717 50%, #101010 100%);
  border: 1px solid #2e2e2e;
  border-left: 4px solid var(--primary-orange);
  margin: 24px 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
  position: relative;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.15s;
}

.corn-parody-strip:hover {
  border-color: var(--primary-orange);
  background: linear-gradient(90deg, #141414 0%, #1c1c1c 50%, #141414 100%);
}

.corn-parody-strip-hot {
  border-left-color: #ff3333;
}

.corn-parody-strip-hot:hover {
  border-color: #ff3333;
}

.corn-parody-media {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.corn-parody-thumb-box {
  width: 96px;
  height: 64px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid #333;
  background: #000;
}

.corn-parody-thumb-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.corn-parody-badge {
  position: absolute;
  top: 3px;
  left: 3px;
  background: #ff0000;
  color: #ffffff;
  font-size: 9px;
  font-weight: 900;
  padding: 2px 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.corn-parody-text-group {
  flex: 1;
}

.corn-parody-top-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 900;
  color: #ff4444;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}

.corn-live-dot {
  width: 7px;
  height: 7px;
  background-color: #ff3b30;
  border-radius: 50%;
  display: inline-block;
  animation: radarBlink 1s infinite alternate;
}

.corn-parody-title {
  font-size: 16px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 3px;
  line-height: 1.3;
}

.corn-parody-strip:hover .corn-parody-title {
  color: var(--primary-orange);
}

.corn-parody-desc {
  font-size: 12px;
  color: #aaaaaa;
  line-height: 1.35;
}

.corn-parody-cta-btn {
  background-color: var(--primary-orange);
  color: #000000;
  border: none;
  font-size: 12px;
  font-weight: 900;
  padding: 10px 18px;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  flex-shrink: 0;
  transition: background-color 0.2s, color 0.2s;
}

.corn-parody-cta-btn:hover {
  background-color: #ffffff;
  color: #000000;
}

.corn-parody-cta-hot {
  background-color: #ff3333;
  color: #ffffff;
}

.corn-parody-cta-hot:hover {
  background-color: #ffffff;
  color: #ff3333;
}

/* =========================================================
   RADAR QUÉT NGÔ BẮP ĐƠN THÂN MODAL
   ========================================================= */

.kernel-radar-dialog {
  background-color: #0c0c0c;
  border: 2px solid var(--primary-orange);
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.95);
  animation: zoomIn 0.2s ease-out;
}

.radar-live-blinker {
  width: 10px;
  height: 10px;
  background: #00ff66;
  border-radius: 50%;
  box-shadow: 0 0 10px #00ff66;
  animation: radarBlink 0.8s infinite alternate;
}

@keyframes radarBlink {
  from { opacity: 0.3; }
  to { opacity: 1; }
}

.kernel-radar-body {
  padding: 16px;
  overflow-y: auto;
  flex: 1;
}

.kernel-radar-scanner-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #111111;
  border: 1px solid #222222;
  padding: 12px;
  margin-bottom: 16px;
}

.radar-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid #00aa44;
  background: radial-gradient(circle, #022008 0%, #031505 100%);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: inset 0 0 8px rgba(0, 255, 100, 0.2);
}

.radar-circle::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 255, 100, 0.4);
}

.radar-circle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0, 255, 100, 0.3);
}

.radar-sweep {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  transform-origin: 0 0;
  background: conic-gradient(from 0deg, rgba(0, 255, 100, 0.6) 0deg, transparent 60deg);
  animation: sweepAnim 2s linear infinite;
}

@keyframes sweepAnim {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.radar-blip {
  position: absolute;
  font-size: 13px;
  animation: blipPulsing 1.5s infinite alternate;
}

.blip-1 { top: 15px; left: 45px; }
.blip-2 { bottom: 12px; left: 20px; animation-delay: 0.5s; }
.blip-3 { top: 40px; right: 12px; animation-delay: 1s; }

@keyframes blipPulsing {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(1.3); opacity: 1; filter: drop-shadow(0 0 6px #00ff66); }
}

.radar-status-bar {
  flex: 1;
}

.radar-status-text {
  font-size: 12px;
  color: #cccccc;
  line-height: 1.4;
}

.radar-status-text strong {
  color: #ffa31a;
}

.nearby-cobs-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nearby-cob-card {
  display: flex;
  gap: 14px;
  background: #141414;
  border: 1px solid #252525;
  padding: 10px;
  transition: border-color 0.2s;
}

.nearby-cob-card:hover {
  border-color: #383838;
}

.cob-card-thumb {
  width: 90px;
  height: 68px;
  position: relative;
  flex-shrink: 0;
  background: #000;
  border: 1px solid #333;
}

.cob-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cob-distance-pill {
  position: absolute;
  bottom: 3px;
  right: 3px;
  background: rgba(0, 0, 0, 0.85);
  color: #00ff66;
  font-size: 9px;
  font-weight: 900;
  padding: 1px 4px;
  border: 1px solid rgba(0, 255, 100, 0.4);
}

.cob-card-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cob-card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}

.cob-card-name {
  font-size: 13px;
  font-weight: 900;
  color: #ffffff;
}

.cob-card-temp {
  font-size: 11px;
  font-weight: 700;
  color: #ffa31a;
  white-space: nowrap;
}

.cob-card-quote {
  font-size: 12px;
  color: #bbbbbb;
  font-style: italic;
  line-height: 1.35;
  margin-bottom: 8px;
}

.cob-card-action-row {
  display: flex;
  gap: 8px;
}

.cob-shuck-btn {
  background-color: var(--primary-orange);
  color: #000000;
  border: none;
  font-size: 11px;
  font-weight: 900;
  padding: 6px 12px;
  cursor: pointer;
  text-transform: uppercase;
}

.cob-shuck-btn:hover {
  background-color: #ffffff;
}

.cob-butter-btn {
  background-color: #222222;
  color: #ffffff;
  border: 1px solid #383838;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 10px;
  cursor: pointer;
}

.cob-butter-btn:hover {
  background-color: #333333;
  color: var(--primary-orange);
}

/* =========================================================
   POPCORN POPPING MINI GAME
   ========================================================= */

.pop-pan-container {
  background: #121212;
  border: 2px dashed #444444;
  padding: 24px;
  cursor: pointer;
  user-select: none;
  transition: border-color 0.2s, background-color 0.15s;
}

.pop-pan-container:active {
  background-color: #1a1a1a;
  border-color: var(--primary-orange);
  transform: scale(0.99);
}

.pop-counter-display {
  font-size: 14px;
  font-weight: 700;
  color: #aaaaaa;
  margin-bottom: 16px;
}

.pop-visual-stage {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.pan-center-corn {
  font-size: 56px;
  transition: transform 0.1s;
}

.pop-pan-container:active .pan-center-corn {
  transform: scale(1.2) rotate(10deg);
}

.pop-particle {
  position: absolute;
  font-size: 24px;
  pointer-events: none;
  animation: popFly 0.6s ease-out forwards;
}

@keyframes popFly {
  0% { transform: translate(0, 0) scale(0.5); opacity: 1; }
  100% { transform: translate(var(--dx), var(--dy)) scale(1.3); opacity: 0; }
}

@media (max-width: 768px) {
  .corn-parody-strip {
    flex-direction: column;
    align-items: flex-start;
  }
  .corn-parody-cta-btn {
    width: 100%;
    text-align: center;
  }
  .nearby-cob-card {
    flex-direction: column;
  }
  .cob-card-thumb {
    width: 100%;
    height: 120px;
  }
}

