:root {
  --s360a-primary: var(--s360-primary, #f15a24);
  --s360a-primary-rgb: 241, 90, 36;
  --s360a-ink: #182231;
  --s360a-muted: #718096;
  --s360a-border: #e4e9f0;
  --s360a-canvas: #f5f7fa;
  --s360a-surface: #fff;
  --s360a-success: #14a66a;
  --s360a-danger: #dc4c5b;
  --s360a-warning: #c77b0a;
  --s360a-radius: 16px;
  --s360a-shadow: 0 12px 34px rgba(18, 28, 45, .08);
}

.s360a-heading {
  align-items: flex-end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 24px;
}

.s360a-heading h1 {
  color: var(--s360a-ink);
  font-size: 28px;
  font-weight: 750;
  letter-spacing: -.03em;
  margin: 5px 0 4px;
}

.s360a-heading p,
.s360a-panel-title p {
  color: var(--s360a-muted);
  margin: 0;
}

.s360a-eyebrow,
.s360a-public-kicker {
  color: var(--s360a-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.s360a-back {
  color: var(--s360a-muted);
  display: inline-block;
  font-size: 13px;
  margin-bottom: 5px;
}

.s360a-back:hover {
  color: var(--s360a-primary);
}

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

.s360a-stats {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 24px;
}

.s360a-stat-card {
  background: var(--s360a-surface);
  border: 1px solid var(--s360a-border);
  border-radius: var(--s360a-radius);
  box-shadow: 0 5px 16px rgba(18, 28, 45, .04);
  display: grid;
  gap: 5px;
  min-height: 132px;
  padding: 18px;
}

.s360a-stat-card i {
  color: var(--s360a-primary);
  font-size: 18px;
}

.s360a-stat-card span {
  color: var(--s360a-muted);
  font-size: 12px;
  font-weight: 650;
}

.s360a-stat-card strong {
  color: var(--s360a-ink);
  font-size: 28px;
  line-height: 1;
}

.s360a-panel-title {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.s360a-panel-title h4,
.s360a-section-title {
  color: var(--s360a-ink);
  font-size: 16px;
  font-weight: 750;
  margin: 0;
}

.s360a-list {
  display: grid;
}

.s360a-list-row {
  align-items: center;
  border-bottom: 1px solid var(--s360a-border);
  color: inherit;
  display: flex;
  gap: 12px;
  min-height: 66px;
  padding: 10px 5px;
  transition: .18s ease;
}

.s360a-list-row:last-child {
  border-bottom: 0;
}

a.s360a-list-row:hover {
  background: rgba(var(--s360-primary-rgb, 241, 90, 36), .07);
  color: inherit;
  padding-left: 10px;
  padding-right: 10px;
}

.s360a-list-icon,
.s360a-lesson-type {
  align-items: center;
  background: rgba(var(--s360-primary-rgb, 241, 90, 36), .1);
  border-radius: 12px;
  color: var(--s360a-primary);
  display: inline-flex;
  flex: 0 0 40px;
  height: 40px;
  justify-content: center;
}

.s360a-list-main {
  display: grid;
  flex: 1;
  min-width: 0;
}

.s360a-list-main strong {
  color: var(--s360a-ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.s360a-list-main small {
  color: var(--s360a-muted);
  margin-top: 3px;
}

.s360a-status {
  background: #eef1f5;
  border-radius: 999px;
  color: #596579;
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 9px;
  white-space: nowrap;
}

.s360a-status--published,
.s360a-status--active,
.s360a-status--paid,
.s360a-status--completed {
  background: #e8f8f1;
  color: #0c8c58;
}

.s360a-status--draft,
.s360a-status--pending,
.s360a-status--started,
.s360a-status--invoice_created {
  background: #fff5e4;
  color: #a56608;
}

.s360a-status--suspended,
.s360a-status--cancelled {
  background: #fff0f2;
  color: #c63f50;
}

.s360a-empty {
  color: var(--s360a-muted);
  padding: 28px 12px;
  text-align: center;
}

.s360a-empty--large {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 220px;
  justify-content: center;
}

.s360a-empty--large > i {
  color: var(--s360a-primary);
  font-size: 34px;
}

.s360a-empty--large strong {
  color: var(--s360a-ink);
  font-size: 18px;
}

.s360a-empty--large p {
  margin: 0 0 10px;
}

.s360a-inline-form {
  display: inline-block;
  margin: 0;
}

.s360a-sticky-panel {
  position: sticky;
  top: 82px;
}

.s360a-section-title {
  border-bottom: 1px solid var(--s360a-border);
  margin-bottom: 18px;
  padding-bottom: 14px;
}

.s360a-color-input {
  height: 48px !important;
  max-width: 110px;
  padding: 5px !important;
}

.s360a-info-box {
  align-items: flex-start;
  background: #eaf8f2;
  border-radius: 14px;
  color: #0f8d5b;
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  padding: 15px;
}

.s360a-info-box p {
  color: #3d725d;
  font-size: 12px;
  margin: 4px 0 0;
}

.s360a-curriculum-section .panel-body {
  padding: 0;
}

.s360a-section-form {
  align-items: center;
  background: #f8fafc;
  border-bottom: 1px solid var(--s360a-border);
  display: flex;
  gap: 8px;
  padding: 14px;
}

.s360a-section-form .form-control {
  font-weight: 700;
}

.s360a-drag {
  color: #a5afbc;
  cursor: grab;
}

.s360a-order-input {
  flex: 0 0 72px;
}

.s360a-lessons {
  display: grid;
  padding: 7px 14px 12px;
}

.s360a-lesson-row {
  align-items: center;
  border-bottom: 1px solid var(--s360a-border);
  display: flex;
  gap: 10px;
  min-height: 63px;
  padding: 9px 0;
}

.s360a-lesson-type {
  flex-basis: 36px;
  height: 36px;
}

.s360a-add-lesson {
  border: 1px dashed #cdd5df;
  border-radius: 11px;
  color: var(--s360a-primary);
  font-weight: 700;
  margin-top: 12px;
  padding: 11px;
  text-align: center;
}

.s360a-add-lesson:hover {
  background: rgba(var(--s360-primary-rgb, 241, 90, 36), .06);
  border-color: var(--s360a-primary);
}

.s360a-delete-section {
  border-top: 1px solid var(--s360a-border);
  margin: 0;
  padding: 3px 10px;
  text-align: right;
}

.s360a-client-wrap {
  margin: 20px auto 40px;
  max-width: 1240px;
  padding: 0 15px;
}

.s360a-my-courses-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.s360a-my-course {
  background: #fff;
  border: 1px solid var(--s360a-border);
  border-radius: 18px;
  box-shadow: var(--s360a-shadow);
  overflow: hidden;
}

.s360a-my-course-cover {
  align-items: center;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--s360a-primary), #ff946d);
  color: #fff;
  display: flex;
  font-size: 42px;
  font-weight: 800;
  justify-content: center;
  overflow: hidden;
}

.s360a-my-course-cover img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.s360a-my-course-body {
  padding: 18px;
}

.s360a-my-course-body > small {
  color: var(--s360a-primary);
  font-weight: 700;
}

.s360a-my-course-body h3 {
  color: var(--s360a-ink);
  font-size: 18px;
  font-weight: 750;
  margin: 6px 0 18px;
}

.s360a-progress > div {
  display: flex;
  font-size: 12px;
  justify-content: space-between;
  margin-bottom: 6px;
}

.s360a-progress progress {
  appearance: none;
  background: #e9edf2;
  border: 0;
  border-radius: 999px;
  height: 7px;
  overflow: hidden;
  width: 100%;
}

.s360a-progress progress::-webkit-progress-bar {
  background: #e9edf2;
}

.s360a-progress progress::-webkit-progress-value {
  background: var(--s360a-primary);
}

.s360a-progress progress::-moz-progress-bar {
  background: var(--s360a-primary);
}

.s360a-my-course .btn {
  margin-top: 16px;
}

.s360a-certificate-link {
  display: block;
  font-size: 12px;
  margin-top: 10px;
  text-align: center;
}

/* Player */
.s360a-player-shell {
  background: #f3f5f8;
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  min-height: calc(100vh - 130px);
}

.s360a-player-sidebar {
  background: #fff;
  border-right: 1px solid var(--s360a-border);
  max-height: calc(100vh - 80px);
  overflow: auto;
  position: sticky;
  top: 65px;
}

.s360a-player-course {
  border-bottom: 1px solid var(--s360a-border);
  padding: 22px;
}

.s360a-player-course > a {
  color: var(--s360a-muted);
  font-size: 12px;
}

.s360a-player-course h2 {
  color: var(--s360a-ink);
  font-size: 18px;
  font-weight: 750;
  margin: 10px 0 18px;
}

.s360a-player-section {
  border-bottom: 1px solid var(--s360a-border);
  padding: 15px 12px;
}

.s360a-player-section > strong {
  color: #526075;
  display: block;
  font-size: 11px;
  letter-spacing: .05em;
  padding: 0 8px 9px;
  text-transform: uppercase;
}

.s360a-player-section a {
  align-items: center;
  border-radius: 11px;
  color: #475569;
  display: flex;
  gap: 9px;
  padding: 10px 8px;
}

.s360a-player-section a:hover,
.s360a-player-section a.is-active {
  background: rgba(var(--s360-primary-rgb, 241, 90, 36), .09);
  color: var(--s360a-ink);
}

.s360a-player-section a > span {
  align-items: center;
  border: 1px solid #cdd5df;
  border-radius: 50%;
  display: inline-flex;
  flex: 0 0 25px;
  font-size: 9px;
  height: 25px;
  justify-content: center;
}

.s360a-player-section a > span.is-done {
  background: var(--s360a-success);
  border-color: var(--s360a-success);
  color: #fff;
}

.s360a-player-section a div {
  display: grid;
  min-width: 0;
}

.s360a-player-section a b {
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.s360a-player-section a small {
  color: var(--s360a-muted);
}

.s360a-player-main {
  margin: 0 auto;
  max-width: 1050px;
  padding: 30px;
  width: 100%;
}

.s360a-player-top {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.s360a-player-top span {
  color: var(--s360a-primary);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.s360a-player-top h1 {
  color: var(--s360a-ink);
  font-size: 25px;
  font-weight: 750;
  margin: 4px 0 0;
}

.s360a-mobile-curriculum {
  background: #fff;
  border: 1px solid var(--s360a-border);
  border-radius: 9px;
  display: none;
  padding: 8px 12px;
}

.s360a-video {
  aspect-ratio: 16 / 9;
  background: #0d1118;
  overflow: hidden;
}

.s360a-video iframe {
  border: 0;
  height: 100%;
  width: 100%;
}

.s360a-video--player {
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(10, 15, 25, .18);
}

.s360a-player-content {
  background: #fff;
  border: 1px solid var(--s360a-border);
  border-radius: 16px;
  color: #445064;
  font-size: 15px;
  line-height: 1.72;
  margin-top: 22px;
  padding: 24px;
}

.s360a-material-download {
  align-items: center;
  background: #f7f9fb;
  border: 1px solid var(--s360a-border);
  border-radius: 13px;
  color: var(--s360a-ink);
  display: flex;
  gap: 12px;
  margin-top: 20px;
  padding: 14px;
}

.s360a-material-download > span {
  align-items: center;
  background: var(--s360a-primary);
  border-radius: 10px;
  color: #fff;
  display: flex;
  flex: 0 0 42px;
  height: 42px;
  justify-content: center;
}

.s360a-material-download div {
  display: grid;
}

.s360a-material-download small {
  color: var(--s360a-muted);
}

.s360a-player-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.s360a-complete-form {
  margin: 0;
}

/* Public pages */
.s360a-public {
  background: #f7f8fb;
  color: var(--s360a-ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
}

.s360a-public *,
.s360a-public *::before,
.s360a-public *::after {
  box-sizing: border-box;
}

.s360a-public a {
  color: inherit;
  text-decoration: none;
}

.s360a-public-container {
  margin: 0 auto;
  max-width: 1180px;
  padding-left: 24px;
  padding-right: 24px;
  width: 100%;
}

.s360a-public-header {
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(225, 230, 238, .9);
  position: sticky;
  top: 0;
  z-index: 100;
}

.s360a-public-header .s360a-public-container {
  align-items: center;
  display: flex;
  height: 72px;
  justify-content: space-between;
}

.s360a-brand {
  align-items: center;
  display: flex;
  font-size: 17px;
  font-weight: 800;
  gap: 10px;
}

.s360a-brand-mark {
  align-items: center;
  background: var(--s360a-primary);
  border-radius: 11px;
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.s360a-public-header nav {
  align-items: center;
  display: flex;
  font-size: 14px;
  font-weight: 650;
  gap: 22px;
}

.s360a-public-btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 11px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 750;
  justify-content: center;
  min-height: 45px;
  padding: 0 19px;
  transition: .18s ease;
}

.s360a-public-btn--ghost {
  border-color: var(--s360a-border);
}

.s360a-public-btn--primary {
  background: var(--s360a-primary);
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(var(--s360-primary-rgb, 241, 90, 36), .22);
}

.s360a-public-btn:hover {
  transform: translateY(-1px);
}

.s360a-public-btn--block {
  width: 100%;
}

.s360a-catalog-hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(var(--s360-primary-rgb, 241, 90, 36), .16), transparent 27%),
    linear-gradient(150deg, #111827, #222b39);
  color: #fff;
  padding: 100px 0;
}

.s360a-catalog-hero h1 {
  font-size: clamp(36px, 5vw, 62px);
  letter-spacing: -.045em;
  line-height: 1.02;
  margin: 14px 0 18px;
  max-width: 800px;
}

.s360a-catalog-hero p {
  color: #c6cfdb;
  font-size: 18px;
  line-height: 1.6;
  max-width: 650px;
}

.s360a-public-section {
  padding: 74px 0;
}

.s360a-public-section-head {
  margin-bottom: 28px;
}

.s360a-public-section h2 {
  font-size: 32px;
  letter-spacing: -.035em;
  margin: 6px 0;
}

.s360a-course-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.s360a-course-card {
  background: #fff;
  border: 1px solid var(--s360a-border);
  border-radius: 20px;
  box-shadow: var(--s360a-shadow);
  overflow: hidden;
  transition: .2s ease;
}

.s360a-course-card:hover {
  box-shadow: 0 20px 48px rgba(18, 28, 45, .13);
  transform: translateY(-4px);
}

.s360a-course-cover {
  align-items: center;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--s360a-primary), #ff9168);
  color: #fff !important;
  display: flex;
  font-size: 46px;
  font-weight: 850;
  justify-content: center;
  overflow: hidden;
}

.s360a-course-cover img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.s360a-course-card-body {
  padding: 22px;
}

.s360a-course-card-body > small {
  color: var(--s360a-primary);
  font-size: 12px;
  font-weight: 750;
}

.s360a-course-card h3 {
  font-size: 21px;
  margin: 8px 0 10px;
}

.s360a-course-card p {
  color: var(--s360a-muted);
  line-height: 1.55;
  margin: 0;
  min-height: 48px;
}

.s360a-course-card-footer {
  align-items: center;
  border-top: 1px solid var(--s360a-border);
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 17px;
}

.s360a-course-card-footer strong {
  font-size: 18px;
}

.s360a-course-card-footer a {
  color: var(--s360a-primary);
  font-weight: 750;
}

.s360a-public-empty {
  background: #fff;
  border: 1px solid var(--s360a-border);
  border-radius: 18px;
  color: var(--s360a-muted);
  padding: 50px;
  text-align: center;
}

.s360a-course-hero {
  background: linear-gradient(145deg, #151b25, #293344);
  color: #fff;
  padding: 72px 0;
}

.s360a-course-hero-grid {
  align-items: center;
  display: grid;
  gap: 58px;
  grid-template-columns: minmax(0, 1fr) 390px;
}

.s360a-course-hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  letter-spacing: -.045em;
  line-height: 1.04;
  margin: 12px 0 18px;
}

.s360a-course-hero-grid > div > p {
  color: #c8d0dc;
  font-size: 18px;
  line-height: 1.6;
}

.s360a-course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.s360a-course-meta span {
  color: #d4dbe4;
  font-size: 13px;
}

.s360a-course-meta i {
  color: var(--s360a-primary);
  font-style: normal;
}

.s360a-course-offer {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 24px 65px rgba(0, 0, 0, .26);
  color: var(--s360a-ink);
  overflow: hidden;
}

.s360a-course-offer > img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}

.s360a-course-offer-body {
  padding: 22px;
}

.s360a-course-offer-body > small {
  color: var(--s360a-muted);
}

.s360a-course-offer-body > strong {
  display: block;
  font-size: 30px;
  margin: 4px 0 18px;
}

.s360a-course-offer-body > p {
  color: var(--s360a-muted);
  font-size: 12px;
  margin: 13px 0 0;
}

.s360a-course-offer-body > p span {
  color: var(--s360a-success);
  font-weight: 900;
}

.s360a-course-content-grid {
  display: grid;
  gap: 60px;
  grid-template-columns: minmax(0, 1fr) 430px;
}

.s360a-rich-content {
  color: #48566b;
  font-size: 16px;
  line-height: 1.75;
}

.s360a-rich-content h2,
.s360a-curriculum-public h2 {
  color: var(--s360a-ink);
  margin-top: 7px;
}

.s360a-curriculum-public {
  background: #fff;
  border: 1px solid var(--s360a-border);
  border-radius: 20px;
  box-shadow: var(--s360a-shadow);
  padding: 24px;
}

.s360a-curriculum-public details {
  border-top: 1px solid var(--s360a-border);
}

.s360a-curriculum-public summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-weight: 750;
  justify-content: space-between;
  padding: 17px 0;
}

.s360a-curriculum-public summary small,
.s360a-curriculum-public details p small {
  color: var(--s360a-muted);
  font-weight: 500;
}

.s360a-curriculum-public details > div {
  padding-bottom: 10px;
}

.s360a-curriculum-public details p {
  align-items: center;
  color: #566277;
  display: flex;
  font-size: 13px;
  justify-content: space-between;
  margin: 0;
  padding: 8px 0;
}

.s360a-public-footer {
  background: #111722;
  color: #aab3c0;
  font-size: 13px;
}

.s360a-public-footer .s360a-public-container {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 90px;
}

.s360a-public-footer a {
  margin-left: 18px;
}

/* Checkout */
.s360a-checkout-section {
  min-height: calc(100vh - 160px);
  padding: 38px 18px 70px;
}

.s360a-checkout-shell {
  margin: 0 auto;
  max-width: 890px;
}

.s360a-checkout-top {
  align-items: center;
  color: var(--s360a-muted);
  display: flex;
  font-size: 13px;
  justify-content: space-between;
  margin-bottom: 15px;
}

.s360a-checkout-top span b {
  color: var(--s360a-success);
}

.s360a-checkout-alert {
  background: #fff0f2;
  border: 1px solid #ffd0d6;
  border-radius: 12px;
  color: #b33143;
  margin-bottom: 14px;
  padding: 13px 16px;
}

.s360a-checkout-alert a {
  color: inherit;
  display: block;
  font-weight: 800;
  margin-top: 7px;
  text-decoration: underline;
}

.s360a-checkout-card {
  background: #fff;
  border: 1px solid var(--s360a-border);
  border-radius: 16px;
  box-shadow: 0 5px 18px rgba(18, 28, 45, .055);
  margin-bottom: 13px;
  padding: 19px;
}

.s360a-checkout-title {
  align-items: center;
  display: flex;
  gap: 12px;
  margin-bottom: 17px;
}

.s360a-checkout-title > span {
  align-items: center;
  background: rgba(var(--s360-primary-rgb, 241, 90, 36), .1);
  border-radius: 50%;
  color: var(--s360a-primary);
  display: flex;
  flex: 0 0 34px;
  font-size: 13px;
  font-weight: 850;
  height: 34px;
  justify-content: center;
}

.s360a-checkout-title h2 {
  font-size: 18px;
  margin: 0;
}

.s360a-checkout-title p {
  color: var(--s360a-muted);
  font-size: 12px;
  margin: 2px 0 0;
}

.s360a-checkout-product {
  align-items: center;
  background: #f8fafc;
  border: 1px solid var(--s360a-border);
  border-radius: 13px;
  display: flex;
  gap: 13px;
  padding: 12px;
}

.s360a-checkout-thumb {
  align-items: center;
  background: linear-gradient(135deg, var(--s360a-primary), #ff926b);
  border-radius: 10px;
  color: #fff;
  display: flex;
  flex: 0 0 66px;
  font-weight: 850;
  height: 54px;
  justify-content: center;
  overflow: hidden;
}

.s360a-checkout-thumb img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.s360a-checkout-product > div:nth-child(2) {
  display: grid;
  flex: 1;
}

.s360a-checkout-product small {
  color: var(--s360a-muted);
  margin-top: 3px;
}

.s360a-checkout-product > b {
  font-size: 17px;
}

.s360a-checkout-fields {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

.s360a-field {
  display: grid;
  gap: 6px;
}

.s360a-field--full {
  grid-column: 1 / -1;
}

.s360a-field span {
  color: #657187;
  font-size: 11px;
  font-weight: 750;
  margin-left: 3px;
  text-transform: uppercase;
}

.s360a-field input {
  background: #fff;
  border: 1px solid #d8dee7;
  border-radius: 10px;
  color: var(--s360a-ink);
  font: inherit;
  height: 48px;
  outline: none;
  padding: 0 13px;
  transition: .18s ease;
  width: 100%;
}

.s360a-field input:focus {
  border-color: var(--s360a-primary);
  box-shadow: 0 0 0 4px rgba(var(--s360-primary-rgb, 241, 90, 36), .1);
}

.s360a-known-contact {
  align-items: center;
  background: #f8fafc;
  border: 1px solid var(--s360a-border);
  border-radius: 13px;
  display: flex;
  gap: 12px;
  padding: 13px;
}

.s360a-known-contact > span {
  align-items: center;
  background: var(--s360a-primary);
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex: 0 0 44px;
  height: 44px;
  justify-content: center;
}

.s360a-known-contact > div {
  display: grid;
  flex: 1;
}

.s360a-known-contact small {
  color: var(--s360a-muted);
}

.s360a-known-contact > b {
  color: var(--s360a-success);
  font-size: 11px;
}

.s360a-payment-note {
  align-items: center;
  background: #f2f9f6;
  border: 1px solid #d9eee4;
  border-radius: 13px;
  display: flex;
  gap: 12px;
  padding: 14px;
}

.s360a-payment-note > span {
  align-items: center;
  background: #dff3e9;
  border-radius: 11px;
  display: flex;
  flex: 0 0 42px;
  height: 42px;
  justify-content: center;
}

.s360a-payment-note p {
  color: #5c7167;
  font-size: 12px;
  margin: 3px 0 0;
}

.s360a-terms {
  align-items: flex-start;
  color: #68758a;
  display: flex;
  font-size: 12px;
  gap: 8px;
  margin: 15px 2px;
}

.s360a-terms input {
  accent-color: var(--s360a-primary);
  margin-top: 2px;
}

.s360a-terms a {
  color: var(--s360a-primary);
  font-weight: 700;
}

.s360a-checkout-submit {
  align-items: center;
  background: var(--s360a-success);
  border: 0;
  border-radius: 11px;
  color: #fff;
  cursor: pointer;
  display: flex;
  font: inherit;
  font-weight: 800;
  gap: 9px;
  height: 54px;
  justify-content: center;
  padding: 0 18px;
  width: 100%;
}

.s360a-checkout-submit b {
  margin-left: 4px;
}

.s360a-checkout-submit:disabled {
  cursor: wait;
  opacity: .7;
}

.s360a-checkout-privacy {
  color: #909aaa;
  font-size: 11px;
  margin: 10px 0 0;
  text-align: center;
}

.s360a-honeypot {
  left: -9999px !important;
  opacity: 0 !important;
  position: absolute !important;
}

.s360a-order-section {
  align-items: center;
  display: flex;
  min-height: calc(100vh - 162px);
  padding: 50px 20px;
}

.s360a-order-card {
  background: #fff;
  border: 1px solid var(--s360a-border);
  border-radius: 22px;
  box-shadow: var(--s360a-shadow);
  margin: 0 auto;
  max-width: 520px;
  padding: 38px;
  text-align: center;
  width: 100%;
}

.s360a-order-icon {
  align-items: center;
  background: #fff4e2;
  border-radius: 50%;
  color: var(--s360a-warning);
  display: flex;
  font-size: 26px;
  height: 65px;
  justify-content: center;
  margin: 0 auto 20px;
  width: 65px;
}

.s360a-order-icon.is-paid {
  background: #e7f8f0;
  color: var(--s360a-success);
}

.s360a-order-card h1 {
  font-size: 30px;
  margin: 8px 0 12px;
}

.s360a-order-card > p {
  color: var(--s360a-muted);
  line-height: 1.55;
  margin-bottom: 22px;
}

.s360a-order-secondary {
  color: var(--s360a-muted) !important;
  display: inline-block;
  font-size: 13px;
  margin-top: 17px;
}

.s360a-certificate-code {
  background: #f6f8fa;
  border-radius: 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  padding: 11px;
}

/* Certificate */
.s360a-certificate-page {
  align-items: center;
  background: #e9edf2;
  display: flex;
  flex-direction: column;
  font-family: Georgia, "Times New Roman", serif;
  margin: 0;
  min-height: 100vh;
  padding: 28px;
}

.s360a-certificate {
  aspect-ratio: 1.414 / 1;
  background: #fffdf8;
  box-sizing: border-box;
  box-shadow: 0 20px 70px rgba(18, 28, 45, .2);
  max-width: 1120px;
  padding: 25px;
  width: 100%;
}

.s360a-certificate *,
.s360a-certificate *::before,
.s360a-certificate *::after {
  box-sizing: border-box;
}

.s360a-certificate-border {
  align-items: center;
  border: 3px solid var(--s360a-primary);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  padding: 40px;
  position: relative;
  text-align: center;
}

.s360a-certificate-brand {
  color: var(--s360a-primary);
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 850;
  letter-spacing: .08em;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.s360a-certificate-border > span {
  color: #6c7683;
  font-family: Inter, sans-serif;
  font-size: 15px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.s360a-certificate h1 {
  border-bottom: 1px solid #c9bfae;
  color: #182231;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 500;
  margin: 5px 0 14px;
  min-width: 60%;
  padding: 0 20px 8px;
}

.s360a-certificate h2 {
  color: var(--s360a-primary);
  font-size: clamp(24px, 3vw, 40px);
  margin: 7px 0 14px;
}

.s360a-certificate p {
  color: #68717e;
  font-size: 16px;
  margin: 6px 0;
}

.s360a-certificate-footer {
  align-items: flex-end;
  display: flex;
  font-family: Inter, sans-serif;
  justify-content: space-between;
  margin-top: 25px;
  max-width: 780px;
  width: 100%;
}

.s360a-certificate-footer div {
  display: grid;
  gap: 5px;
  min-width: 205px;
}

.s360a-certificate-footer strong {
  border-bottom: 1px solid #aeb6c0;
  padding: 0 20px 6px;
}

.s360a-certificate-footer span {
  color: #7e8794;
  font-size: 11px;
  text-transform: uppercase;
}

.s360a-certificate-footer .s360a-certificate-qr-block {
  align-items: center;
  gap: 4px;
  justify-items: center;
  min-width: 120px;
}

.s360a-certificate-qr-block a {
  background: #fff;
  border: 1px solid #d8dde5;
  display: block;
  height: 104px;
  padding: 4px;
  width: 104px;
}

.s360a-certificate-qr {
  align-items: center;
  color: #7e8794;
  display: flex;
  font-family: Inter, sans-serif;
  font-size: 8px;
  height: 100%;
  justify-content: center;
  line-height: 1.2;
  width: 100%;
}

.s360a-certificate-qr svg {
  display: block;
  height: 100%;
  width: 100%;
}

.s360a-certificate-qr-block > span {
  font-size: 8px;
  letter-spacing: .04em;
}

.s360a-certificate-verify {
  bottom: 12px;
  font-family: Inter, sans-serif;
  font-size: 8px !important;
  max-width: calc(100% - 40px);
  overflow-wrap: anywhere;
  position: absolute;
}

.s360a-certificate-print {
  background: var(--s360a-primary);
  border: 0;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  font-weight: 750;
  padding: 13px 18px;
}

.s360a-certificate-actions {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 20px;
  min-height: 46px;
  position: relative;
  z-index: 2;
}

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

  .s360a-course-grid,
  .s360a-my-courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .s360a-course-hero-grid,
  .s360a-course-content-grid {
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 35px;
  }
}

@media (max-width: 850px) {
  .s360a-player-shell {
    display: block;
  }

  .s360a-player-sidebar {
    bottom: 0;
    box-shadow: 10px 0 40px rgba(18, 28, 45, .2);
    left: -340px;
    max-height: 100vh;
    position: fixed;
    top: 0;
    transition: left .2s ease;
    width: 330px;
    z-index: 10000;
  }

  .s360a-player-shell.is-sidebar-open .s360a-player-sidebar {
    left: 0;
  }

  .s360a-mobile-curriculum {
    display: inline-flex;
  }

  .s360a-course-hero-grid,
  .s360a-course-content-grid {
    grid-template-columns: 1fr;
  }

  .s360a-course-offer {
    max-width: 480px;
  }
}

@media (max-width: 680px) {
  .s360a-heading {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .s360a-heading .btn {
    width: 100%;
  }

  .s360a-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .s360a-stat-card {
    min-height: 110px;
  }

  .s360a-course-grid,
  .s360a-my-courses-grid {
    grid-template-columns: 1fr;
  }

  .s360a-player-main {
    padding: 20px 14px;
  }

  .s360a-player-top h1 {
    font-size: 20px;
  }

  .s360a-player-actions {
    flex-direction: column;
    gap: 9px;
  }

  .s360a-player-actions .btn,
  .s360a-complete-form {
    width: 100%;
  }

  .s360a-public-header .s360a-public-container {
    height: 62px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .s360a-public-header nav > a:first-child {
    display: none;
  }

  .s360a-brand {
    font-size: 15px;
  }

  .s360a-brand-mark {
    height: 32px;
    width: 32px;
  }

  .s360a-catalog-hero {
    padding: 65px 0;
  }

  .s360a-public-container {
    padding-left: 17px;
    padding-right: 17px;
  }

  .s360a-public-section {
    padding: 48px 0;
  }

  .s360a-course-hero {
    padding: 48px 0;
  }

  .s360a-course-meta {
    flex-direction: column;
    gap: 8px;
  }

  .s360a-checkout-section {
    padding: 22px 10px 50px;
  }

  .s360a-checkout-card {
    padding: 15px;
  }

  .s360a-checkout-fields {
    grid-template-columns: 1fr;
  }

  .s360a-field--full {
    grid-column: auto;
  }

  .s360a-checkout-product {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .s360a-checkout-product > b {
    margin-left: 79px;
    margin-top: -22px;
  }

  .s360a-known-contact > b {
    display: none;
  }

  .s360a-public-footer .s360a-public-container {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
  }

  .s360a-public-footer a {
    margin: 0 15px 0 0;
  }

  .s360a-certificate-page {
    padding: 8px;
  }

  .s360a-certificate {
    aspect-ratio: auto;
    min-height: 680px;
    padding: 10px;
  }

  .s360a-certificate-border {
    padding: 20px 12px;
  }

  .s360a-certificate-footer {
    align-items: center;
    flex-direction: column;
    gap: 20px;
  }

  .s360a-certificate-footer div {
    min-width: 230px;
  }

  .s360a-certificate-verify {
    max-width: calc(100% - 20px);
    position: static;
  }
}

@media print {
  @page {
    margin: 0;
    size: A4 landscape;
  }

  html,
  body.s360a-certificate-page {
    height: 210mm;
    width: 297mm;
  }

  .s360a-certificate-page {
    background: #fff;
    display: block;
    padding: 0;
  }

  .s360a-certificate {
    aspect-ratio: auto;
    box-shadow: none;
    height: 210mm;
    max-width: none;
    page-break-after: avoid;
    page-break-inside: avoid;
    width: 297mm;
  }

  .s360a-certificate-actions {
    display: none;
  }
}

/* Academy 1.1 — premium members experience */
body.s360a-academy-mode {
  background: #070c14 !important;
  color: #f7f9fc;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body.s360a-academy-mode > header,
body.s360a-academy-mode > footer,
body.s360a-academy-mode #header,
body.s360a-academy-mode header:not(.s360a-member-header),
body.s360a-academy-mode nav.navbar,
body.s360a-academy-mode .navbar:not(.s360a-member-header),
body.s360a-academy-mode .customers-nav,
body.s360a-academy-mode .customer-top-menu,
body.s360a-academy-mode #customer_menu,
body.s360a-academy-mode .s360a-academy-legacy-hidden {
  display: none !important;
}

body.s360a-academy-mode #wrapper,
body.s360a-academy-mode .customers-content {
  background: #070c14 !important;
  margin: 0 !important;
  min-height: 100vh;
  padding: 0 !important;
  top: auto !important;
}

.s360a-member-host {
  margin: 0 !important;
  max-width: none !important;
  padding: 0 !important;
  width: 100% !important;
}

.s360a-member-host > .row,
.s360a-member-host > .row > [class*="col-"] {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

.s360a-member-app {
  --s360a-member-bg: #070c14;
  --s360a-member-surface: #0e1725;
  --s360a-member-surface-2: #131f31;
  --s360a-member-line: rgba(255, 255, 255, .09);
  --s360a-member-muted: #8f9aae;
  background: var(--s360a-member-bg);
  color: #f7f9fc;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-height: 100vh;
  position: relative;
}

.s360a-member-app *,
.s360a-member-app *::before,
.s360a-member-app *::after {
  box-sizing: border-box;
}

.s360a-member-app a {
  text-decoration: none;
}

.s360a-member-main {
  min-height: calc(100vh - 80px);
}

.s360a-member-container {
  margin: 0 auto;
  max-width: 1440px;
  padding-left: 42px;
  padding-right: 42px;
  width: 100%;
}

.s360a-member-header {
  backdrop-filter: blur(22px);
  background: rgba(7, 12, 20, .88);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  position: sticky;
  top: 0;
  z-index: 999;
}

.s360a-member-header-inner {
  align-items: center;
  display: flex;
  height: 78px;
  margin: 0 auto;
  max-width: 1500px;
  padding: 0 32px;
}

.s360a-member-brand {
  align-items: center;
  color: #fff !important;
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
}

.s360a-member-brand-mark {
  align-items: center;
  background: linear-gradient(145deg, var(--s360a-primary), #ff8b60);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(var(--s360-primary-rgb, 241, 90, 36), .28);
  color: #fff;
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.s360a-member-brand > span:last-child {
  display: grid;
}

.s360a-member-brand strong {
  font-size: 15px;
  letter-spacing: -.01em;
}

.s360a-member-brand small {
  color: var(--s360a-member-muted);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.s360a-member-nav {
  align-items: center;
  display: flex;
  gap: 12px;
  margin-left: 48px;
}

.s360a-member-nav a {
  border-radius: 10px;
  color: #9ca7b9 !important;
  font-size: 13px;
  font-weight: 650;
  padding: 10px 13px;
  transition: .18s ease;
}

.s360a-member-nav a:hover,
.s360a-member-nav a.is-active {
  background: rgba(255, 255, 255, .07);
  color: #fff !important;
}

.s360a-member-nav a.is-active {
  box-shadow: inset 0 -2px 0 var(--s360a-primary);
}

.s360a-member-nav-account {
  display: inline-block;
}

.s360a-member-profile {
  align-items: center;
  color: #fff !important;
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.s360a-member-profile > span {
  align-items: center;
  background: linear-gradient(145deg, #29364a, #172235);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.s360a-member-profile > div {
  display: grid;
}

.s360a-member-profile strong {
  font-size: 12px;
}

.s360a-member-profile small {
  color: var(--s360a-member-muted);
  font-size: 10px;
}

.s360a-member-menu-toggle {
  background: transparent;
  border: 0;
  display: none;
  margin-left: auto;
  padding: 8px;
}

.s360a-member-menu-toggle span {
  background: #fff;
  display: block;
  height: 2px;
  margin: 4px 0;
  width: 23px;
}

.s360a-member-hero {
  align-items: flex-end;
  background:
    radial-gradient(circle at 75% 20%, rgba(var(--s360-primary-rgb, 241, 90, 36), .22), transparent 28%),
    linear-gradient(145deg, #14233a, #070c14 70%);
  display: flex;
  min-height: 490px;
  overflow: hidden;
  position: relative;
}

.s360a-member-hero-media {
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  right: 0;
  top: 0;
  width: 68%;
}

.s360a-member-hero-overlay {
  background:
    linear-gradient(90deg, #070c14 10%, rgba(7, 12, 20, .91) 37%, rgba(7, 12, 20, .25) 75%, #070c14 100%),
    linear-gradient(0deg, #070c14 0%, transparent 42%);
  inset: 0;
  position: absolute;
}

.s360a-member-hero-content {
  padding-bottom: 68px;
  padding-top: 90px;
  position: relative;
  z-index: 2;
}

.s360a-member-kicker {
  color: var(--s360a-primary);
  display: block;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.s360a-member-hero h1 {
  color: #fff;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1.02;
  margin: 12px 0 17px;
  max-width: 780px;
}

.s360a-member-hero p {
  color: #bdc6d4;
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
  max-width: 620px;
}

.s360a-member-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.s360a-member-hero-meta span {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 999px;
  color: #dce2eb;
  font-size: 11px;
  padding: 7px 11px;
}

.s360a-member-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.s360a-member-btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 11px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
  justify-content: center;
  min-height: 47px;
  padding: 0 19px;
  transition: .18s ease;
}

.s360a-member-btn:hover {
  color: #fff;
  transform: translateY(-1px);
}

.s360a-member-btn--primary {
  background: var(--s360a-primary);
  box-shadow: 0 12px 28px rgba(var(--s360-primary-rgb, 241, 90, 36), .25);
  color: #fff !important;
}

.s360a-member-btn--glass {
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .12);
  color: #fff !important;
}

.s360a-member-dashboard,
.s360a-catalog-premium {
  padding-bottom: 80px;
  position: relative;
}

.s360a-member-toolbar {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-top: -22px;
  position: relative;
  z-index: 5;
}

.s360a-member-search,
.s360a-cinema-search {
  align-items: center;
  background: rgba(17, 27, 42, .94);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .22);
  display: flex;
  max-width: 460px;
  min-height: 52px;
  padding: 0 15px;
  width: 100%;
}

.s360a-member-search > span,
.s360a-cinema-search > span {
  color: #7f8ba0;
  font-size: 24px;
  line-height: 1;
  margin-right: 9px;
}

.s360a-member-search input,
.s360a-cinema-search input {
  background: transparent;
  border: 0;
  box-shadow: none !important;
  color: #fff;
  font-size: 13px;
  outline: 0;
  width: 100%;
}

.s360a-member-search input::placeholder,
.s360a-cinema-search input::placeholder {
  color: #748094;
}

.s360a-member-stats {
  align-items: center;
  background: rgba(17, 27, 42, .94);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .2);
  display: flex;
  min-height: 52px;
}

.s360a-member-stats > div {
  align-items: baseline;
  border-left: 1px solid var(--s360a-member-line);
  display: flex;
  gap: 7px;
  padding: 0 18px;
}

.s360a-member-stats > div:first-child {
  border-left: 0;
}

.s360a-member-stats strong {
  color: #fff;
  font-size: 18px;
}

.s360a-member-stats span {
  color: var(--s360a-member-muted);
  font-size: 10px;
}

.s360a-stream-section {
  margin-top: 58px;
}

.s360a-stream-section-head,
.s360a-cinema-row-head {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 17px;
}

.s360a-stream-section h2,
.s360a-cinema-row h2,
.s360a-catalog-premium h2 {
  color: #fff;
  font-size: 25px;
  font-weight: 780;
  letter-spacing: -.035em;
  margin: 5px 0 0;
}

.s360a-stream-controls {
  display: flex;
  gap: 7px;
}

.s360a-stream-controls button {
  align-items: center;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 9px;
  color: #fff;
  display: inline-flex;
  font-size: 24px;
  height: 37px;
  justify-content: center;
  line-height: 1;
  width: 37px;
}

.s360a-stream-controls button:hover {
  background: var(--s360a-primary);
  border-color: var(--s360a-primary);
}

.s360a-stream-rail,
.s360a-cinema-rail {
  display: grid;
  gap: 18px;
  grid-auto-columns: minmax(270px, 315px);
  grid-auto-flow: column;
  overflow-x: auto;
  padding: 4px 3px 16px;
  scroll-behavior: smooth;
  scrollbar-color: rgba(255, 255, 255, .15) transparent;
  scrollbar-width: thin;
}

.s360a-stream-card {
  background: #0f1928;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 15px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
  min-width: 0;
  overflow: hidden;
  transition: .22s ease;
}

.s360a-stream-card:hover {
  border-color: rgba(var(--s360-primary-rgb, 241, 90, 36), .55);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .34);
  transform: translateY(-4px);
}

.s360a-stream-card-cover {
  align-items: center;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #27364d, #0e1725);
  color: #fff !important;
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.s360a-stream-card-cover img {
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
  width: 100%;
}

.s360a-stream-card:hover .s360a-stream-card-cover img {
  transform: scale(1.045);
}

.s360a-stream-card-fallback {
  color: #fff;
  font-size: 42px;
  font-weight: 900;
}

.s360a-stream-card-shade {
  background: linear-gradient(0deg, rgba(3, 7, 13, .68), transparent 62%);
  inset: 0;
  position: absolute;
}

.s360a-stream-play {
  align-items: center;
  backdrop-filter: blur(9px);
  background: rgba(255, 255, 255, .92);
  border-radius: 50%;
  color: #101825;
  display: flex;
  font-size: 11px;
  height: 42px;
  justify-content: center;
  opacity: 0;
  padding-left: 2px;
  position: absolute;
  transform: scale(.82);
  transition: .2s ease;
  width: 42px;
}

.s360a-stream-card:hover .s360a-stream-play {
  opacity: 1;
  transform: scale(1);
}

.s360a-stream-badge {
  background: var(--s360a-primary);
  border-radius: 999px;
  color: #fff;
  font-size: 9px;
  font-weight: 850;
  left: 11px;
  padding: 5px 8px;
  position: absolute;
  text-transform: uppercase;
  top: 11px;
}

.s360a-stream-card-body {
  padding: 16px;
}

.s360a-stream-card-meta {
  display: flex;
  gap: 7px;
}

.s360a-stream-card-meta span {
  color: var(--s360a-primary);
  font-size: 9px;
  font-weight: 750;
  text-transform: uppercase;
}

.s360a-stream-card-meta span + span {
  color: #748196;
}

.s360a-stream-card h3 {
  font-size: 16px;
  line-height: 1.35;
  margin: 6px 0 5px;
}

.s360a-stream-card h3 a {
  color: #fff !important;
}

.s360a-stream-card-body > p,
.s360a-stream-card-body > small {
  color: #7f8ba0;
  display: block;
  font-size: 10px;
  margin: 0;
}

.s360a-stream-progress {
  align-items: center;
  display: flex;
  gap: 9px;
  margin-top: 15px;
}

.s360a-stream-progress progress {
  appearance: none;
  background: #253145;
  border: 0;
  border-radius: 999px;
  height: 5px;
  overflow: hidden;
  width: 100%;
}

.s360a-stream-progress progress::-webkit-progress-bar {
  background: #253145;
}

.s360a-stream-progress progress::-webkit-progress-value {
  background: var(--s360a-primary);
}

.s360a-stream-progress progress::-moz-progress-bar {
  background: var(--s360a-primary);
}

.s360a-stream-progress span {
  color: #cbd3df;
  font-size: 9px;
}

.s360a-stream-price {
  color: #fff;
  display: block;
  font-size: 14px;
  margin-top: 14px;
}

.s360a-stream-card-action {
  color: #dbe1ea !important;
  display: block;
  font-size: 11px;
  font-weight: 750;
  margin-top: 13px;
}

.s360a-stream-card-action span {
  color: var(--s360a-primary);
}

.s360a-member-empty,
.s360a-member-certificate-empty {
  align-items: center;
  background: linear-gradient(145deg, #101b2b, #0b1320);
  border: 1px solid var(--s360a-member-line);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 230px;
  padding: 30px;
  text-align: center;
}

.s360a-member-empty > span,
.s360a-member-certificate-empty > span {
  color: var(--s360a-primary);
  font-size: 38px;
}

.s360a-member-empty h3 {
  color: #fff;
  margin: 10px 0 4px;
}

.s360a-member-empty p,
.s360a-member-certificate-empty p {
  color: var(--s360a-member-muted);
  margin: 0 0 17px;
}

.s360a-member-certificate-empty {
  flex-direction: row;
  gap: 18px;
  justify-content: flex-start;
  min-height: 110px;
  text-align: left;
}

.s360a-member-certificate-empty > div {
  display: grid;
}

.s360a-member-certificate-empty strong {
  color: #fff;
}

.s360a-member-certificate-empty p {
  margin: 3px 0 0;
}

.s360a-member-certificates {
  display: grid;
  gap: 11px;
}

.s360a-member-certificates > a {
  align-items: center;
  background: #0f1928;
  border: 1px solid var(--s360a-member-line);
  border-radius: 14px;
  color: #fff !important;
  display: flex;
  gap: 13px;
  padding: 15px;
}

.s360a-member-certificates > a > span {
  align-items: center;
  background: rgba(20, 166, 106, .15);
  border-radius: 10px;
  color: #35d598;
  display: flex;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.s360a-member-certificates > a > div {
  display: grid;
}

.s360a-member-certificates small {
  color: var(--s360a-member-muted);
}

.s360a-member-certificates b {
  color: var(--s360a-primary);
  font-size: 11px;
  margin-left: auto;
}

.s360a-member-footer {
  align-items: center;
  background: #060a11;
  border-top: 1px solid var(--s360a-member-line);
  color: var(--s360a-member-muted);
  display: flex;
  font-size: 11px;
  justify-content: space-between;
  min-height: 100px;
  padding: 25px 42px;
}

.s360a-member-footer > div {
  display: grid;
}

.s360a-member-footer strong {
  color: #fff;
}

.s360a-member-footer nav {
  display: flex;
  gap: 18px;
}

.s360a-member-footer a {
  color: var(--s360a-member-muted) !important;
}

.s360a-member-footer a:hover {
  color: #fff !important;
}

.s360a-toast {
  background: #182438;
  border: 1px solid rgba(255, 255, 255, .12);
  border-left: 4px solid var(--s360a-primary);
  border-radius: 12px;
  bottom: 24px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .34);
  color: #fff;
  font-size: 12px;
  max-width: 360px;
  opacity: 0;
  padding: 14px 17px;
  pointer-events: none;
  position: fixed;
  right: 24px;
  transform: translateY(15px);
  transition: .2s ease;
  z-index: 10020;
}

.s360a-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.s360a-toast.is-error {
  border-left-color: var(--s360a-danger);
}

/* Premium catalog inside members area */
.s360a-member-hero--catalog {
  min-height: 430px;
}

.s360a-catalog-premium {
  padding-top: 55px;
}

.s360a-catalog-premium-head {
  align-items: flex-end;
  display: flex;
  gap: 30px;
  justify-content: space-between;
}

.s360a-catalog-premium-head p {
  color: var(--s360a-member-muted);
  margin: 5px 0 0;
}

.s360a-category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.s360a-category-chips button {
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 999px;
  color: #a9b3c2;
  font-size: 11px;
  font-weight: 650;
  padding: 8px 13px;
  transition: .18s ease;
}

.s360a-category-chips button:hover,
.s360a-category-chips button.is-active {
  background: var(--s360a-primary);
  border-color: var(--s360a-primary);
  color: #fff;
}

.s360a-catalog-premium-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 30px;
}

.s360a-filter-empty {
  color: var(--s360a-member-muted);
  display: none;
  padding: 50px 0;
  text-align: center;
}

/* Premium player */
.s360a-academy-mode .s360a-player-shell {
  background: #080e18;
  grid-template-columns: 320px minmax(0, 1fr);
  min-height: calc(100vh - 78px);
}

.s360a-academy-mode .s360a-player-sidebar {
  background: #0d1624;
  border-color: rgba(255, 255, 255, .08);
  max-height: calc(100vh - 78px);
  top: 78px;
}

.s360a-academy-mode .s360a-player-course,
.s360a-academy-mode .s360a-player-section {
  border-color: rgba(255, 255, 255, .08);
}

.s360a-academy-mode .s360a-player-course > a,
.s360a-academy-mode .s360a-player-section a small {
  color: #7f8ba0;
}

.s360a-academy-mode .s360a-player-course h2 {
  color: #fff;
}

.s360a-academy-mode .s360a-progress > div {
  color: #aeb8c7;
}

.s360a-academy-mode .s360a-progress progress,
.s360a-academy-mode .s360a-progress progress::-webkit-progress-bar {
  background: #263248;
}

.s360a-academy-mode .s360a-player-section > strong {
  color: #738096;
}

.s360a-academy-mode .s360a-player-section a {
  color: #aeb8c7;
}

.s360a-academy-mode .s360a-player-section a:hover,
.s360a-academy-mode .s360a-player-section a.is-active {
  background: rgba(var(--s360-primary-rgb, 241, 90, 36), .13);
  color: #fff;
}

.s360a-academy-mode .s360a-player-section a > span {
  border-color: #344156;
}

.s360a-academy-mode .s360a-player-main {
  max-width: 1120px;
  padding: 38px 42px 55px;
}

.s360a-academy-mode .s360a-player-top h1 {
  color: #fff;
  font-size: 29px;
}

.s360a-academy-mode .s360a-mobile-curriculum {
  background: #152033;
  border-color: rgba(255, 255, 255, .1);
  color: #fff;
}

.s360a-academy-mode .s360a-video--player {
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .38);
}

.s360a-academy-mode .s360a-player-content {
  background: #0f1928;
  border-color: rgba(255, 255, 255, .08);
  color: #b7c0ce;
}

.s360a-academy-mode .s360a-material-download {
  background: #152033;
  border-color: rgba(255, 255, 255, .09);
  color: #fff;
}

.s360a-academy-mode .s360a-player-actions .btn {
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 750;
  min-height: 43px;
  padding: 10px 16px;
}

.s360a-academy-mode .s360a-player-actions .btn-primary {
  background: var(--s360a-primary);
  border-color: var(--s360a-primary);
}

.s360a-academy-mode .s360a-player-actions .btn-default {
  background: #152033;
  color: #fff;
}

.s360a-academy-mode .s360a-client-wrap {
  margin: 0 auto;
  max-width: 1200px;
  min-height: 65vh;
  padding: 60px 30px;
}

.s360a-academy-mode .s360a-client-wrap .s360a-heading h1,
.s360a-academy-mode .s360a-client-wrap .panel-body strong {
  color: #fff;
}

.s360a-academy-mode .s360a-client-wrap .panel-body {
  background: #0f1928;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  color: var(--s360a-member-muted);
}

/* Public cinematic catalog */
.s360a-public-cinema {
  background: #070c14;
  color: #fff;
}

.s360a-public-cinema .s360a-public-header {
  background: rgba(7, 12, 20, .86);
  border-color: rgba(255, 255, 255, .07);
}

.s360a-public-cinema .s360a-brand,
.s360a-public-cinema .s360a-public-header nav a {
  color: #fff;
}

.s360a-public-cinema .s360a-public-btn--ghost {
  border-color: rgba(255, 255, 255, .14);
}

.s360a-cinema-hero {
  align-items: flex-end;
  background:
    radial-gradient(circle at 76% 18%, rgba(var(--s360-primary-rgb, 241, 90, 36), .2), transparent 28%),
    linear-gradient(145deg, #17243a, #070c14);
  display: flex;
  min-height: 620px;
  overflow: hidden;
  position: relative;
}

.s360a-cinema-hero-image {
  height: 100%;
  object-fit: cover;
  position: absolute;
  right: 0;
  top: 0;
  width: 72%;
}

.s360a-cinema-hero-shade {
  background:
    linear-gradient(90deg, #070c14 8%, rgba(7, 12, 20, .9) 37%, rgba(7, 12, 20, .2) 72%, #070c14 100%),
    linear-gradient(0deg, #070c14, transparent 48%);
  inset: 0;
  position: absolute;
}

.s360a-cinema-hero-content {
  padding-bottom: 90px;
  position: relative;
}

.s360a-cinema-hero h1 {
  color: #fff;
  font-size: clamp(40px, 5.6vw, 72px);
  letter-spacing: -.055em;
  line-height: 1;
  margin: 13px 0 20px;
  max-width: 800px;
}

.s360a-cinema-hero-content > p {
  color: #bdc6d3;
  font-size: 17px;
  line-height: 1.65;
  max-width: 650px;
}

.s360a-cinema-hero-course {
  display: flex;
  gap: 10px;
  margin: 25px 0 18px;
}

.s360a-cinema-hero-course strong {
  color: #fff;
}

.s360a-cinema-hero-course span {
  color: var(--s360a-primary);
}

.s360a-cinema-library {
  min-height: 500px;
  padding: 0 0 85px;
}

.s360a-cinema-toolbar {
  align-items: flex-start;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-top: -25px;
  position: relative;
  z-index: 5;
}

.s360a-cinema-toolbar .s360a-category-chips {
  justify-content: flex-end;
  margin-top: 7px;
}

.s360a-cinema-row {
  margin-top: 58px;
}

.s360a-cinema-row-head small {
  color: var(--s360a-primary);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.s360a-cinema-card {
  background: #0f1928;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 15px;
  overflow: hidden;
  transition: .22s ease;
}

.s360a-cinema-card:hover {
  border-color: rgba(var(--s360-primary-rgb, 241, 90, 36), .55);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .34);
  transform: translateY(-5px);
}

.s360a-cinema-card > a {
  color: inherit;
}

.s360a-cinema-card-cover {
  align-items: center;
  aspect-ratio: 16 / 9;
  background: linear-gradient(145deg, #28364c, #0b1320);
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.s360a-cinema-card-cover img {
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
  width: 100%;
}

.s360a-cinema-card:hover img {
  transform: scale(1.045);
}

.s360a-cinema-card-cover > span {
  font-size: 42px;
  font-weight: 900;
}

.s360a-cinema-card-cover i {
  align-items: center;
  background: rgba(255, 255, 255, .92);
  border-radius: 50%;
  color: #121a27;
  display: flex;
  font-size: 11px;
  font-style: normal;
  height: 42px;
  justify-content: center;
  opacity: 0;
  padding-left: 2px;
  position: absolute;
  transform: scale(.8);
  transition: .2s ease;
  width: 42px;
}

.s360a-cinema-card:hover .s360a-cinema-card-cover i {
  opacity: 1;
  transform: scale(1);
}

.s360a-cinema-card-cover b {
  background: var(--s360a-primary);
  border-radius: 999px;
  font-size: 9px;
  left: 11px;
  padding: 5px 8px;
  position: absolute;
  text-transform: uppercase;
  top: 11px;
}

.s360a-cinema-card-body {
  padding: 17px;
}

.s360a-cinema-card-body small {
  color: var(--s360a-primary);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.s360a-cinema-card-body h3 {
  color: #fff;
  font-size: 17px;
  margin: 5px 0 7px;
}

.s360a-cinema-card-body p {
  color: #7f8ba0;
  font-size: 11px;
  line-height: 1.5;
  min-height: 33px;
}

.s360a-cinema-card-body > div {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .07);
  display: flex;
  font-size: 10px;
  justify-content: space-between;
  margin-top: 13px;
  padding-top: 12px;
}

.s360a-cinema-card-body > div span {
  color: #7f8ba0;
}

.s360a-cinema-card-body > div strong {
  color: #fff;
}

.s360a-public-cinema .s360a-public-footer {
  border-top: 1px solid rgba(255, 255, 255, .07);
}

@media (max-width: 1180px) {
  .s360a-member-nav {
    margin-left: 22px;
  }

  .s360a-member-nav a {
    padding-left: 9px;
    padding-right: 9px;
  }

  .s360a-member-nav-account {
    display: none !important;
  }

  .s360a-catalog-premium-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .s360a-member-container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .s360a-member-profile > div {
    display: none;
  }

  .s360a-member-menu-toggle {
    display: block;
  }

  .s360a-member-profile {
    margin-left: 8px;
  }

  .s360a-member-nav {
    background: #0e1725;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .35);
    display: none;
    flex-direction: column;
    left: 20px;
    margin: 0;
    padding: 9px;
    position: absolute;
    right: 20px;
    top: 68px;
  }

  .s360a-member-nav.is-open {
    display: flex;
  }

  .s360a-member-nav a {
    width: 100%;
  }

  .s360a-member-nav-account {
    display: block !important;
  }

  .s360a-member-toolbar,
  .s360a-catalog-premium-head,
  .s360a-cinema-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .s360a-member-stats {
    justify-content: center;
  }

  .s360a-catalog-premium-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .s360a-cinema-toolbar .s360a-category-chips {
    justify-content: flex-start;
  }

  .s360a-academy-mode .s360a-player-sidebar {
    top: 0;
  }
}

@media (max-width: 620px) {
  .s360a-member-header-inner {
    height: 66px;
    padding: 0 16px;
  }

  .s360a-member-brand > span:last-child {
    display: none;
  }

  .s360a-member-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .s360a-member-hero {
    min-height: 440px;
  }

  .s360a-member-hero-media,
  .s360a-cinema-hero-image {
    opacity: .48;
    width: 100%;
  }

  .s360a-member-hero-overlay,
  .s360a-cinema-hero-shade {
    background: linear-gradient(0deg, #070c14 2%, rgba(7, 12, 20, .55) 80%, rgba(7, 12, 20, .75));
  }

  .s360a-member-hero-content {
    padding-bottom: 48px;
    padding-top: 70px;
  }

  .s360a-member-hero h1 {
    font-size: 38px;
  }

  .s360a-member-toolbar {
    margin-top: -16px;
  }

  .s360a-member-stats {
    justify-content: stretch;
  }

  .s360a-member-stats > div {
    display: grid;
    flex: 1;
    gap: 0;
    padding: 8px 11px;
    text-align: center;
  }

  .s360a-stream-section {
    margin-top: 45px;
  }

  .s360a-stream-section h2,
  .s360a-cinema-row h2,
  .s360a-catalog-premium h2 {
    font-size: 21px;
  }

  .s360a-stream-rail,
  .s360a-cinema-rail {
    grid-auto-columns: 82%;
  }

  .s360a-stream-controls {
    display: none;
  }

  .s360a-catalog-premium-grid {
    grid-template-columns: 1fr;
  }

  .s360a-category-chips {
    flex-wrap: nowrap;
    margin-left: -16px;
    margin-right: -16px;
    overflow-x: auto;
    padding: 0 16px 8px;
  }

  .s360a-category-chips button {
    flex: 0 0 auto;
  }

  .s360a-member-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
    padding: 28px 16px;
  }

  .s360a-member-footer nav {
    flex-wrap: wrap;
  }

  .s360a-toast {
    bottom: 14px;
    left: 14px;
    max-width: none;
    right: 14px;
  }

  .s360a-academy-mode .s360a-player-main {
    padding: 24px 14px 40px;
  }

  .s360a-academy-mode .s360a-player-top h1 {
    font-size: 22px;
  }

  .s360a-cinema-hero {
    min-height: 530px;
  }

  .s360a-cinema-hero-content {
    padding-bottom: 70px;
  }

  .s360a-cinema-hero h1 {
    font-size: 42px;
  }
}
