/* Single Brand Template Styles */

/* Container with max-width */
.single-brand-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Breadcrumb */
.single-brand-breadcrumb {
  display:flex;
  font-size: 16px;
  margin-bottom: 15px;
  margin-top: 20px;
  color: #A0A6BC;
  font-weight: 400;
  font-family: 'sofia-sans', sans-serif;
}

.single-brand-breadcrumb a {
  color: #E6C97F;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.single-brand-breadcrumb a:hover {
  color: #8A96C7;
  text-decoration: none;
}

.single-brand-breadcrumb .separator {
  margin: 0 8px;
  color: #A0A6BC;
}

.single-brand-breadcrumb .current {
  color: #A0A6BC;
  font-weight: 400;
}

/* Page Header */
.brand-page-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-top: 1rem;
  margin:0 auto;
}

.brand-page-title {
  font-family: 'khand', sans-serif;
  font-size: 3rem;
  color: #E9ECF2;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  font-weight: 700;
  line-height: 1;
}

.brand-page-subtitle {
  font-family: 'khand', sans-serif !important;
  font-size: 32px !important;
  color: #CEE5F2;;
  margin: 0.5rem 0 1rem 0;
  font-weight: 700 !important;
  line-height: 1.2;
  letter-spacing:1px !important;
  text-transform:uppercase;
}

.brand-page-subtitle a {
  color: #CEE5F2;
  text-decoration: none;
  transition: color 0.2s ease;
}

.brand-page-subtitle a:hover {
  color: #E6C97F;
}

.brand-logo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0.75rem 0 0.5rem 0;
  gap: 0rem;
}

/* Brand Info Cards - Centered with equal widths */
.brand-info-cards {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 2rem 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.brand-info-card {
  background: #121921;
  border: 1px solid rgba(160, 166, 188, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  min-width:300px;
}

.brand-info-card:hover {
  border-color: rgba(206, 229, 242, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.brand-info-card.clickable-card:hover {
  border-color: rgba(230, 201, 127, 0.4);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.brand-info-card .info-card-header {
  padding: 8px 16px;
  border-bottom: 1px solid rgba(160, 166, 188, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #0e151b;
}

.brand-info-card .info-card-icon {
  color: #CEE5F2;
  font-size: 14px;
  width: 16px;
  text-align: center;
}

.brand-info-card .info-card-title {
  color: var(--c-accent-blue, #CEE5F2);
  font-size: 14px !important;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "sofia-sans", sans-serif;
}

.brand-info-card .info-card-content {
  padding: 12px 16px;
  background: #121921;
  text-align: center;
}

.brand-info-card .info-card-value {
  color: #E9ECF2;
  font-size: 16px;
  font-weight: 500;
  font-family: "sofia-sans", sans-serif;
  display: block;
  line-height: 1.3;
}

.brand-info-card .info-card-link {
  color: #E9ECF2;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.brand-info-card .info-card-link:hover {
  color: #E6C97F;
}

.brand-info-card .info-card-link i {
  font-size: 12px;
  opacity: 0.8;
}

/* Parent Promotion Link - Gold Color */
.brand-info-card .info-card-link.parent-promotion-link {
  color: #E6C97F;
}

.brand-info-card .info-card-link.parent-promotion-link:hover,
.brand-info-card .info-card-link.parent-promotion-link:hover .info-card-value {
  color: #8A96C7;
}

.brand-info-card .info-card-link.parent-promotion-link .info-card-value {
  color: #E6C97F;
}

/* Visit Site Link - Gold Color */
.brand-info-card .info-card-link.visit-site-link {
  color: #E6C97F;
}

.brand-info-card .info-card-link.visit-site-link:hover,
.brand-info-card .info-card-link.visit-site-link:hover .info-card-value,
.brand-info-card .info-card-link.visit-site-link:hover i {
  color: #8A96C7;
  opacity: 1;
}

.brand-info-card .info-card-link.visit-site-link .info-card-value {
  color: #E6C97F;
}

.brand-status-pill {
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 14px !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'sofia-sans', sans-serif;
  max-width:100px;
  margin-top: 0.25rem;
  margin-bottom: 0;
}

.brand-status-pill.status-active {
  background: rgba(76, 175, 80, 0.2);
  color: #4CAF50;
  border: 1px solid rgba(76, 175, 80, 0.4);
}

.brand-status-pill.status-inactive {
  background: #1A242E;
  color:#CEE5F2;
  border: 1px solid rgba(255,255,255,.08);
}

.brand-status-pill.status-defunct {
  background: rgba(244, 67, 54, 0.2);
  color: #f44336;
  border: 1px solid rgba(244, 67, 54, 0.4);
}

.brand-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  gap: 1.5rem;
  margin: 0rem 0 1rem 0;
}

.brand-logo {
  width: 400px;
  min-width: 180px;
  max-width: 500px;
  border-radius: 8px;
  background: #121921;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px;
  display: block;
  margin: 0 auto;
}

.brand-history-section,
.brand-gallery-section,
.brand-roster-section,
.brand-championships-section {
  margin: 0 0 6rem 0;
  padding: 0;
}

.brand-section-title {
  font-family: 'khand', sans-serif !important;
  font-size: 32px !important;
  color: #E9ECF2;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin: 0 0 0rem 0;
  font-weight: 700 !important;
  background: none;
  border: none;
  padding: 0;
}

/* Roster Header with Filter */
.brand-roster-section .roster-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  flex-wrap: nowrap;
  gap: 1rem;
}

.brand-roster-section .roster-filter-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
  flex-shrink: 0;
}

.brand-roster-section .roster-filter-label {
  font-family: 'sofia-sans', sans-serif;
  font-size: 14px;
  color: #E9ECF2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(230, 201, 127, 0.3);
}

.brand-roster-section .roster-filter-select {
  background: rgba(26, 36, 46, 0.8);
  border: 1px solid rgba(160, 166, 188, 0.2);
  border-radius: 8px;
  color: #E9ECF2;
  padding: 8px 32px 8px 12px;
  font-family: 'sofia-sans', sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23CEE5F2' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.brand-roster-section .roster-filter-select:hover {
  border-color: rgba(206, 229, 242, 0.4);
  background-color: rgba(26, 36, 46, 0.9);
}

.brand-roster-section .roster-filter-select:focus {
  outline: none;
  border-color: #CEE5F2;
  box-shadow: 0 0 0 2px rgba(206, 229, 242, 0.1);
}

/* Wrestler Count Display */
.brand-roster-section .roster-count-display {
  font-family: 'sofia-sans', sans-serif;
  font-size: 14px;
  text-align: right;
  color: #a0a6bc;
  margin-bottom: 1rem;
  padding: 8px 0;
  margin-right: 2px;
  white-space: nowrap;
}

/* Wrestlers Grid */
.single-brand-wrestlers-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 1rem;
}

.single-brand-wrestler-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: radial-gradient(ellipse at center, #1A242E 0%, #0A0E13 70%);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.single-brand-wrestler-card:hover {
  transform: translateY(-4px);
  border-color: #E6C97F;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* HOF Card Styling */


.single-brand-wrestler-card.single-brand-hof-card:hover {
  border-color: #ffd700;
  box-shadow: 0 6px 22px rgba(255, 215, 0, 0.12);
}

.single-brand-wrestler-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.single-brand-wrestler-image {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: radial-gradient(ellipse at center, #1A242E 0%, #0A0E13 70%);
}

.single-brand-wrestler-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
  padding-top: 5px;
  transition: transform 0.3s ease;
}

.single-brand-wrestler-card:hover .single-brand-wrestler-image img {
  transform: scale(1.05);
}



/* HOF Card Image - Gold Glow Background (no opaque base so container gold shows through) */
.single-brand-wrestler-card.single-brand-hof-card .single-brand-wrestler-image img {
  padding-top: 0;
  
}

.single-brand-wrestler-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(transparent, rgba(10, 14, 19, 0.4));
  pointer-events: none;
}

/* HOF Badge */
.single-brand-hof-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: linear-gradient(135deg, #ffe98a 0%, #ffd700 50%, #ffcf33 100%);
  color: #0A0E13;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'sofia-sans', sans-serif;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.12), 0 4px 10px rgba(255, 215, 0, 0.18);
  z-index: 2;
}

.single-brand-hof-badge::before {
  content: "â˜…";
  font-size: .7rem;
  line-height: 1;
  display: inline-block;
  margin-right: 0.3em;
  opacity: 0.95;
}

/* Champion Overlay Badge */
.single-brand-champion-overlay-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: linear-gradient(135deg, #e6c97f 0%, #b8961f 100%);
  color: #1a242e;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 4px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0px;
  font-family: 'sofia-sans', sans-serif;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  z-index: 2;
  text-align: center;
  line-height:1;
  width:70% !important;
}

.single-brand-wrestler-content {
  padding: 15px;
  padding-bottom:20px;
  margin-bottom:-20px;
  overflow:hidden;
  text-align: left;
  background:#121921;
}

.single-brand-wrestler-header {
  display: flex;
  flex-direction: column;
  align-items: left;
}

.single-brand-wrestler-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.single-brand-wrestler-name {
  font-family: 'sofia-sans', sans-serif;
  font-size: 1.2rem !important;
  font-weight: 500;
  color: #E9ECF2;
  text-transform: uppercase;
  letter-spacing:0px !important;
  margin: 0;
  word-wrap: break-word;
  flex: 1;
}

.single-brand-wrestler-card:hover .single-brand-wrestler-name {
  color: #E6C97F;
}

/* Height/Weight Display */
.single-brand-physical-stats {
  margin-top: -3px !important;
  margin-bottom:0px !important;
}

.single-brand-physical-stats .single-brand-stat-item {
  font-size: 16px !important;
  color: #a0a6bc;
  font-weight: 500;
}

/* Wrestler Pills Container */
.single-brand-wrestler-pills-container {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 5px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* Active/Former Pills */
.single-brand-wrestler-roster-status {
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'sofia-sans', sans-serif;
  white-space: nowrap;
  display: inline-block;
}

.single-brand-wrestler-roster-status.single-brand-status-active {
  background: rgba(76, 175, 80, 0.2);
  color: #4CAF50;
  border: 1px solid rgba(76, 175, 80, 0.4);
}

.single-brand-wrestler-roster-status.single-brand-status-former {
  background: rgba(160, 166, 188, 0.2);
  color: #A0A6BC;
  border: 1px solid rgba(160, 166, 188, 0.3);
}

/* Wrestler Role Pills */
.single-brand-wrestler-role-pill {
  font-size: 11px;
  font-weight: 500;
  padding: 2px 6px;
  border-radius: 10px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid transparent;
  font-family: 'sofia-sans', sans-serif;
}

/* Wrestler Role */
.single-brand-wrestler-role-pill.single-brand-role-wrestler {
  background: rgba(206, 229, 242, 0.2);
  color: #CEE5F2;
  border-color: rgba(206, 229, 242, 0.3);
}

/* General Manager Role */
.single-brand-wrestler-role-pill.single-brand-role-general-manager {
  background: rgba(230, 201, 127, 0.2);
  color: #E6C97F;
  border-color: rgba(230, 201, 127, 0.3);
}

/* Manager Role */
.single-brand-wrestler-role-pill.single-brand-role-manager {
  background: rgba(156, 163, 175, 0.2);
  color: #9ca3af;
  border-color: rgba(156, 163, 175, 0.3);
}

/* Commentator Role */
.single-brand-wrestler-role-pill.single-brand-role-commentator {
  background: rgba(139, 92, 246, 0.2);
  color: #a78bfa;
  border-color: rgba(139, 92, 246, 0.3);
}

/* Road Agent Role */
.single-brand-wrestler-role-pill.single-brand-role-road-agent {
  background: rgba(180, 130, 200, 0.15);
  color: #B482C8;
  border-color: rgba(180, 130, 200, 0.3);
}

/* Load More Button */
.brand-roster-section .load-more-btn {
  margin: 40px auto;
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  font-family: "sofia-sans", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: #1a242e;
  color: #e4dcd6;
  border: 1px solid rgba(160, 166, 188, 0.3);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  user-select: none;
  -webkit-user-select: none;
  text-decoration: none;
}

.brand-roster-section .load-more-btn:hover {
  background: #CEE5F2;
  color: #1a242e;
  border-color: #b6c9d5;
  transform: translateY(-2px);
}

.brand-roster-section .load-more-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.no-content {
  text-align: center;
  padding: 40px 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  grid-column: 1 / -1;
}

.brand-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}

.brand-gallery-image {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 6px;
  background: rgba(26, 36, 46, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.2s ease;
}

.brand-gallery-image:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}






.brand-history-expandable {
  position: relative;
  max-height: 150px;
  overflow: hidden;
  transition: max-height 0.5s ease;
  text-align: left;
}

.brand-history-expandable.expanded {
  max-height: 5000px;
}

.brand-history-read-more {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  color: #E6C97F;
  font-family: 'sofia-sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
  padding-left: 0px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
}

.brand-history-read-more i {
  line-height: 1;
  font-size:13px;
}

.brand-history-read-more:hover {
  color: #f5dfa3;
}

.brand-history-read-more.hidden {
  display: none;
}

/* =====================================================
   CHAMPIONSHIPS SECTION STYLES
   Styling matches single-promotion-styles.css
   ===================================================== */
.brand-championships-section {
  margin: 0 0 4rem 0;
  padding: 0;
}

.brand-championships-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 1.5rem;
}

.single-brand-championship-card {
  background: #121921;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 14px rgba(0,0,0,.35);
}

.single-brand-championship-card:hover {
  transform: translateY(-4px);
  border-color: #E6C97F;
  box-shadow: 0 12px 24px rgba(0,0,0,0.4), 0 0 0 1px #E6C97F;
}

.single-brand-championship-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Belt Image Section */
.single-brand-championship-belt {
  height: 180px;
  background: radial-gradient(ellipse at center, #1A242E 0%, #0A0E13 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
    margin-top:-20px;
}

.single-brand-championship-belt img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.single-brand-championship-card:hover .single-brand-championship-belt img {
  transform: scale(1.05);
}

.single-brand-championship-content {
  padding:10px;
  text-align: center;
  background: #121921;
}

.single-brand-championship-name {
  font-family: 'khand', sans-serif !important;
  font-size: 1.7rem !important;
  font-weight: 600 !important;
  color: #E9ECF2;
  text-transform: uppercase;
  margin: 8px 0 8px 0;
  line-height: 1.2;
  letter-spacing: 0 !important;
  transition: color 0.2s ease;
}

.single-brand-championship-card:hover .single-brand-championship-name {
  color: #E6C97F;
}

.single-brand-championship-label {
  font-family: 'sofia-sans', sans-serif;
  font-size: .9rem;
  color: #E6C97F;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom:-15px !important;
}

.single-brand-championship-vacant {
  font-family: 'sofia-sans', sans-serif;
  font-size: 0.85rem;
  color: #A0A6BC;
  font-style: italic;
}

.single-brand-champion-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  width:60%;
  height: 200px;
  margin:0 auto;
}

.single-brand-champion-display img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  object-position: bottom;
  background: radial-gradient(ellipse at center, #1A242E 0%, #0A0E13 70%);
  border-radius: 6px;
   border: 1px solid #E6C97F;
  border-radius:12px;
  overflow:hidden;
  padding-top:8px;
}

.single-brand-champion-name {
  font-family: 'sofia-sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #E9ECF2;
  text-transform: uppercase;
}

/* =====================================================
   TAG TEAMS SECTION STYLES
   ===================================================== */
.single-brand-tag-teams-section {
  margin: 0 0 4rem 0;
  padding: 0;
}

.single-brand-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.single-brand-section-link {
  color: #CEE5F2;
  text-decoration: none;
  font-family: 'sofia-sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}

.single-brand-section-link:hover {
  color: #E6C97F;
}

.single-brand-tag-teams-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 1rem;
}

.single-brand-tag-team-card {
  background: linear-gradient(135deg, #0A0E13 0%, #1a242e 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  padding-top:10px;
  transition: all 0.3s ease;
}

.single-brand-tag-team-card:hover {
  transform: translateY(-5px);
  border-color: #E6C97F;
  box-shadow: 0 8px 20px rgba(0,0,0,0.45);
}

.single-brand-tag-team-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Single team photo layout */
.single-brand-tag-team-image {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: linear-gradient(135deg, #0A0E13 0%, #1a242e 100%);
}

.single-brand-tag-team-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.single-brand-tag-team-card:hover .single-brand-tag-team-image img {
  transform: scale(1.05);
}

/* Dual images layout */
.single-brand-tag-team-dual-images {
  position: relative;
  height: 180px;
  display: flex;
  background: linear-gradient(135deg, #0A0E13 0%, #1a242e 100%);
}

.single-brand-tag-team-wrestler-left,
.single-brand-tag-team-wrestler-right {
  flex: 1;
  overflow: hidden;
}

.single-brand-tag-team-wrestler-left img,
.single-brand-tag-team-wrestler-right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.single-brand-tag-team-card:hover .single-brand-tag-team-wrestler-left img {
  transform: scale(1.05) translateX(5px);
}

.single-brand-tag-team-card:hover .single-brand-tag-team-wrestler-right img {
  transform: scale(1.05) translateX(-5px);
}

.single-brand-tag-team-champion-pill {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: linear-gradient(135deg, #e6c97f 0%, #b8961f 100%);
  color: #1a242e;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  z-index: 2;
}

.single-brand-tag-team-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(transparent, rgba(10, 14, 19, 0.8));
  pointer-events: none;
}

.single-brand-tag-team-info {
  padding: 16px;
   background: #121921;
}

.single-brand-tag-team-name {
  font-family: 'khand', sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  margin: 0 0 4px 0;
  transition: color 0.3s ease;
}

.single-brand-tag-team-card:hover .single-brand-tag-team-name {
  color: #E6C97F;
}

.single-brand-tag-team-members {
  font-size: 0.9rem;
  color: #C5D1EB;
  margin: 0 0 6px 0;
}

.single-brand-tag-team-years {
  font-size: 0.85rem;
  color: #A0A6BC;
  font-weight: 500;
  margin: 0;
}

/* =====================================================
   OTHER BRANDS SECTION STYLES
   ===================================================== */
.single-brand-other-brands-section {
  margin: 3rem 0 2rem 0;
  padding: 0;
}

.single-brand-other-brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.single-brand-brand-card {
  background: rgba(26, 36, 46, 0.8);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(160, 166, 188, 0.2);
  position: relative;
}

.single-brand-brand-card:hover {
  border-color: #E6C97F;
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.single-brand-brand-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.single-brand-brand-image {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: radial-gradient(ellipse at center, #1A242E 0%, #0A0E13 70%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-brand-brand-image img {
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.single-brand-brand-card:hover .single-brand-brand-image img {
  transform: scale(1.05);
}

.single-brand-brand-status {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 4px 8px;
  border-radius: 12px;
  font-family: 'sofia-sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.single-brand-brand-status.status-active {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.single-brand-brand-status.status-inactive {
  background: rgba(156, 163, 175, 0.2);
  color: #9ca3af;
  border: 1px solid rgba(156, 163, 175, 0.3);
}

.status-road-agent,
.status-Road-Agent {
  background: rgba(180, 130, 200, 0.15);
  color: #B482C8;
}

.single-brand-brand-info {
  padding: 12px;
  text-align: center;
  background: #121921 !important;
}

.single-brand-brand-name {
  font-family: 'khand', sans-serif !important;
  font-size: 1.4rem !important;
  color: #E9ECF2;
  font-weight: 600 !important;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.2px !important;
  line-height: 1.2;
}

.single-brand-brand-card:hover .single-brand-brand-name {
  color: #E6C97F;
}

.single-brand-brand-parent {
  font-family: 'sofia-sans', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-style: italic;
  line-height: 1.2;
}

/* =====================================================
   RESPONSIVE STYLES
   ===================================================== */
@media (max-width: 1024px) {
  .single-brand-wrestlers-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .single-brand-tag-teams-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .single-brand-container {
    padding: 0 20px;
  }

  .brand-page-title {
    font-size: clamp(2.7rem, 5vw, 3rem);
    text-align:left;
    line-height:1;
  }

  .brand-page-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.375rem);
    margin: 0.375rem 0 1.25rem 0;
    text-align:left;
  }

  .brand-info-cards {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin: 1.5rem 0;
  }

  .brand-roster-section .roster-header {
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .brand-roster-section .roster-filter-group {
    margin-left: 0;
    width: 100%;
    justify-content: space-between;
  }

  .brand-roster-section .roster-count-display {
    text-align: left;
  }

  .brand-section-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .brand-logo {
    width: 140px;
    padding: 12px;
  }

  .brand-gallery {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }

  .brand-gallery-image {
    height: 80px;
  }

  .single-brand-wrestlers-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .single-brand-other-brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .single-brand-tag-teams-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .single-brand-wrestler-name {
    font-size: 1.2rem !important;
    margin-bottom:4px;
  }

  .single-brand-tag-team-name {
    font-size: 1.3rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.5px !important;
  }

  .brand-roster-section .load-more-btn {
    margin: 30px auto;
    padding: 14px 28px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .brand-page-subtitle {
    font-size:28px !important;
    font-weight:600 !important;
  }

  .single-brand-champion-overlay-badge {
    bottom: 8px;
    left:4px;
    font-size: 10px;
    width:90% !important;
  }

  .single-brand-container {
    padding: 0 16px;
  }

  .brand-info-cards {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 1rem 0;
  }

  .brand-logo {
    width: 100%;
    height:220px;
    object-fit:contain;
    padding: 0px;
  }

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

  .brand-section-title {
    font-size: 1.375rem;
  }

  .single-brand-wrestlers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .single-brand-other-brands-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .single-brand-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .single-brand-brand-image {
    height:160px;
    width:100%;
    padding:20px 0px;
    margin:0 auto;
    object-fit:contain;
  }

  .single-brand-brand-image img {
    max-height: 140px;
  }

  .single-brand-brand-name {
    font-size: 1rem;
  }

  .single-brand-tag-teams-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .single-brand-tag-team-dual-images,
  .single-brand-tag-team-image {
    height: 180px;
    padding-top:10px;
  }

  .single-brand-tag-team-image img {
    height:100%;
    object-fit:contain;
  }

  .single-brand-breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .single-brand-wrestler-name {
    margin-bottom:4px;
    letter-spacing:0px;
  }

 .single-brand-wrestler-content {
  padding: 15px;
  padding-bottom:20px;
  margin-bottom:-20px;
  overflow:hidden;
  text-align: left;
  background:#121921;
}

  .brand-roster-section .load-more-btn {
    margin: 24px auto;
    padding: 12px 24px;
    font-size: 14px;
    width: calc(100% - 40px);
    max-width: 280px;
  }

  .brand-championships-grid {
    grid-template-columns: 1fr;
  }
}

/* ====================================================
   SIGNATURE EVENTS SECTION
   Styling matches single-promotion-styles.css
   ==================================================== */

.single-brand-signature-events-section {
  margin-top: 50px;
  margin-bottom: 50px;
}

.single-brand-signature-events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 24px;
  margin-top: 1.5rem;
}

.single-brand-event-series-card {
  background: #121921;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 14px rgba(0,0,0,.35);
}

.single-brand-event-series-card:hover {
  transform: translateY(-4px);
  border-color: #E6C97F;
  box-shadow: 0 12px 24px rgba(0,0,0,0.4), 0 0 0 1px #E6C97F;
}

.single-brand-event-series-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.single-brand-event-series-image {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
  margin-top:-20px;
  background: radial-gradient(ellipse at center, #1A242E 0%, #0A0E13 70%);
}

.single-brand-event-series-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.single-brand-event-series-card:hover .single-brand-event-series-image img {
  transform: scale(1.05);
}

.single-brand-event-series-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(10, 14, 19, 0.3) 100%);
  pointer-events: none;
}

.single-brand-event-series-content {
  padding-top: 10px;
  padding-left:10px;
  padding-right:10px;
  background: #121921;
  margin-bottom:-15px;
}

.single-brand-event-series-title {
  font-family: 'Khand', sans-serif !important;
  font-size: 1.3rem !important;
  font-weight: 600 !important;
  color: #E9ECF2;
  text-transform: uppercase;
  margin: 0 0 2px 0;
  transition: color 0.2s ease;
  letter-spacing: 0 !important;
}

.single-brand-event-series-card:hover .single-brand-event-series-title {
  color: #E6C97F;
}

.single-brand-event-series-years {
  font-family: 'sofia-sans', sans-serif;
  font-size: 0.95rem;
  color: #A0A6BC;
  margin-bottom: 12px;
}

.single-brand-event-series-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.single-brand-event-series-count {
  font-family: 'sofia-sans', sans-serif;
  font-size: 0.8rem;
  color: #E9ECF2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.single-brand-event-series-arrow {
  font-size: 1.3rem;
  color: #E6C97F;
  transition: transform 0.3s ease;
}

.single-brand-event-series-card:hover .single-brand-event-series-arrow {
  transform: translateX(4px);
}

/* ====================================================
   RECENT EVENTS SECTION
   ==================================================== */

.single-brand-recent-events-section {
  margin-top: 50px;
  margin-bottom: 50px;
}

.single-brand-recent-events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.single-brand-recent-event-card {
  background: #1a242e;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(230, 201, 127, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.single-brand-recent-event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border-color: rgba(230, 201, 127, 0.3);
}

.single-brand-recent-event-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.single-brand-recent-event-content {
  padding: 20px;
}

.single-brand-recent-event-name {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.single-brand-recent-event-date,
.single-brand-recent-event-location {
  font-size: 13px;
  color: #a0a6bc;
  margin: 0 0 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.single-brand-recent-event-date i,
.single-brand-recent-event-location i {
  color: #e6c97f;
  font-size: 12px;
  width: 14px;
}

/* ====================================================
   TOURNAMENTS SECTION
   ==================================================== */

.single-brand-tournaments-section {
  margin-top: 50px;
  margin-bottom: 50px;
}

.single-brand-tournaments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.single-brand-tournament-card {
  background: #1a242e;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.single-brand-tournament-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.single-brand-tournament-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.single-brand-tournament-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.single-brand-tournament-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.single-brand-tournament-card:hover .single-brand-tournament-image img {
  transform: scale(1.05);
}

.single-brand-tournament-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 40%);
  pointer-events: none;
}

.single-brand-tournament-status {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 600;
  z-index: 2;
  background: rgba(76, 175, 80, 0.9);
  color: #fff;
}

.single-brand-tournament-status.status-completed {
  background: rgba(76, 175, 80, 0.9);
}

.single-brand-tournament-status.status-ongoing,
.single-brand-tournament-status.status-active {
  background: rgba(230, 201, 127, 0.9);
  color: #1a1a2e;
}

.single-brand-tournament-status.status-upcoming {
  background: rgba(33, 150, 243, 0.9);
}

.single-brand-tournament-info {
  padding: 15px;
}

.single-brand-tournament-name {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.single-brand-tournament-year,
.single-brand-tournament-format {
  font-size: 12px;
  color: #a0a6bc;
  margin: 0 0 4px 0;
}

.single-brand-tournament-winner {
  font-size: 12px;
  color: #e6c97f;
  margin: 8px 0 0 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.single-brand-tournament-winner i {
  font-size: 11px;
}

/* ====================================================
   FACTIONS & STABLES SECTION
   ==================================================== */

.single-brand-factions-section {
  margin-top: 50px;
  margin-bottom: 50px;
}

.single-brand-factions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.single-brand-faction-card {
  background: #1a242e;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.single-brand-faction-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.single-brand-faction-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.single-brand-faction-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.single-brand-faction-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.single-brand-faction-card:hover .single-brand-faction-image img {
  transform: scale(1.05);
}

.single-brand-faction-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 40%);
  pointer-events: none;
}

.single-brand-faction-type-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(230, 201, 127, 0.9);
  color: #1a1a2e;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 600;
  z-index: 2;
}

.single-brand-faction-info {
  padding: 15px;
}

.single-brand-faction-name {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.single-brand-faction-members,
.single-brand-faction-years {
  font-size: 12px;
  color: #a0a6bc;
  margin: 0 0 4px 0;
}

/* ====================================================
   RESPONSIVE - NEW SECTIONS
   ==================================================== */

@media (max-width: 1200px) {
  .single-brand-signature-events-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .single-brand-signature-events-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .single-brand-recent-events-grid,
  .single-brand-tournaments-grid,
  .single-brand-factions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .single-brand-signature-events-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .single-brand-recent-events-grid,
  .single-brand-tournaments-grid,
  .single-brand-factions-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .single-brand-event-series-name {
    font-size: 13px;
  }

  .single-brand-recent-event-name,
  .single-brand-tournament-name,
  .single-brand-faction-name {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .single-brand-signature-events-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .single-brand-event-series-info,
  .single-brand-tournament-info,
  .single-brand-faction-info {
    padding: 12px;
  }

  .single-brand-recent-event-content {
    padding: 15px;
  }
}
