/* ========== ГЛОБАЛЬНЫЕ СТИЛИ ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #37c0ff;
    height: 100vh;
    width: 100%;
    overflow: visible;
    margin: 0;
    position: relative;
    font-family: 'Inter';
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body::-webkit-scrollbar {
  display: none;
}

/* Блокировка скролла при открытом попапе */
body.popup-open {
    overflow: hidden;
}

.background-clouds {
    width: 100%;
    height: 100vh;
    position: relative;
    z-index: 10;
}

.absolute {
    position: absolute;
}

h1,h2,h3,h4,h5,h6,p,a, li, span {
  font-family: 'Inter';
}

.t-0 {
  top: 0;
  width: 100%;
  height: 100vh;
  left: 0;
  position: fixed;
}

li, p {
  font-weight: 300;
  color: #49414a;
}

/* Облака - все позиции сохранены */
.cloude-n1 {
    top: 3%;
    left: 0;
    width: 100%;
    max-width: 350px;
}

.cloude-n2 {
    top: 0;
    left: 13%;
}

.cloude-n3 {
    top: 0;
    right: 0;
}

.replay-btn {
    display: none;
}

.cloude-n4 {
    top: 16%;
    left: 14%;
}

.cloude-n5 {
    top: 20%;
    left: 50%;
    transform: translate(-13%, -50%);
}

.cloude-n6 {
    top: 8%;
    right: 0;
}

.cloude-n7 {
    top: 29%;
    left: 2%;
}

.cloude-n8 {
    top: 32%;
    left: 41%;
}

.cloude-n9 {
    top: 28%;
    right: 0%;
}

.cloude-n10 {
    top: 45%;
    left: 0%;
}

.cloude-n11 {
    top: 37%;
    left: 11%;
}

.cloude-n12 {
    top: 42%;
    left: 46%;
}

.cloude-n13 {
    top: 36%;
    left: 54%;
}

.cloude-n14 {
    top: 60%;
    left: 0;
}

.cloude-n15 {
    top: 60%;
    left: 30%;
}

.cloude-n16 {
    top: 60%;
    left: 69%;
}

.cloude-n17 {
    top: 45%;
    right: 0%;
}

.cloude-n18 {
    top: 12%;
    left: 34%;
}

.cloude-n19 {
    top: 75%;
    left: 51%;
}

.cloude-n20 {
    top: 76%;
    left: 21%;
}

.cloude-n21 {
    top: 90%;
    right: 0%;
}

.cloude-n22 {
    top: 79%;
    right: 15%;
}

.cloude-n23 {
    top: 81%;
    right: 70%;
}

.cloude-n24 {
    top: 89%;
    right: 36%;
}

.cloude-n25 {
    top: 2%;
    right: 14%;
}

.cloude-n26 {
    top: -3%;
    left: 37%;
}

/* Red Bull банка */
.redbull-can-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.1);
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    opacity: 0;
}

.redbull-can {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.redbull-title-container {
    position: absolute;
    top: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(0px);
    z-index: 3;
    width: 100%;
    max-width: 170px;
}

.redbull-title {
    width: 100%;
    height: auto;
    opacity: 0;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.redbull-logo-container {
    position: relative;
    top: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(0px);
    z-index: 3;
    width: 100%;
    max-width: 170px;
}

.redbull-logo {
    width: 100%;
    height: auto;
    opacity: 0;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) scale(1) translateY(0); }
    50% { transform: translate(-50%, -50%) scale(1) translateY(-15px); }
}

.replay-btn {
    display: none !important;
}


/* ========== СТИЛИ ДЛЯ ВКЛАДОК ========== */
.tabs-overlay {
    position: relative;
    top: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 9999;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 10px;
    box-sizing: border-box;
    margin: 90px auto 0 auto;
}

.tabs-inner {
    width: 100%;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 12px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: flex-start;
    align-items: center;
}

.tabs-inner::-webkit-scrollbar {
    display: none;
}

/* Ряды */
.row {
    display: grid;
    gap: 12px;
    box-sizing: border-box;
}

.row.one { grid-template-columns: 1fr; }
.row.two { grid-template-columns: repeat(2, 1fr); }
.row.three { grid-template-columns: repeat(3, 1fr); }

/* Базовый стиль вкладки */
.tab {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 110px;
    border-radius: 99px;
    border: none;
    background: #fff;
    font-family: 'Inter';
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    color: #000;
    cursor: pointer;
    position: relative;
    box-sizing: border-box;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: visible;
    opacity: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    min-height: 50px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.tab-p1 {
  padding: 10px 50px;
}

.tab-p2 {
  padding: 10px 75px;
}

.tab-p3 {
  padding: 10px 60px;
  width: 100%;
}

.tab-p4 {
  padding: 10px 30px;
  width: 100%;
}

/* Скрываем старый контент */
.content {
    display: none;
}

/* ========== СТИЛИ ДЛЯ ПОП-АПОВ (ОСТАЛЬНОЕ БЕЗ ИЗМЕНЕНИЙ) ========== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background-color: white;
    border-radius: 20px;
    padding: 25px;
    max-width: 800px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    font-family: 'Inter';
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: scale(0.9) translateY(20px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.popup-overlay.active .popup-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.popup-close {
    display: none !important;
}

.popup-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
    padding-right: 30px;
    line-height: 1.3;
}

/* ========== ИСПРАВЛЕННЫЕ СТИЛИ ТЕКСТА В ПОП-АПЕ ========== */
.popup-body {
    font-size: 15px;
    line-height: 1.65;
    color: #2d3748;
}

.popup-body h1 {
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 24px 0;
    color: #0f172a;
    border-bottom: 3px solid #0057a3;
    padding-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.popup-body h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 28px 0 16px 0;
    color: #1e293b;
    border-left: 5px solid #0057a3;
    padding-left: 18px;
    line-height: 1.3;
}

.popup-body h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 24px 0 12px 0;
    color: #334155;
    padding-bottom: 6px;
    border-bottom: 1px solid #e2e8f0;
    line-height: 1.4;
}

.popup-body h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 20px 0 12px 0;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.popup-body p {
    margin-bottom: 16px;
    color: #334155;
    font-size: 15px;
    line-height: 1.65;
    font-weight: 400;
}

.popup-body strong {
    color: #0f172a;
    font-weight: 700;
}

.popup-body ul, 
.popup-body ol {
    margin: 12px 0 20px 0;
    padding-left: 24px;
}

.popup-body li {
    margin-bottom: 8px;
    color: #334155;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
}

.popup-body ul li::marker {
    color: #0057a3;
}

.popup-body ol li::marker {
    color: #0057a3;
    font-weight: 600;
}

.popup-body ul ul,
.popup-body ol ol,
.popup-body ul ol,
.popup-body ol ul {
    margin: 8px 0 8px 0;
}

.popup-body hr {
    margin: 24px 0;
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, #cbd5e1 20%, #cbd5e1 80%, transparent);
}

.popup-body img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 24px auto;
}

.popup-body .kkgoro {
    margin-top: 0 !important;
    border-radius: 20px;
}

/* ========== СТИЛИ ДЛЯ ВИДЕО ПЛЕЕРА (БЕЗ ИЗМЕНЕНИЙ) ========== */
.custom-video-player {
  position: relative;
  width: 100%;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 15px;
  aspect-ratio: 16/9;
  cursor: pointer;
}

.custom-video-player video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
}

.video-poster {
  transition: opacity 0.3s;
  z-index: 10;
}

.video-poster.hidden {
  opacity: 0;
  pointer-events: none;
}

.video-poster:hover div:first-child {
  transform: scale(1.1);
}

.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 15px 15px 12px;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 20;
  pointer-events: none;
}

.pynkt {
      padding: 0px 0px;
    border-radius: 20px;
}

.pynkt-1-image {
    width: 600px;
    height: 300px;
    object-fit: cover;
    object-position: center top;
    border-radius: 20px;
}

.brand-image {
    max-width: 150px;
}

.custom-video-player:hover .video-controls,
.video-controls.visible {
  opacity: 1;
  pointer-events: auto;
}

.progress-container {
  width: 100%;
  margin-bottom: 12px;
  cursor: pointer;
  padding: 5px 0;
}

.progress-bar {
  width: 100%;
  height: 5px;
  background: rgba(255,255,255,0.3);
  border-radius: 3px;
  position: relative;
  transition: height 0.2s;
}

.progress-container:hover .progress-bar {
  height: 8px;
}

.progress-fill {
  width: 0%;
  height: 100%;
  background: #007AFF;
  border-radius: 3px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.progress-handle {
  width: 12px;
  height: 12px;
  background: #007AFF;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.progress-container:hover .progress-handle {
  opacity: 1;
}

.controls-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.controls-buttons button {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, opacity 0.2s;
  min-width: 32px;
  height: 32px;
}

.controls-buttons button:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

.controls-buttons button:active {
  transform: scale(0.95);
}

.time-display {
  color: white;
  font-size: 14px;
  font-family: monospace;
  margin-right: auto;
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.volume-slider {
  width: 60px;
  height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  transition: width 0.2s;
}

.volume-control:hover .volume-slider {
  width: 80px;
}

.volume-fill {
  width: 100%;
  height: 100%;
  background: #007AFF;
  border-radius: 2px;
  position: relative;
}

.volume-fill::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -3px;
  width: 10px;
  height: 10px;
  background: #007AFF;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s;
}

.volume-control:hover .volume-fill::after {
  opacity: 1;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Дополнительные стили для видео плеера */
.custom-video-player {
  position: relative;
  width: 100%;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 4px;
  aspect-ratio: 16/9;
  cursor: pointer;
}

.custom-video-player video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
}

.video-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s;
}

.video-poster.hidden {
  opacity: 0;
  pointer-events: none;
}

.video-poster:hover div:first-child {
  transform: scale(1.1);
}

.loading-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  z-index: 15;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: rgba(0,0,0,0.7);
  padding: 20px;
  border-radius: 12px;
}

.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  padding: 15px 15px 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 20;
  pointer-events: none;
}

.custom-video-player:hover .video-controls,
.video-controls.visible {
  opacity: 1;
  pointer-events: auto;
}

.progress-container {
    width: 100%;
    margin-bottom: 0px;
    cursor: pointer;
    padding: 0px 0;
    position: static;
    height: 16px;
}

.progress-bar {
  width: 100%;
  height: 5px;
  background: rgba(255,255,255,0.3);
  border-radius: 3px;
  position: relative;
  transition: height 0.2s;
  height: 6px;
  margin-top: -40px;
}

.progress-container:hover .progress-bar {
  height: 7px;
}

.progress-fill {
  width: 0%;
  height: 100%;
  background: #007AFF;
  border-radius: 3px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: -33px;
}

.progress-handle {
  width: 14px;
  height: 14px;
  background: #007AFF;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
  position: absolute;
  right: -7px;
  top: -3px;
}

.progress-container:hover .progress-handle {
  opacity: 1;
}

.controls-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: -28px;
  margin-top: -4px;
}

.controls-buttons button {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, opacity 0.2s;
  min-width: 32px;
  height: 32px;
}

.controls-buttons button:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

.controls-buttons button:active {
  transform: scale(0.95);
}

.time-display {
  color: white;
  font-size: 14px;
  font-family: monospace;
  margin-right: auto;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.volume-slider {
  width: 60px;
  height: 5px;
  background: rgba(255,255,255,0.3);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  transition: width 0.2s;
}

.volume-control:hover .volume-slider {
  width: 80px;
}

.volume-fill {
  width: 100%;
  height: 100%;
  background: #007AFF;
  border-radius: 3px;
  position: relative;
}

.volume-fill::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -3px;
  width: 11px;
  height: 11px;
  background: #007AFF;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.volume-control:hover .volume-fill::after {
  opacity: 1;
}

.big-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(0, 122, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 25;
  transition: transform 0.3s, opacity 0.3s;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.big-play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.big-play-button svg {
  width: 40px;
  height: 40px;
  fill: white;
}

/* ========== ПОП-АП И КОМАНДА (БЕЗ ИЗМЕНЕНИЙ) ========== */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  background: white;
  border-radius: 20px;
  width: 90%;
  max-width: 1000px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 30px;
}

.popup-body {
  margin-top: 20px;
}

.all-team-img {
  width: 100%;
  border-radius: 20px;
  margin-top: -150px;
}

.team-hero {
    position: relative;
    margin-bottom: 20px;
}

.team-hero-text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #fff;
    max-width: 400px;
}

.team-hero-text h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.team-hero-text p {
    font-size: 16px;
    line-height: 1.5;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.team-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.team-card h3 {
    font-size: 18px;
    margin: 0px 0 0px;
    text-align: start;
    padding-left: 20px;
}

.team-card p {
    font-size: 14px;
    padding: 0 20px;
    color: #555;
    text-align: start;
    margin-top: 10px;
}

/* ========== АДАПТИВНОСТЬ (БЕЗ ИЗМЕНЕНИЙ) ========== */
@media (max-width: 800px) {
    body {
        overflow: auto;
    }
    
    .tab {
        font-size: 14px;
        padding: 12px 60px;
    }
    
    .team-grid {
        margin-top: 50px;
    }
    
    .popup-content {
        padding: 20px;
        max-width: 95%;
    }
    .popup-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    .popup-body {
        font-size: 14px;
        line-height: 1.4;
    }
    .popup-body h3 {
        font-size: 18px;
        margin-top: 12px;
        margin-bottom: 6px;
    }
    .popup-body h4 {
        font-size: 16px;
        margin-top: 10px;
        margin-bottom: 5px;
    }
    
    .absolute {
      scale: 0.7 !important;
    }
    
    .tab-p1 {
      padding: 10px 25px;
    }
    
    .tab-p2 {
      padding: 10px 40px;
    }
    
    .tab-p3 {
      padding: 10px 60px;
      width: 100%;
    }
    
    .tab-p4 {
      padding: 10px 20px;
      width: 100%;
    }
    
    .redbull-title {
        width: 70%;
    }
    
    .replay-btn {
        display: none;
    }

    .redbull-title {
        max-width: 130px !important;
        transform: translate(25px, 0px);
    }

    .cloude-n1, .cloude-n6, .cloude-n10 {
        display: none !important;
    }
    
    .tabs-overlay {
        transform: none;
        margin-top: 70px;
        width: 100%;
    }
    
    .redbull-title-container {
        top: 26px;
    }
    
    .redbull-logo-container {
        transform: translateX(-50%) translateY(0px);
        margin-bottom: 50px;
        max-width: 150px;
    }

    .scale-1 {
      scale: 1 !important;
    }

    .pynkt {
          padding:0px 0px;
    }

    .pynkt-1-image {
      width: 320px;
      height: 155px;
      object-fit: cover;
      object-position: center top;
    }
    
    .brand-image {
         width: 100px !important;
         border-radius: 13px;
    }
    
    .tab-p1 {
        padding: 6px 10px !important;
        max-width: 120px;
    }
    
    .popup-body {
        margin-top: 0px;
    }
    
    .custom-video-player {
        margin: -40px 0 -40px;
    }

    .team-card img {
        width: 60%;
        height: 300px;
    }
        .popup-body h3 {
            font-size: 16px;
        }

}

/* ========== ОСТАЛЬНЫЕ СТИЛИ (БЕЗ ИЗМЕНЕНИЙ) ========== */
.popup-title {
    display: none;
}

.tabs-overlay .content h1 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #000;
    border-bottom: 3px solid #0057a3;
    padding-bottom: 12px;
    letter-spacing: -0.01em;
}

.tabs-overlay .content h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 28px 0 16px 0;
    color: #000;
    border-left: 5px solid #0057a3;
    padding-left: 18px;
}

.tabs-overlay .content h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 22px 0 12px 0;
    color: #000;
    padding-bottom: 4px;
    border-bottom: 1px dashed #c0c0c0;
}

.tabs-overlay .content h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 18px 0 10px 0;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tabs-overlay .content ul li::marker {
    color: #0057a3;
}

.tabs-overlay .content ol li::marker {
    color: #0057a3;
    font-weight: 700;
}

.tabs-overlay .content p[style*="text-align: center"] {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    background: #f8f9fc;
    padding: 16px 20px;
    border-radius: 8px;
    margin: 24px 0;
    border-left: 4px solid #0057a3;
}

.tabs-overlay .content hr {
    margin: 24px 0;
    border: none;
    border-top: 1px solid #d0d0d0;
}

.tabs-overlay .content {
    text-align: left;
    line-height: 1.6;
    font-size: 15px;
    color: #333;
}

.tabs-overlay .content p {
    margin-bottom: 14px;
    color: #444;
}

.tabs-overlay .content strong {
    color: #1a1a2e;
    font-weight: 700;
}

.tabs-overlay .content ul, 
.tabs-overlay .content ol {
    margin: 10px 0 15px 20px;
    padding-left: 10px;
}

.tabs-overlay .content li {
    margin-bottom: 8px;
    color: #444;
}

.tabs-overlay .content {
    scrollbar-width: thin;
    scrollbar-color: #c0c0c0 #f0f0f0;
}

.tabs-overlay .content::-webkit-scrollbar {
    width: 6px;
}

.tabs-overlay .content::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 3px;
}

.tabs-overlay .content::-webkit-scrollbar-thumb {
    background: #c0c0c0;
    border-radius: 3px;
}

@media (max-width: 768px) {
    .tabs-overlay .content h1 {
        font-size: 22px;
    }
    
    .tabs-overlay .content h2 {
        font-size: 18px;
    }
    
    .tabs-overlay .content h3 {
        font-size: 16px;
    }
    
.ppti3 {
    padding: 12px 8px;
}
}

.custom-video-player {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    margin: 10px 0;
}
