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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.5;
  background-color: #f8f9fa;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
}

.header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 70px;
}
.header .container {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 30px;
}
.header .header-left {
  display: flex;
  align-items: center;
  gap: 40px;
}
.header .logo img {
  height: 36px;
  transition: transform 0.3s;
}
.header .logo img:hover {
  transform: scale(1.05);
}
.header .nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}
.header .nav ul li a {
  color: #333;
  text-decoration: none;
  font-size: 15px;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s;
}
.header .nav ul li a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #e74c3c;
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: right;
}
.header .nav ul li a:hover {
  color: #e74c3c;
}
.header .nav ul li a:hover:after {
  transform: scaleX(1);
  transform-origin: left;
}
.header .nav ul li a.active {
  color: #e74c3c;
}
.header .nav ul li a.active:after {
  transform: scaleX(1);
}
.header .header-search {
  flex: 1;
  max-width: 500px;
  margin: 0 auto;
}
.header .header-search .search-box {
  position: relative;
  width: 100%;
}
.header .header-search .search-box .search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 18px;
  pointer-events: none;
}
.header .header-search .search-box input {
  width: 100%;
  height: 40px;
  padding: 0 15px 0 40px;
  border: 1px solid #eee;
  border-radius: 20px;
  font-size: 14px;
  background: #f8f9fa;
  transition: all 0.3s;
}
.header .header-search .search-box input:focus {
  outline: none;
  border-color: #e74c3c;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.header .header-search .search-box input:focus + .search-icon {
  color: #e74c3c;
}
.header .header-search .search-box input::placeholder {
  color: #999;
}

.main-container {
  margin-top: 70px;
  padding: 30px 0;
  min-height: calc(100vh - 70px);
  background: #f8f9fa;
  width: 100%;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .main-container {
    margin-top: 56px;
    min-height: calc(100vh - 56px);
    padding: 20px 0;
  }
}

.video-section {
  margin-top: 20px;
}
.video-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.video-section .section-header h2 {
  font-size: 24px;
  color: #2c3e50;
  position: relative;
  padding-left: 15px;
}
.video-section .section-header h2:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background: #e74c3c;
  border-radius: 2px;
}
.video-section .section-header .more {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: 15px;
  background: #f5f5f5;
  transition: all 0.3s;
}
.video-section .section-header .more i {
  font-size: 12px;
  transition: all 0.3s;
}
.video-section .section-header .more:hover {
  background: #e74c3c;
  color: #fff;
}
.video-section .section-header .more:hover i {
  transform: translateX(3px);
}
.video-section .video-layout {
  display: grid;
  gap: 15px;
  margin-bottom: 30px;
  grid-template-columns: 1fr;
}
.video-section .video-layout .main-video {
  margin-bottom: 15px;
  width: 100%;
}
.video-section .video-layout .main-video .video-card .video-thumb {
  padding-top: 40%;
}
@media (max-width: 768px) {
  .video-section .video-layout .main-video .video-card .video-thumb {
    padding-top: 56.25%;
  }
}
.video-section .video-layout .main-video .video-card .video-info {
  width: 100%;
}
.video-section .video-layout .main-video .video-card .video-info h3 {
  width: 100%;
  display: block;
  max-width: 100%;
}
.video-section .video-layout .side-videos-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  width: 100%;
}
@media (max-width: 768px) {
  .video-section .video-layout .side-videos-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
.video-section .video-list {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .video-section .video-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .video-section .video-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.video-section .video-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 768px) {
  .video-section .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.video-section .video-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}
.video-section .video-card .video-thumb {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
}
.video-section .video-card .video-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-section .video-card .video-thumb .video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  backdrop-filter: blur(4px);
}
.video-section .video-card .video-thumb .video-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e74c3c;
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}
.video-section .video-card .video-info {
  padding: 10px;
  width: 100%;
  max-width: 300px;
}
.video-section .video-card .video-info h3 {
  font-size: 14px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #2c3e50;
  line-height: 1.4;
  width: 100%;
  display: block;
  max-width: 100%;
}

.video-player video {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16/9;
  background: black;
}

.iframeBox {
  width: 100%;
  aspect-ratio: 16/9;
}
.iframeBox .iframe {
  width: 100%;
  height: 100%;
}

.pagination-container {
  margin: 30px auto 20px;
  display: flex;
  justify-content: center;
}
.pagination-container ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pagination-container ul.page-no li.active {
  background: #e74c3c;
  font-weight: 600;
  color: white;
  border-color: #e74c3c;
}
.pagination-container ul li {
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-color: #fff;
  text-align: center;
  color: #666;
  border: 1px solid #eee;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s;
  font-size: 0.9rem;
}
.pagination-container ul li:hover:not(.active) {
  background-color: rgba(231, 76, 60, 0.05);
  border-color: #e74c3c;
  color: #e74c3c;
  transform: translateY(-1px);
}
.pagination-container ul li.active {
  background: #e74c3c;
  font-weight: 600;
  color: white;
  border-color: #e74c3c;
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}
.pagination-container ul li a {
  width: 40px;
  height: 40px;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: inherit;
}
.pagination-container ul li a.active {
  background: #e74c3c;
  font-weight: 600;
  color: white;
}
.pagination-container ul li.page-options {
  width: 70px;
}
.pagination-container ul li.page-options a {
  width: 70px;
}
.pagination-container ul li:disabled, .pagination-container ul li.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  color: #999;
}
.pagination-container ul li:disabled:hover, .pagination-container ul li.disabled:hover {
  background-color: #fff;
  border-color: #eee;
  color: #999;
  transform: none;
}
@media (max-width: 768px) {
  .pagination-container {
    margin: 20px auto 15px;
  }
  .pagination-container ul {
    gap: 8px;
  }
  .pagination-container ul li {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }
  .pagination-container ul li a {
    width: 36px;
    height: 36px;
  }
  .pagination-container ul li.page-options {
    width: 60px;
  }
  .pagination-container ul li.page-options a {
    width: 60px;
  }
}

.footer {
  padding: 40px 0 20px;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  color: #666;
  font-size: 14px;
}
.footer .friend-links {
  margin-bottom: 30px;
  text-align: center;
}
.footer .friend-links .links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.footer .friend-links .links a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
  position: relative;
  padding: 0 10px;
}
.footer .friend-links .links a:not(:last-child):after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background: #ddd;
}
.footer .friend-links .links a:hover {
  color: #e74c3c;
}
@media (max-width: 768px) {
  .footer .friend-links .links {
    gap: 10px;
    padding: 0 15px;
  }
  .footer .friend-links .links a {
    padding: 5px 10px;
  }
  .footer .friend-links .links a:not(:last-child):after {
    display: none;
  }
}
.footer .footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.menu-toggle {
  display: none;
  width: 24px;
  height: 16px;
  position: relative;
  cursor: pointer;
  z-index: 100;
}
.menu-toggle span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #333;
  transition: all 0.3s ease-out;
  left: 0;
}
.menu-toggle span:nth-child(1) {
  top: 0;
}
.menu-toggle span:nth-child(2) {
  top: 7px;
}
.menu-toggle span:nth-child(3) {
  top: 14px;
}
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 7px;
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 7px;
}

@media (max-width: 768px) {
  .header {
    height: 56px;
  }
  .header .container {
    gap: 12px;
  }
  .header .header-left {
    gap: 15px;
  }
  .header .nav {
    position: fixed;
    top: 56px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 56px);
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    margin: 0;
    padding: 0;
    z-index: 999;
  }
  .header .nav.active {
    left: 0;
  }
  .header .nav ul {
    flex-direction: column;
    padding: 0;
    margin: 0;
    gap: 0;
  }
  .header .nav ul li {
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  .header .nav ul li:last-child {
    border-bottom: none;
  }
  .header .nav ul li a {
    display: block;
    padding: 15px 20px;
    font-size: 15px;
  }
  .header .header-search {
    max-width: none;
  }
  .header .header-search .search-box input {
    height: 36px;
    font-size: 13px;
  }
  .menu-toggle {
    display: block;
    z-index: 1000;
  }
  .video-section .section-header h2 {
    font-size: 20px;
  }
  .video-section .video-card .video-info h3 {
    font-size: 14px;
  }
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #999;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.header-scrolled {
  animation: slideDown 0.3s ease-out forwards;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.video-list-container {
  margin-top: 10px;
}
.video-list-container .list-header {
  margin-bottom: 20px;
}
.video-list-container .list-header .section-title {
  font-size: 24px;
  color: #2c3e50;
  position: relative;
  padding-left: 15px;
  margin: 0;
  margin-bottom: 10px;
}
.video-list-container .list-header .section-title:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background: #e74c3c;
  border-radius: 2px;
}
.video-list-container .list-header .search-info {
  color: #666;
  font-size: 14px;
  margin-left: 15px;
}
.video-list-container .list-header .search-info .keyword {
  color: #e74c3c;
  font-weight: 500;
  margin: 0 5px;
}
.video-list-container .list-header .search-info .result-count {
  color: #e74c3c;
  font-weight: 500;
  margin: 0 5px;
}
@media (max-width: 768px) {
  .video-list-container .list-header .section-title {
    font-size: 20px;
  }
  .video-list-container .list-header .section-title:before {
    height: 20px;
  }
  .video-list-container .list-header .search-info {
    font-size: 13px;
  }
}
.video-list-container .video-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1024px) {
  .video-list-container .video-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .video-list-container .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.video-list-container .video-item .video-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
}
.video-list-container .video-item .video-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.video-list-container .video-item .video-card:hover .video-overlay {
  opacity: 1;
}
.video-list-container .video-item .video-card .video-thumb {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
}
.video-list-container .video-item .video-card .video-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-list-container .video-item .video-card .video-thumb .video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  backdrop-filter: blur(4px);
}
.video-list-container .video-item .video-card .video-thumb .video-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e74c3c;
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}
.video-list-container .video-item .video-card .video-thumb .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s;
}
.video-list-container .video-item .video-card .video-thumb .video-overlay i {
  font-size: 48px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.video-list-container .video-item .video-card .video-info {
  padding: 15px;
}
.video-list-container .video-item .video-card .video-info h3 {
  font-size: 14px;
  font-weight: 500;
  color: #2c3e50;
  line-height: 1.4;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.video-list-container .video-item .video-card .video-info .video-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  color: #999;
  font-size: 12px;
}

.no-result {
  grid-column: 1/-1;
  padding: 60px 0;
  text-align: center;
}
.no-result .no-result-content i {
  font-size: 48px;
  color: #ccc;
  margin-bottom: 20px;
}
.no-result .no-result-content p {
  margin: 0;
  color: #666;
  font-size: 16px;
}
.no-result .no-result-content p.sub-text {
  color: #999;
  font-size: 14px;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .no-result {
    padding: 40px 0;
  }
  .no-result .no-result-content i {
    font-size: 36px;
    margin-bottom: 15px;
  }
  .no-result .no-result-content p {
    font-size: 15px;
  }
  .no-result .no-result-content p.sub-text {
    font-size: 13px;
  }
}

.nav ul li a.active {
  color: #e74c3c;
  font-weight: 500;
}

.video-player-section {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.video-player-section .player-wrapper {
  background: #000;
}
.video-player-section .video-info {
  padding: 20px;
}
.video-player-section .video-info .video-title {
  font-size: 24px;
  color: #2c3e50;
  margin: 0 0 15px;
  line-height: 1.4;
}
.video-player-section .video-info .video-meta {
  margin-bottom: 20px;
}
.video-player-section .video-info .video-meta .meta-info {
  display: flex;
  gap: 20px;
  color: #666;
  font-size: 14px;
  flex-wrap: wrap;
}
.video-player-section .video-info .video-meta .meta-info span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.video-player-section .video-info .video-meta .meta-info span i {
  color: #999;
}
.video-player-section .video-info .video-desc {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}
.video-player-section .video-info .video-desc p {
  margin: 0;
}
@media (max-width: 768px) {
  .video-player-section {
    margin-bottom: 20px;
  }
  .video-player-section .video-info {
    padding: 15px;
  }
  .video-player-section .video-info .video-title {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .video-player-section .video-info .video-meta .meta-info {
    gap: 12px;
    font-size: 13px;
  }
  .video-player-section .video-info .video-desc {
    font-size: 13px;
  }
}

.related-section {
  margin-bottom: 40px;
  margin-top: 20px;
}
.related-section .section-header {
  margin-bottom: 20px;
}
.related-section .section-header .section-title {
  font-size: 24px;
  color: #2c3e50;
  position: relative;
  padding-left: 15px;
  margin: 0;
}
.related-section .section-header .section-title:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background: #e74c3c;
  border-radius: 2px;
}
.related-section .video-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(5, 1fr);
}
.related-section .video-grid .video-item .video-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.related-section .video-grid .video-item .video-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.related-section .video-grid .video-item .video-card:hover .video-overlay {
  opacity: 1;
}
.related-section .video-grid .video-item .video-card .video-thumb {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
}
.related-section .video-grid .video-item .video-card .video-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.related-section .video-grid .video-item .video-card .video-thumb .video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  backdrop-filter: blur(4px);
}
.related-section .video-grid .video-item .video-card .video-thumb .video-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e74c3c;
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}
.related-section .video-grid .video-item .video-card .video-thumb .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s;
}
.related-section .video-grid .video-item .video-card .video-thumb .video-overlay i {
  font-size: 48px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.related-section .video-grid .video-item .video-card .video-info {
  padding: 15px;
}
.related-section .video-grid .video-item .video-card .video-info h3 {
  font-size: 14px;
  font-weight: 500;
  color: #2c3e50;
  line-height: 1.4;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.related-section .video-grid .video-item .video-card .video-info .video-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  color: #999;
  font-size: 12px;
}
@media (max-width: 1024px) {
  .related-section .video-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .related-section .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .related-section .video-grid .video-item .video-card .video-thumb .video-duration {
    padding: 3px 6px;
    font-size: 11px;
  }
  .related-section .video-grid .video-item .video-card .video-thumb .video-tag {
    padding: 3px 8px;
    font-size: 11px;
  }
  .related-section .video-grid .video-item .video-card .video-thumb .video-overlay i {
    font-size: 36px;
  }
  .related-section .video-grid .video-item .video-card .video-info {
    padding: 10px;
  }
  .related-section .video-grid .video-item .video-card .video-info h3 {
    font-size: 13px;
  }
  .related-section .video-grid .video-item .video-card .video-info .video-meta {
    font-size: 11px;
    margin-top: 6px;
  }
}
@media (max-width: 768px) {
  .related-section {
    margin-bottom: 30px;
  }
  .related-section .section-header {
    margin-bottom: 15px;
  }
  .related-section .section-header .section-title {
    font-size: 20px;
  }
  .related-section .section-header .section-title:before {
    height: 20px;
  }
}

.plyr--video {
  border-radius: 0;
  --plyr-color-main: #e74c3c;
}

/*# sourceMappingURL=index.css.map */
