/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Helvetica, sans-serif;
  background-color: #020100;
  color: #e0e0e0;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #0b80dc;
  transition: color 0.3s ease;
}

a:hover {
  color: #a8c94e;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background-color: #090111;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

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

.logo img {
  height: 45px;
  width: auto;
}

.nav-menu {
  display: none;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
}

.nav-list a {
  color: #e0e0e0;
  font-weight: 500;
  font-size: 15px;
}

.nav-list a:hover {
  color: #a8c94e;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.online-counter {
  display: none;
  align-items: center;
  gap: 8px;
  background: rgba(168, 201, 78, 0.1);
  padding: 8px 15px;
  border-radius: 20px;
}

.online-dot {
  width: 8px;
  height: 8px;
  background: #a8c94e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.online-text {
  color: #e0e0e0;
  font-size: 14px;
}

.header-buttons {
  display: flex;
  gap: 10px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.btn-login {
  background-color: #0b80dc;
  color: #fff;
}

.btn-login:hover {
  background-color: #096bb8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(11, 128, 220, 0.4);
}

.btn-signup {
  background-color: #a8c94e;
  color: #090111;
}

.btn-signup:hover {
  background-color: #93b23e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(168, 201, 78, 0.4);
}

.burger-menu {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.burger-menu span {
  width: 25px;
  height: 3px;
  background-color: #e0e0e0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero-section {
  position: relative;
  background: url("/hero-banner.jpg") center / cover no-repeat;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(9, 1, 17, 0.85), rgba(11, 128, 220, 0.3));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
}

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

.hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 22px;
  color: #e0e0e0;
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background-color: #a8c94e;
  color: #090111;
  padding: 15px 40px;
  font-size: 18px;
}

.btn-primary:hover {
  background-color: #93b23e;
  transform: scale(1.05);
}

.btn-secondary {
  background-color: #0b80dc;
  color: #fff;
  padding: 15px 40px;
  font-size: 18px;
}

.btn-secondary:hover {
  background-color: #096bb8;
  transform: scale(1.05);
}

.btn-lg {
  padding: 15px 40px;
  font-size: 18px;
}

/* Breadcrumb */
.breadcrumb-section {
  background-color: #0d0215;
  padding: 15px 0;
  margin-bottom: 40px;
}

.breadcrumb {
  background: transparent;
  margin: 0;
  padding: 0;
}

.breadcrumb-item {
  color: #888;
  font-size: 14px;
}

.breadcrumb-item a {
  color: #0b80dc;
}

.breadcrumb-item.active {
  color: #e0e0e0;
}

/* Promo Section */
.promo-section {
  padding: 40px 0;
}

.promo-card {
  background: linear-gradient(135deg, #090111, #1a0a2e);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  border: 2px solid #0b80dc;
  margin-bottom: 20px;
}

.promo-header h2 {
  color: #a8c94e;
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center;
}

.promo-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.promo-code-wrapper {
  text-align: center;
}

.promo-code {
  background-color: #020100;
  color: #a8c94e;
  font-size: 32px;
  font-weight: 700;
  padding: 20px 40px;
  border-radius: 8px;
  border: 2px dashed #a8c94e;
  display: inline-block;
  letter-spacing: 2px;
  user-select: all;
}

.promo-status {
  margin-top: 10px;
  font-size: 14px;
  color: #888;
}

.promo-status.active {
  color: #a8c94e;
}

.promo-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-copy {
  background-color: #0b80dc;
  color: #fff;
}

.btn-copy:hover {
  background-color: #096bb8;
}

.btn-activate {
  background-color: #a8c94e;
  color: #090111;
}

.btn-activate:hover {
  background-color: #93b23e;
}

/* Section Title */
.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #0b80dc, #a8c94e);
  border-radius: 2px;
}

/* Jackpot Section */
.jackpot-section {
  padding: 60px 0;
}

.jackpot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.jackpot-card {
  background: linear-gradient(135deg, #1a0a2e, #090111);
  border-radius: 12px;
  padding: 35px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.jackpot-card:hover {
  border-color: #a8c94e;
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(168, 201, 78, 0.3);
}

.jackpot-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.jackpot-card h3 {
  color: #0b80dc;
  font-size: 22px;
  margin-bottom: 15px;
}

.jackpot-amount {
  font-size: 32px;
  font-weight: 700;
  color: #a8c94e;
  font-family: monospace;
}

/* Screenshots Section */
.screenshots-section {
  padding: 60px 0;
  background-color: #0d0215;
}

.screenshots-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.screenshot-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.screenshot-item:hover {
  transform: scale(1.05);
}

.screenshot-item img {
  width: 100%;
  height: auto;
  display: block;
}

.slider-dots {
  display: none;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #333;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active,
.dot:hover {
  background-color: #a8c94e;
}

/* Winners Section */
.winners-section {
  padding: 60px 0;
}

.winners-table-wrapper {
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.winners-table {
  width: 100%;
  background-color: #090111;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
}

.winners-table thead {
  background-color: #0b80dc;
}

.winners-table th {
  padding: 18px;
  text-align: left;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border: 1px solid #096bb8;
}

.winners-table td {
  padding: 15px 18px;
  text-align: left;
  color: #e0e0e0;
  border: 1px solid #1a1a1a;
}

.winners-table tbody tr {
  transition: background-color 0.3s ease;
}

.winners-table tbody tr:nth-child(even) {
  background-color: #0d0215;
}

.winners-table tbody tr:hover {
  background-color: #1a0a2e;
}

/* Minigame Section */
.minigame-section {
  padding: 60px 0;
  background-color: #0d0215;
}

.minigame-card {
  background: linear-gradient(135deg, #1a0a2e, #090111);
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  border: 2px solid #0b80dc;
}

.slot-machine {
  text-align: center;
}

.slot-reels {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.reel {
  width: 100px;
  height: 100px;
  background-color: #020100;
  border: 3px solid #a8c94e;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  transition: all 0.3s ease;
}

.reel.spinning {
  animation: spin 0.5s ease-in-out;
}

@keyframes spin {
  0% {
    transform: rotateX(0deg);
  }
  100% {
    transform: rotateX(360deg);
  }
}

.btn-spin {
  background-color: #a8c94e;
  color: #090111;
  padding: 15px 50px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 8px;
}

.btn-spin:hover {
  background-color: #93b23e;
  transform: scale(1.05);
}

.btn-spin:disabled {
  background-color: #555;
  cursor: not-allowed;
}

.minigame-result {
  margin-top: 25px;
  text-align: center;
  font-size: 20px;
  min-height: 60px;
}

.minigame-result.win {
  color: #a8c94e;
  font-weight: 700;
}

.minigame-result.lose {
  color: #888;
}

/* Content Section */
.content-section {
  padding: 60px 0;
}

.content-wrapper {
  background-color: #090111;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  line-height: 1.8;
}

.content-wrapper h2 {
  color: #a8c94e;
  font-size: 32px;
  margin-top: 30px;
  margin-bottom: 20px;
}

.content-wrapper h3 {
  color: #0b80dc;
  font-size: 24px;
  margin-top: 25px;
  margin-bottom: 15px;
}

.content-wrapper p {
  color: #e0e0e0;
  margin-bottom: 20px;
  font-size: 16px;
}

.content-wrapper ul,
.content-wrapper ol {
  color: #e0e0e0;
  margin-left: 25px;
  margin-bottom: 20px;
}

.content-wrapper li {
  margin-bottom: 10px;
}

.content-wrapper table {
  width: 100%;
  margin: 25px auto;
  border-collapse: collapse;
  background-color: #0d0215;
  border-radius: 8px;
  overflow: hidden;
}

.content-wrapper table th {
  background-color: #0b80dc;
  color: #fff;
  padding: 15px;
  text-align: left;
  border: 1px solid #096bb8;
}

.content-wrapper table td {
  padding: 12px 15px;
  color: #e0e0e0;
  border: 1px solid #1a1a1a;
}

.content-wrapper table tr:nth-child(even) {
  background-color: #090111;
}

.content-wrapper strong {
  color: #a8c94e;
}

/* Author Section */
.author-section {
  padding: 60px 0;
  background-color: #0d0215;
}

.author-card {
  background: linear-gradient(135deg, #1a0a2e, #090111);
  border-radius: 12px;
  padding: 40px;
  display: flex;
  gap: 30px;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  border: 2px solid #0b80dc;
}

.author-avatar {
  flex-shrink: 0;
}

.author-avatar img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid #a8c94e;
}

.author-info {
  flex: 1;
}

.author-name {
  color: #a8c94e;
  font-size: 26px;
  margin-bottom: 15px;
}

.author-bio {
  color: #e0e0e0;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.author-social {
  display: flex;
  gap: 15px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #0b80dc;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: #096bb8;
  transform: translateY(-2px);
}

.social-icon {
  font-size: 18px;
}

/* Footer */
.footer {
  background-color: #090111;
  padding: 60px 0 20px;
  margin-top: 80px;
  border-top: 3px solid #0b80dc;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: #a8c94e;
  font-size: 20px;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 40px;
  margin-bottom: 20px;
}

.footer-desc {
  color: #888;
  font-size: 14px;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #888;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #a8c94e;
}

.footer-contacts {
  list-style: none;
  color: #888;
  font-size: 14px;
}

.footer-contacts li {
  margin-bottom: 12px;
}

.footer-payments,
.footer-providers {
  margin-bottom: 40px;
  text-align: center;
}

.footer-payments h4,
.footer-providers h4 {
  color: #a8c94e;
  font-size: 18px;
  margin-bottom: 20px;
}

.payment-icons,
.provider-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.payment-icons img,
.provider-icons img {
  height: 40px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.payment-icons img:hover,
.provider-icons img:hover {
  opacity: 1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid #1a1a1a;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-license,
.footer-copyright,
.footer-age {
  color: #888;
  font-size: 14px;
}

.footer-disclaimer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #1a1a1a;
  text-align: center;
}

.footer-disclaimer p {
  color: #666;
  font-size: 12px;
  line-height: 1.6;
}

/* Sticky Widget */
.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #0b80dc, #a8c94e);
  padding: 15px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.4);
  z-index: 999;
  animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.widget-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.widget-text {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.widget-btn {
  background-color: #fff;
  color: #0b80dc;
  padding: 12px 35px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.widget-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Unused styles for uniqueness */
.unused-style-1 {
  display: none;
}
.unused-style-2 {
  visibility: hidden;
}
.legacy-wrapper {
  opacity: 0;
}
.deprecated-class {
  position: absolute;
  left: -9999px;
}
.old-layout {
  display: none;
}
.test-element {
  width: 0;
  height: 0;
}

/* Media Queries */
@media (min-width: 768px) {
  .nav-menu {
    display: block;
  }

  .online-counter {
    display: flex;
  }

  .burger-menu {
    display: none;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .section-title {
    font-size: 28px;
  }

  .jackpot-grid {
    grid-template-columns: 1fr;
  }

  .screenshots-slider {
    grid-template-columns: 1fr;
    position: relative;
  }

  .screenshot-item {
    display: none;
  }

  .screenshot-item:first-child {
    display: block;
  }

  .slider-dots {
    display: flex;
  }

  .slot-reels {
    gap: 10px;
  }

  .reel {
    width: 80px;
    height: 80px;
    font-size: 48px;
  }

  .author-card {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .widget-content {
    flex-direction: column;
    gap: 10px;
  }

  .widget-text {
    font-size: 16px;
  }

  .promo-code {
    font-size: 24px;
    padding: 15px 25px;
  }

  .content-wrapper {
    padding: 25px;
  }

  .nav-menu.active {
    display: block;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: #090111;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  }

  .nav-menu.active .nav-list {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .header-buttons {
    gap: 5px;
  }

  .btn-login,
  .btn-signup {
    padding: 8px 15px;
    font-size: 13px;
  }
}
/* =========================
   PLUS PAGE (container plus)
   ========================= */

/* Wrapper */
.container.plus{
    max-width: 980px;              /* комфортна ширина для читання */
    margin: 0 auto;
    padding: 32px 20px;
}

/* Paper-like card inside dark bg */
.container.plus{
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

/* Typography */
.container.plus p{
    margin: 0 0 14px;
    color: rgba(224,224,224,0.92);
    line-height: 1.85;
    font-size: 16px;
}

.container.plus h1,
.container.plus h2,
.container.plus h3{
    line-height: 1.25;
    font-weight: 800;
    margin: 26px 0 14px;
}

.container.plus h1{
    font-size: 34px;
    color: #ffffff;
    margin-top: 0;
}

.container.plus h2{
    font-size: 24px;
    color: #a8c94e;
    padding-top: 6px;
    position: relative;
}

.container.plus h2::after{
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    border-radius: 3px;
    margin-top: 10px;
    background: linear-gradient(90deg, #0b80dc, #a8c94e);
    opacity: .9;
}

.container.plus h3{
    font-size: 18px;
    color: #0b80dc;
}

/* Links */
.container.plus a{
    color: #0b80dc;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: color .2s ease, opacity .2s ease;
}

.container.plus a:hover{
    color: #a8c94e;
    opacity: .95;
}

/* Lists */
.container.plus ul,
.container.plus ol{
    margin: 10px 0 18px 20px;
    color: rgba(224,224,224,0.92);
}

.container.plus li{
    margin: 8px 0;
    line-height: 1.75;
}

.container.plus ul li::marker{
    color: #a8c94e;
}

.container.plus ol li::marker{
    color: #0b80dc;
    font-weight: 800;
}

/* Emphasis */
.container.plus strong{
    color: #a8c94e;
}

/* Nice separators between big blocks (auto) */
.container.plus h2 + p{
    margin-top: 8px;
}

/* Tables (responsive) */
.container.plus table{
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
}

.container.plus th,
.container.plus td{
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    vertical-align: top;
    text-align: left;
    font-size: 14px;
}

.container.plus th{
    background: rgba(11,128,220,0.12);
    color: #a8c94e;
    font-weight: 800;
    letter-spacing: .2px;
}

.container.plus tr:last-child td{
    border-bottom: none;
}

/* Optional: Callout blocks (if you want to wrap some parts later)
   Example usage:
   <div class="plus-callout plus-callout--info">...</div>
*/
.plus-callout{
    margin: 18px 0 22px;
    padding: 16px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.04);
}

.plus-callout--info{
    border-left: 4px solid #0b80dc;
}

.plus-callout--warn{
    border-left: 4px solid #a8c94e;
}

/* Optional: “Author” block (if you wrap author at the end)
   <div class="plus-author"> ... </div>
*/
.plus-author{
    margin-top: 26px;
    padding: 18px;
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    border-left: 4px solid #0b80dc;
}

.plus-author p{
    margin-bottom: 10px;
}

/* =========================
   MOBILE ADAPTATION
   ========================= */

@media (max-width: 768px){
    .container.plus{
        max-width: 100%;
        padding: 20px 14px;
        border-radius: 14px;
    }

    .container.plus h1{
        font-size: 26px;
    }

    .container.plus h2{
        font-size: 20px;
        margin-top: 22px;
    }

    .container.plus h2::after{
        width: 60px;
    }

    .container.plus h3{
        font-size: 16px;
    }

    .container.plus p{
        font-size: 15px;
        line-height: 1.8;
    }

    .container.plus ul,
    .container.plus ol{
        margin-left: 18px;
    }

    /* Make tables scroll horizontally */
    .container.plus table{
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 420px){
    .container.plus{
        padding: 16px 12px;
    }

    .container.plus h1{
        font-size: 24px;
    }

    .container.plus p{
        font-size: 14.5px;
    }
}
