/* ==========================================================================
   JapPress X - JapanToday High-Fidelity CSS
   Author: Rifan Muazin (TemaBlog.web.id)
   ========================================================================== */

/* --- 1. Reset & Global Box Sizing --- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-text-size-adjust: 100%;
  font-family: sans-serif;
  color-scheme: light dark;
}

body {
  margin: 0;
  font-family: "proxima-nova", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.35;
  color: #000;
  background-color: #f6f6f6;
  transition: background-color 0.25s ease, color 0.25s ease;
  overflow-x: hidden;
}

/* --- 2. Typography & Fonts --- */
.font-adelle {
  font-family: "adelle", "Source Serif 4", Georgia, serif !important;
}
.font-playfair {
  font-family: "Playfair Display", Georgia, serif !important;
}
.text-serif {
  font-family: "Source Serif 4", "adelle", Georgia, serif;
}
.text-sans-serif {
  font-family: "proxima-nova", "Inter", Helvetica, Arial, sans-serif;
}
.font-smoothing {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.text-xstrong { font-weight: 800; }
.text-strong { font-weight: 700; }
.text-semi-strong { font-weight: 600; }
.text-demi { font-weight: 500; }
.text-regular { font-weight: 400; }
.text-light { font-weight: 300; }

.text-uppercase { text-transform: uppercase; }
.text-capitalize { text-transform: capitalize; }
.text-italic { font-style: italic; }

.h1, h1 { font-size: 32px; font-weight: 800; line-height: 1.15; margin: 12px 0 8px; }
.h2, h2 { font-size: 26px; font-weight: 800; line-height: 1.2; margin: 10px 0 8px; }
.h3, h3 { font-size: 20px; font-weight: 700; line-height: 1.25; margin: 8px 0 6px; }
.h4, h4 { font-size: 16px; font-weight: 700; line-height: 1.3; margin: 6px 0 4px; }
.h5, h5 { font-size: 14px; font-weight: 700; }
.h6, h6 { font-size: 12px; font-weight: 700; }

@media (min-width: 768px) {
  .h1, h1 { font-size: 42px; }
  .h2, h2 { font-size: 32px; }
  .h3, h3 { font-size: 24px; }
  .h4, h4 { font-size: 18px; }
}

p { margin: 0 0 10.5px; }
.text-large { font-size: 18px; line-height: 1.4; }
.text-base { font-size: 16px; }
.text-small { font-size: 14px; }
.text-xsmall { font-size: 12px; }
.text-xxsmall { font-size: 11px; }

a {
  color: #000;
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover, a:focus {
  color: #cf1414;
}

.text-primary, [itemprop="articleBody"] a { color: #cf1414 !important; }
a.text-primary:hover, [itemprop="articleBody"] a:hover { color: #a01010 !important; }
.text-gray { color: #777; }
.text-gray-light { color: #aaa; }
.text-gray-dark { color: #333; }
.text-gray-darker { color: #1a1a1a; }
.text-white { color: #fff !important; }
.text-color { color: inherit; }

.bg-white { background-color: #fff; }
.bg-body { background-color: #f6f6f6; }
.bg-primary { background-color: #cf1414; color: #fff; }
.bg-gray-darker { background-color: #1a1a1a; color: #fff; }

.sep {
  display: inline-block;
  margin: 0 4px;
  width: 1px;
  height: 9px;
  background-color: #ccc;
  vertical-align: middle;
}

/* --- 3. Grid & Containers --- */
.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1200px;
}
.row {
  margin-right: -15px;
  margin-left: -15px;
}
.row::after, .row::before, .clearfix::after, .clearfix::before {
  display: table;
  content: " ";
  clear: both;
}

.gutter-sm {
  margin-right: -8px;
  margin-left: -8px;
}
.gutter-sm > [class*="col-"] {
  padding-right: 8px;
  padding-left: 8px;
}

[class*="col-"] {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  float: left;
  width: 100%;
}

@media (min-width: 768px) {
  .col-sm-4 { width: 33.333333%; }
  .col-sm-6 { width: 50%; }
  .col-sm-8 { width: 66.666667%; }
  .col-sm-12 { width: 100%; }
  .pull-right-sm { float: right; }
}

@media (min-width: 992px) {
  .col-md-3 { width: 25%; }
  .col-md-4 { width: 33.333333%; }
  .col-md-8 { width: 66.666667%; }
  .col-md-9 { width: 75%; }
  .col-md-12 { width: 100%; }
  .pull-right-md { float: right; }
}

.center-block { display: block; margin-right: auto; margin-left: auto; }
.pull-left { float: left !important; }
.pull-right { float: right !important; }

.hidden-xs { @media (max-width: 767px) { display: none !important; } }
.visible-xs { @media (min-width: 768px) { display: none !important; } }
.hidden-sm { @media (min-width: 768px) and (max-width: 991px) { display: none !important; } }
.hidden-print { @media print { display: none !important; } }

/* Spacers */
.mt-0 { margin-top: 0 !important; }
.mt-5 { margin-top: 5px !important; }
.mt-10 { margin-top: 10px !important; }
.mt-15 { margin-top: 15px !important; }
.mt-20 { margin-top: 20px !important; }
.mt-25 { margin-top: 25px !important; }
.mt-30 { margin-top: 30px !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-5 { margin-bottom: 5px !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-15 { margin-bottom: 15px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-25 { margin-bottom: 25px !important; }
.mb-30 { margin-bottom: 30px !important; }
.mb-40 { margin-bottom: 40px !important; }
.wrapper-xs { padding: 8px 0; }
.wrapper-sm { padding: 12px; }
.wrapper { padding: 16px; }
.wrapper-lg { padding: 24px 0; }
.space-right { margin-right: 10px; }
.space-right-sm { margin-right: 6px; }
.space-left { margin-left: 10px; }
.space-left-sm { margin-left: 6px; }

/* Dividers */
.hr {
  height: 1px;
  background-color: #e4e4e4;
  margin: 15px 0;
  border: 0;
}
.hr--thickest {
  height: 4px;
}
.hr--primary {
  background-color: #cf1414;
}
.bordered {
  border: 1px solid #e4e4e4;
}

/* --- 4. Custom JapanToday Icons (jt-icon) --- */
.jt-icon {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  font-style: normal;
}
.jt-icon-hamburger::before {
  content: "≡";
  font-size: 24px;
  font-weight: 900;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}
.jt-icon-magnifying-glass::before {
  content: "🔍";
  font-size: 16px;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
}
.jt-icon-chat::before {
  content: "💬";
  font-size: 14px;
  display: inline-block;
}
.jt-icon-mail::before {
  content: "✉";
  font-size: 14px;
  display: inline-block;
}
.jt-icon-pen::before {
  content: "✎";
  font-size: 14px;
  display: inline-block;
}

/* --- 5. Header Component --- */
.header {
  position: relative;
  z-index: 50;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.header-top {
  background-color: #1a1a1a;
  color: #fff;
  font-size: 12px;
  line-height: 28px;
}
.header-top a {
  color: #ccc;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.header-top a:hover {
  color: #fff;
}
.header-top__network {
  list-style: none;
  padding: 0;
  margin: 0;
  float: left;
}
.header-top__network li {
  display: inline-block;
  margin-right: 15px;
}
.header-top__tools {
  float: right;
}
.header-top__tools a {
  margin-left: 18px;
}
@media (max-width: 767px) {
  .header-top__tools { float: none; text-align: center; }
  .header-top__tools a { margin: 0 8px; }
}

.header-bottom {
  padding: 18px 15px 12px;
  text-align: center;
  position: relative;
}

/* Brand Logo Center */
.site-branding-center {
  display: inline-block;
  text-align: center;
  margin: 0 auto;
}
.site-branding-center .logo-link {
  display: inline-block;
  text-decoration: none;
}
.site-branding-center .logo-text {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -1px;
  color: #cf1414;
  text-transform: uppercase;
  font-family: "Inter", "proxima-nova", Helvetica, Arial, sans-serif;
  line-height: 1;
}
.site-branding-center .logo-text span {
  color: #111;
}
.site-branding-center img.custom-logo-img {
  display: inline-block;
  height: auto;
  max-width: 100%;
}

/* Main Navigation Bar */
.header-bottom__nav {
  margin-top: 15px;
  position: relative;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 8px 0;
}
.header-bottom__nav .js-header-tools {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
  padding: 0 10px;
}
.header-bottom__nav .js-header-tools span[role="button"] {
  pointer-events: auto;
  color: #111;
  padding: 4px;
  transition: color 0.15s;
}
.header-bottom__nav .js-header-tools span[role="button"]:hover {
  color: #cf1414;
}

.list-inline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
}
.list-inline > li {
  display: inline-block;
  padding: 0 10px;
}
.list-inline--spaceout > li > a {
  font-size: 13px;
  font-weight: 800;
  color: #222;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.list-inline--spaceout > li > a:hover {
  color: #cf1414;
}

/* Search Dropdown Form */
.header-bottom__search {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  padding: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  z-index: 60;
  display: none;
}
.header-bottom__search input[type="search"] {
  width: 80%;
  max-width: 600px;
  padding: 10px 16px;
  font-size: 16px;
  border: 2px solid #cf1414;
  border-radius: 3px;
  outline: none;
}
.header-bottom__search-close {
  display: inline-block;
  margin-left: 12px;
  font-size: 26px;
  font-weight: 700;
  color: #888;
  cursor: pointer;
  vertical-align: middle;
}
.header-bottom__search-close:hover {
  color: #cf1414;
}

/* --- 6. Sidenav Off-Canvas Drawer --- */
.sidenav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.sidenav-overlay.active {
  opacity: 1;
  visibility: visible;
}
.sidenav {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 320px;
  max-width: 85vw;
  background-color: #111;
  color: #eee;
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: 4px 0 25px rgba(0,0,0,0.4);
}
.sidenav.open {
  transform: translateX(0);
}
.sidenav-list {
  padding: 25px 20px;
}
.sidenav-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  color: #aaa;
  cursor: pointer;
}
.sidenav-close-btn:hover { color: #fff; }
.sidenav-list ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.sidenav-list > ul > li {
  border-bottom: 1px solid #222;
  padding: 10px 0;
}
.sidenav-list > ul > li > a {
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  display: block;
}
.sidenav-list > ul > li > a:hover {
  color: #cf1414;
}
.sidenav-list .sub-menu, .sidenav-list ul ul {
  padding-left: 15px;
  margin-top: 8px;
  margin-bottom: 0;
}
.sidenav-list ul ul li {
  border: none;
  padding: 4px 0;
}
.sidenav-list ul ul li a {
  color: #999;
  font-size: 13px;
  font-weight: 500;
}
.sidenav-list ul ul li a:hover {
  color: #fff;
}

/* Sidenav Appearance Slider */
.sidenav-list__item {
  padding: 15px 0;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}
.range {
  display: flex;
  align-items: center;
  margin-top: 8px;
}
.range input[type="range"] {
  flex: 1;
  cursor: pointer;
  accent-color: #cf1414;
}

.sidenav-list__footer {
  margin-top: 25px;
  font-size: 12px;
  line-height: 1.6;
  color: #888;
}
.sidenav-list__footer a {
  color: #ccc;
}
.logo-white {
  font-size: 20px;
  font-weight: 900;
  color: #fff !important;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

/* --- 7. Section Titles & Red Ribbon Flag Styling --- */
.section-title {
  position: relative;
  padding: 0 16px;
  text-align: center;
  line-height: 1.2;
  font-family: "adelle", "Source Serif 4", Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 15px;
}
.section-title::before {
  position: absolute;
  top: calc(50% - 4px);
  left: 0;
  right: 0;
  z-index: 1;
  content: "";
  display: block;
  height: 8px;
  background-color: #cf1414;
}
.section-title-inner {
  position: relative;
  z-index: 2;
  padding: 0 15px;
  display: inline-block;
  background-color: #f6f6f6;
  color: #000;
}
a.section-title-inner:hover {
  color: #cf1414;
}

/* --- 8. Media List & Article Layout Cards --- */
.img-responsive, [itemprop="articleBody"] img {
  display: block;
  max-width: 100%;
  height: auto;
}
.full {
  width: 100%;
}
.main-story-figure {
  margin: 0;
  overflow: hidden;
}
.main-story-figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.main-story-figure:hover img {
  transform: scale(1.02);
}

.media {
  margin-top: 15px;
  display: flex;
  align-items: flex-start;
}
.media-left {
  flex-shrink: 0;
  margin-right: 15px;
}
.media-body {
  flex: 1;
}
.media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.media-sm .media-left img {
  width: 120px;
  height: 84px;
  object-fit: cover;
}
@media (min-width: 768px) {
  .media-sm .media-left img {
    width: 160px;
    height: 110px;
  }
}

/* Frames / Side Boxes */
.frame {
  background-color: #fff;
  border: 1px solid #e4e4e4;
  padding: 16px;
  margin-bottom: 25px;
}
.frame--headed {
  position: relative;
  padding-top: 24px;
  margin-top: 30px;
}
.frame-heading {
  position: relative;
  display: block;
  width: 126px;
  height: 122px;
  margin-top: -42px;
  margin-left: -16px;
  margin-bottom: 25px;
  z-index: 5;
}
.frame-heading-shadow {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 126px;
  height: 110px;
  background-color: #333333;
  z-index: 1;
}
.frame-heading-shadow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 0;
  height: 0;
  border-top: 16px solid #333333;
  border-right: 16px solid transparent;
}
.frame-heading-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 126px;
  height: 110px;
  background-color: #cf1414;
  z-index: 2;
  box-sizing: border-box;
  padding: 18px 14px 14px 14px;
  display: flex;
  align-items: center;
}
.frame-heading-box::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 0;
  height: 0;
  border-top: 16px solid #cf1414;
  border-right: 16px solid transparent;
}
.frame-heading-text {
  display: block;
  width: 100%;
  color: #ffffff !important;
  font-family: "proxima-nova", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}
.frame-separation {
  height: 1px;
  background: #eee;
  margin: 14px 0;
}
.line-short {
  display: block;
  width: 25px;
  height: 3px;
  background: #cf1414;
  margin: 6px 0 10px;
}
blockquote.blockquote--strong {
  border-left: 4px solid #cf1414;
  padding: 8px 14px;
  margin: 10px 0;
  font-size: 15px;
  font-style: italic;
  line-height: 1.4;
  color: #333;
}

/* Numbering Popular */
.numbering {
  counter-reset: num-counter;
}
.numbering-item {
  position: relative;
  padding-left: 48px;
  min-height: 48px;
}
.numbering-item::before {
  counter-increment: num-counter;
  content: counter(num-counter);
  position: absolute;
  left: 14px;
  top: 14px;
  font-size: 24px;
  font-weight: 900;
  color: #cf1414;
  line-height: 1;
}

/* Spotlight Widget */
.spotlight-box {
  background: #111;
  color: #fff;
  padding: 10px;
  position: relative;
  margin-bottom: 15px;
}
.spotlight-header {
  background: #cf1414;
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.spotlight-thumb-wrap {
  position: relative;
  margin-top: 6px;
}
.spotlight-thumb-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.spotlight-player-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
  padding: 6px 10px;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 12px;
}

/* --- 9. Single Post Layout --- */
.article-single {
  background-color: #fff;
  padding: 25px;
  border: 1px solid #e4e4e4;
  margin-bottom: 30px;
}
.article-single figcaption {
  font-size: 13px;
  color: #777;
  margin-top: 6px;
}
.article-single .dateline {
  font-weight: 800;
  font-size: 15px;
  margin-right: 8px;
  color: #111;
}
.article-single [itemprop="articleBody"] p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* --- 10. Comments Section --- */
.comments-area {
  background: #fff;
  padding: 25px;
  border: 1px solid #e4e4e4;
  margin-top: 25px;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-bottom: 12px;
  font-family: inherit;
}
.comment-form input[type="submit"] {
  background-color: #cf1414;
  color: #fff;
  border: none;
  padding: 10px 24px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}
.comment-form input[type="submit"]:hover {
  background-color: #a01010;
}

/* --- 11. Footer --- */
.footer {
  background-color: #111;
  color: #aaa;
  padding: 35px 0 25px;
}
.footer a {
  color: #bbb;
}
.footer a:hover {
  color: #cf1414;
}
.footer-bottom {
  background-color: #080808;
  color: #777;
  padding: 20px 0;
  font-size: 12px;
  text-align: center;
}
.footer-bottom a {
  color: #999;
}
.footer-categories-cloud {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
}
.footer-categories-cloud li a {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

/* Social Icons & Partner Badges in Footer */
.footer-social-icons {
  margin: 15px 0 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #222;
  color: #ccc;
  border: 1px solid #333;
  transition: all 0.2s ease;
}
.social-icon-btn:hover {
  background: #cf1414;
  color: #fff;
  border-color: #cf1414;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(207,20,20,0.35);
}
.social-icon-btn svg {
  display: block;
}

.footer-partner-services {
  margin: 10px 0 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}
.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 14px;
  background: #1c1c1c;
  color: #888;
  border: 1px solid #2e2e2e;
  transition: all 0.2s;
}
.partner-badge:hover {
  background: #cf1414;
  color: #fff;
  border-color: #cf1414;
}

/* --- 12. Modal Popups (Newsletter & Share-Vote) --- */
.jappress-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}
.jappress-modal.active {
  opacity: 1;
  visibility: visible;
}
.jappress-modal-box {
  background: #ffffff;
  color: #0f172a;
  width: 90%;
  max-width: 480px;
  padding: 32px 28px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-top: 5px solid var(--color-primary, #cf1414);
  border-radius: 4px;
  animation: jappressModalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes jappressModalPop {
  0% { transform: scale(0.92) translateY(10px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.jappress-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  color: #64748b;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
}
.jappress-modal-close:hover {
  color: #cf1414;
  background: #fef2f2;
}
.jappress-modal-title {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 800;
  color: var(--color-primary, #cf1414) !important;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.jappress-modal-desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: #334155 !important;
  margin-bottom: 20px;
}
.jappress-modal-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #0f172a !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.jappress-modal-input {
  width: 100%;
  padding: 12px 14px;
  background-color: #f8fafc !important;
  color: #0f172a !important;
  border: 1.5px solid #cbd5e1 !important;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
  box-sizing: border-box;
}
.jappress-modal-input::placeholder {
  color: #94a3b8 !important;
}
.jappress-modal-input:focus {
  outline: none;
  background-color: #ffffff !important;
  border-color: var(--color-primary, #cf1414) !important;
  box-shadow: 0 0 0 3px rgba(207, 20, 20, 0.15);
}
.jappress-modal-submit {
  width: 100%;
  padding: 13px 20px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.5px;
  background-color: var(--color-primary, #cf1414) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
  box-shadow: 0 4px 10px rgba(207, 20, 20, 0.25);
}
.jappress-modal-submit:hover {
  background-color: #b01010 !important;
  color: #ffffff !important;
  transform: translateY(-1px);
}
.jappress-modal-submit:active {
  transform: translateY(0);
}
.jappress-share-btn-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}
.jappress-share-btn {
  padding: 9px 16px;
  border-radius: 4px;
  font-size: 12.5px;
  font-weight: 700;
  color: #ffffff !important;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.1s;
}
.jappress-share-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  text-decoration: none;
}
.jappress-share-btn.share-fb { background-color: #1877f2; }
.jappress-share-btn.share-tw { background-color: #0f1419; }
.jappress-share-btn.share-wa { background-color: #25d366; }
.jappress-share-btn.share-tg { background-color: #0088cc; }

/* --- 13. Dark Appearance Scheme --- */
.dark-scheme {
  background-color: #0f0f0f;
  color: #ededed;
}
.dark-scheme a {
  color: #ededed;
}
.dark-scheme a:hover {
  color: #d61935;
}
.dark-scheme .bg-white,
.dark-scheme .frame,
.dark-scheme .article-single,
.dark-scheme .comments-area,
.dark-scheme .header-bottom__search,
.dark-scheme .jappress-modal-box {
  background-color: #191919;
  color: #ededed;
  border-color: #333;
}
.dark-scheme .section-title-inner {
  background-color: #0f0f0f;
  color: #ededed;
}
.dark-scheme .section-title::before {
  background-color: #d61935;
}
.dark-scheme .hr {
  background-color: #333;
}
.dark-scheme .bordered {
  border-color: #333;
}
.dark-scheme .text-gray-dark {
  color: #ccc;
}
.dark-scheme .site-branding-center .logo-text span {
  color: #fff;
}
.dark-scheme .header-bottom__nav {
  border-color: #333;
}
.dark-scheme .header-bottom__nav .js-header-tools span[role="button"] {
  color: #eee;
}
.dark-scheme .list-inline--spaceout > li > a {
  color: #ccc;
}
.dark-scheme .list-inline--spaceout > li > a:hover {
  color: #d61935;
}
.dark-scheme blockquote.blockquote--strong {
  color: #ccc;
}
.dark-scheme .comment-form input[type="text"],
.dark-scheme .comment-form input[type="email"],
.dark-scheme .comment-form textarea {
  background: #252525;
  color: #fff;
  border-color: #444;
}
.dark-scheme .frame-heading-box {
  background-color: #d61935;
}
.dark-scheme .frame-heading-box::after {
  border-top-color: #d61935;
}
.dark-scheme .frame-heading-shadow {
  background-color: #080808;
}
.dark-scheme .frame-heading-shadow::after {
  border-top-color: #080808;
}

/* Dark Mode Modal Contrast */
.dark-scheme .jappress-modal-box {
  background-color: #18181b !important;
  color: #f4f4f5 !important;
  border: 1px solid #3f3f46 !important;
  border-top: 5px solid var(--color-dark-accent, #ef4444) !important;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8) !important;
}
.dark-scheme .jappress-modal-title {
  color: var(--color-dark-accent, #ef4444) !important;
}
.dark-scheme .jappress-modal-desc {
  color: #e4e4e7 !important;
}
.dark-scheme .jappress-modal-label {
  color: #f4f4f5 !important;
}
.dark-scheme .jappress-modal-input {
  background-color: #27272a !important;
  color: #ffffff !important;
  border: 1.5px solid #52525b !important;
}
.dark-scheme .jappress-modal-input:focus {
  background-color: #18181b !important;
  border-color: var(--color-dark-accent, #ef4444) !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.25) !important;
}
.dark-scheme .jappress-modal-close {
  color: #a1a1aa !important;
}
.dark-scheme .jappress-modal-close:hover {
  color: #ef4444 !important;
  background: #27272a !important;
}
.dark-scheme .jappress-modal-submit {
  background-color: var(--color-dark-accent, #ef4444) !important;
  color: #ffffff !important;
}
.dark-scheme .jappress-modal-submit:hover {
  background-color: #dc2626 !important;
}
