/* Mix Detail Page - Refactored with Color Variables */

/* Prevent horizontal scroll */
html,
body {
  overflow-x: hidden;
  max-width: 100vw;
  box-sizing: border-box;
}

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

/* Base Styles */
body {
  background: var(--background);
  font-size: 16px;
  line-height: 1.6;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--dark-text);
}

/* Better vertical rhythm for headings */
h3,
.sidebar-title {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

h3:first-child,
.sidebar-title:first-child {
  margin-top: 0;
}

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

/* Hero Section */
.mix-hero {
  padding: 80px 0;
  background: var(--primary);
  color: white;
  margin-bottom: 60px;
  margin-top: 0;
  position: relative;
}

.mix-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  opacity: 0.9;
}

.mix-hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mix-hero-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: var(--white-15);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  overflow: hidden;
  box-shadow: 0 10px 30px var(--black-20);
}

.mix-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mix-hero-content {
  color: white;
}

.mix-number {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  opacity: 0.9;
  color: var(--white-85);
}

.mix-title {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
  color: white;
}

.mix-artist {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 32px;
  opacity: 0.95;
  color: white;
}

.mix-meta {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.meta-item {
  display: flex;
  flex-direction: column;
}

.meta-label {
  font-size: 15px;
  opacity: 0.8;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.meta-value {
  font-size: 20px;
  font-weight: 600;
}

/* Hero Play Button and Duration */
.mix-player-controls {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.hero-play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white-15);
  backdrop-filter: blur(10px);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-play-btn:hover {
  background: var(--white-25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.05);
}

.hero-play-btn:active {
  transform: scale(0.95);
}

.mix-duration {
  font-size: 20px;
  font-weight: 300;
  color: var(--white-90);
  letter-spacing: 0.5px;
}

.duration-loading {
  opacity: 0.6;
}

.duration-time {
  font-variant-numeric: tabular-nums;
}

/* Source Badge Styles */
.source-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 16px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.soundcloud-badge {
  background: var(--soundcloud-bg-hover);
  color: var(--soundcloud-color);
  border-color: var(--soundcloud-border);
}

.mp3-badge {
  background: var(--primary-bg-medium);
  color: var(--primary);
  border-color: var(--primary-border);
}

.source-badge i {
  font-size: 16px;
}

/* Simplified Player Section */
.player-section {
  background: var(--surface);
  padding: 32px;
  margin-bottom: 60px;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 1px 3px var(--shadow-light);
  position: relative;
}

.player-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

/* MP3 Player Preview - Simplified */
.mp3-player-preview {
  background: var(--primary-bg-light);
  border: 1px solid var(--primary-border);
  border-radius: 12px;
  padding: 24px;
}

.mp3-player-preview h4 {
  font-size: 18px;
  color: var(--medium-text);
  margin: 0 0 12px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mp3-player-preview h4::before {
  content: "🎧";
  font-size: 20px;
}

.preview-note {
  background: var(--primary-bg-medium);
  border-left: 4px solid var(--primary);
  padding: 12px 16px;
  margin: 0 0 20px 0;
  border-radius: 0 8px 8px 0;
  font-size: 14px;
  color: var(--medium-text);
}

.preview-note i {
  color: var(--primary);
  margin-right: 8px;
}

/* Special Mixes Playlist Styles */
.special-mixes-playlist {
  background: var(--success-bg);
  border: 1px solid var(--success-border);
  border-radius: 12px;
  padding: 24px;
}

.special-mixes-playlist h4 {
  font-size: 18px;
  color: var(--medium-text);
  margin: 0 0 12px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.special-mixes-playlist h4::before {
  content: "🎵";
  font-size: 20px;
}

.playlist-note {
  background: var(--success-bg-medium);
  border-left: 4px solid var(--accent-green);
  padding: 12px 16px;
  margin: 0 0 20px 0;
  border-radius: 0 8px 8px 0;
  font-size: 14px;
  color: var(--medium-text);
}

.playlist-note i {
  color: var(--accent-green);
  margin-right: 8px;
}

.special-mix-tracks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.special-mix-track {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  transition: all 0.2s ease;
}

.special-mix-track:hover {
  border-color: var(--accent-green);
  background: rgba(5, 150, 105, 0.02);
}

.special-mix-play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-green);
  color: white;
  border: none;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.special-mix-play-btn:hover {
  background: #047857;
  transform: scale(1.05);
}

.special-mix-play-btn:active {
  transform: scale(0.95);
}

.special-mix-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.special-mix-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-text);
}

.special-mix-file {
  font-size: 14px;
  color: var(--light-text);
  font-family: "Courier New", monospace;
}

/* Content Grid and other existing styles... */
.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  margin-bottom: 80px;
}

.main-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.content-section {
  background: var(--surface);
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 1px 3px var(--shadow-light);
  margin-bottom: 2rem;
}

/* Scoped to content sections to avoid affecting homepage headers */
.content-section .section-title,
.playlist-section .section-title {
  font-size: 30px;
  margin-bottom: 32px;
  position: relative;
  color: var(--dark-text);
}

.content-section .section-title::after,
.playlist-section .section-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.mix-content {
  font-size: 18px;
  line-height: 1.8;
  color: var(--medium-text);
}

.mix-content p {
  margin-bottom: 1.8rem;
  line-height: 1.8;
}

.mix-content p:last-child {
  margin-bottom: 0;
}

/* Playlist Section - Same width as main content */
.playlist-section {
  margin-bottom: 48px;
}

.playlist-section .section-title {
  margin-bottom: 32px;
}

/* Clean Playlist Table (no extra borders/backgrounds) */
.playlist-table-clean {
  width: 100%;
  background: var(--surface);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px var(--shadow-light);
  border: 1px solid var(--border);
}

.playlist-table-clean .playlist-table-header {
  display: grid;
  grid-template-columns: 60px 1fr 200px 80px;
  gap: 20px;
  padding: 16px 24px;
  background: var(--primary-bg-light);
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  font-weight: 600;
  color: var(--light-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.playlist-table-clean .playlist-table-body {
  /* No max-height or overflow - show all tracks */
}

.playlist-table-clean .playlist-row {
  display: grid;
  grid-template-columns: 60px 1fr 200px 80px;
  gap: 20px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  transition: background-color 0.2s ease;
  align-items: center;
}

.playlist-table-clean .playlist-row:hover {
  background: var(--primary-bg-light);
}

.playlist-table-clean .playlist-row:last-child {
  border-bottom: none;
}

.playlist-table-clean .col-number {
  text-align: center;
}

.playlist-table-clean .track-number {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
}

.playlist-table-clean .col-track {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.playlist-table-clean .track-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-text);
  line-height: 1.3;
}

.playlist-table-clean .track-artist {
  font-size: 14px;
  line-height: 1.3;
}

.playlist-table-clean .artist-link {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.playlist-table-clean .artist-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.playlist-table-clean .artist-name {
  color: var(--primary);
}

.playlist-table-clean .col-label {
  font-size: 14px;
}

.playlist-table-clean .label-link {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.playlist-table-clean .label-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.playlist-table-clean .label-name {
  color: var(--primary);
}

.playlist-table-clean .col-time {
  text-align: right;
  font-size: 14px;
  color: var(--light-text);
  font-family: "Courier New", monospace;
}

.playlist-table-clean .track-timestamp {
  color: var(--light-text);
}

/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sidebar-section {
  background: var(--surface);
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 1px 3px var(--shadow-light);
  margin-bottom: 2rem;
}

.sidebar-section:last-child {
  margin-bottom: 0;
}

.sidebar-section .sidebar-title {
  font-size: 22px;
  margin-bottom: 24px;
  position: relative;
  color: var(--dark-text);
}

.sidebar-section .sidebar-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}

.download-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  color: var(--dark-text);
  padding: 20px 24px;
  text-decoration: none;
  border: 1px solid var(--border);
  font-weight: 500;
  transition: all 0.2s ease;
  border-radius: 8px;
  font-size: 16px;
  margin-bottom: 12px;
}

.download-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-bg-light);
}

.download-btn i {
  color: var(--primary);
  width: 18px;
  font-size: 16px;
}

/* Category Link Styles */
.category-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.category-link:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

/* Category Link Styles - White in hero */
.mix-hero .category-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  opacity: 0.9;
}

.mix-hero .category-link:hover {
  color: white;
  text-decoration: none;
  opacity: 1;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* DJ Profile Sidebar Card */
.dj-profile-card-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dj-profile-sidebar-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.dj-profile-sidebar-image {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.dj-profile-sidebar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dj-profile-sidebar-info {
  flex: 1;
  min-width: 0;
}

.dj-profile-sidebar-name {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px 0;
  color: var(--dark-text);
}

.dj-profile-sidebar-location {
  font-size: 14px;
  color: var(--light-text);
  display: flex;
  align-items: center;
  gap: 6px;
}

.dj-profile-sidebar-bio {
  font-size: 15px;
  line-height: 1.6;
  color: var(--medium-text);
}

.dj-profile-sidebar-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.dj-profile-sidebar-social .social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.dj-profile-sidebar-social .social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow-heavy);
}

.dj-profile-sidebar-social .social-link.soundcloud {
  background: var(--soundcloud-color);
}

.dj-profile-sidebar-social .social-link.instagram {
  background: var(--instagram-color);
}

.dj-profile-sidebar-social .social-link.facebook {
  background: var(--facebook-color);
}

.dj-profile-sidebar-social .social-link.bandcamp {
  background: var(--bandcamp-color);
}

.dj-profile-sidebar-social .social-link.website {
  background: var(--gray-600);
}

.dj-profile-sidebar-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  padding: 12px 16px;
  border: 1px solid var(--primary-border);
  border-radius: 8px;
  background: var(--primary-bg-light);
  text-align: center;
  justify-content: center;
}

.dj-profile-sidebar-link i {
  transition: transform 0.2s ease;
}

.dj-profile-sidebar-link:hover {
  color: var(--primary-dark);
  background: var(--primary-bg-medium);
  border-color: var(--primary);
  text-decoration: none;
}

.dj-profile-sidebar-link:hover i {
  transform: translateX(4px);
}

/* Remove spacing between header and hero */
.single-mix .mix-hero {
  margin-top: 0;
}

body.single-mix {
  margin: 0;
  padding: 0;
}

.single-mix main,
.single-mix .site-main {
  margin-top: 0;
  padding-top: 0;
}

/* Post Tags Styling */
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-link {
  display: inline-block;
  padding: 10px 16px;
  background: var(--primary-bg-light);
  color: var(--medium-text);
  text-decoration: none;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
  line-height: 1.2;
  margin-bottom: 8px;
  margin-right: 8px;
}

.tag-link:hover {
  background: var(--primary-bg-medium);
  color: var(--primary);
  border-color: var(--primary-border);
  text-decoration: none;
  transform: translateY(-1px);
}

/* Enhanced Mobile Responsive */
@media (max-width: 768px) {
  .mix-hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mix-hero-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .mix-meta {
    flex-direction: row;
    gap: 40px;
    margin: -16px 0px 32px;
    }
  .meta-label{
    font-size: 14px;
  }
  .meta-value{
    font-size: 16px;
  }
  .mix-player-controls {
    justify-content: center;
    margin-top: 32px;
  }

  .hero-play-btn {
    width: 72px;
    height: 72px;
    font-size: 24px;
  }

  .mix-duration {
    font-size: 18px;
  }

  /* Mobile responsive for source badges */
  @media (max-width: 768px) {
    .source-badge {
      margin-left: 12px;
      padding: 4px 10px;
      font-size: 13px;
    }

    .source-badge i {
      font-size: 14px;
    }

    .mix-duration {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }
  }

  @media (max-width: 480px) {
    .source-badge {
      margin-left: 8px;
      padding: 3px 8px;
      font-size: 12px;
    }

    .source-badge i {
      font-size: 13px;
    }
  }

  /* Mobile playlist table */
  .playlist-table-clean .playlist-table-header,
  .playlist-table-clean .playlist-row {
    grid-template-columns: 50px 1fr 120px 60px;
    gap: 12px;
    padding: 16px 20px;
  }

  .playlist-table-clean .track-title {
    font-size: 15px;
  }

  .playlist-table-clean .track-artist,
  .playlist-table-clean .col-label {
    font-size: 13px;
  }

  .playlist-table-clean .col-time {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .mix-title {
    font-size: 36px;
  }

  .mix-artist {
    font-size: 22px;
  }

  .hero-play-btn {
    width: 64px;
    height: 64px;
    font-size: 20px;
  }

  .mix-duration {
    font-size: 16px;
  }

  /* Mobile playlist table - smaller */
  .playlist-table-clean .playlist-table-header,
  .playlist-table-clean .playlist-row {
    grid-template-columns: 40px 1fr 80px 50px;
    gap: 8px;
    padding: 12px 16px;
  }

  .playlist-table-clean .track-title {
    font-size: 14px;
  }

  .playlist-table-clean .track-artist,
  .playlist-table-clean .col-label {
    font-size: 12px;
  }

  .playlist-table-clean .col-time {
    font-size: 11px;
  }

  .playlist-table-clean .playlist-table-header {
    font-size: 10px;
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
}

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

  .mix-hero {
    padding: 60px 0;
    margin-bottom: 40px;
  }

  .player-section {
    padding: 24px;
    margin-bottom: 40px;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 60px;
  }

  .content-section,
  .sidebar-section {
    padding: 24px;
  }

  .mix-content {
    font-size: 19px;
    line-height: 1.8;
  }

  .section-title {
    font-size: 26px;
    margin-bottom: 24px;
  }

  .sidebar-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .download-btn {
    padding: 18px;
    font-size: 17px;
    gap: 14px;
  }

  .download-btn i {
    width: 20px;
    font-size: 17px;
  }
}

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

  .mix-hero {
    padding: 40px 0;
    margin-bottom: 32px;
  }

  .content-section,
  .sidebar-section {
    padding: 20px;
  }

  .mix-content {
    font-size: 16px;
    line-height: 1.8;
  }

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

  .sidebar-title {
    font-size: 19px;
  }

  .download-btn {
    padding: 20px;
    font-size: 18px;
  }

  .content-grid {
    gap: 24px;
    margin-bottom: 40px;
  }

  .main-content {
    gap: 32px;
  }

  .sidebar {
    gap: 24px;
  }

  .full-width-playlist {
    padding: 32px 0;
    margin-bottom: 48px;
  }
}

/* Responsive video embeds */
.responsive-video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  margin: 1.5rem 0;
}

.responsive-video iframe,
.responsive-video object,
.responsive-video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Auto-apply to common video embeds in content */
.mix-content iframe[src*="youtube"],
.mix-content iframe[src*="vimeo"],
.mix-content iframe[src*="youtu.be"] {
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

/* Better video embed handling */
.mix-content iframe,
.mix-content video,
.mix-content embed,
.mix-content object {
  max-width: 100%;
  height: auto;
}

/* Specific YouTube embed fixes */
.mix-content iframe[src*="youtube.com"],
.mix-content iframe[src*="youtu.be"] {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  margin: 1.5rem 0;
}

/* Wrapper for manual responsive video control */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

/* Mobile responsive for DJ profile sidebar */
@media (max-width: 768px) {
  .dj-profile-sidebar-header {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .dj-profile-sidebar-image {
    width: 80px;
    height: 80px;
    margin: 0 auto;
  }

  .dj-profile-sidebar-social {
    justify-content: center;
  }
}

/* Post Tags Styling */
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Tag styling with better padding */
.tag-link {
  display: inline-block;
  padding: 10px 16px;
  background: var(--primary-bg-light);
  color: var(--medium-text);
  text-decoration: none;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
  line-height: 1.2;
  margin-bottom: 8px;
  margin-right: 8px;
}

.tag-link:hover {
  background: var(--primary-bg-medium);
  color: var(--primary);
  border-color: var(--primary-border);
  text-decoration: none;
  transform: translateY(-1px);
}

/* Download options container */
.download-options {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Tag list container */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

/* Mobile responsive for tags */
@media (max-width: 768px) {
  .post-tags {
    gap: 6px;
  }

  .tag-link {
    padding: 5px 10px;
    font-size: 12px;
  }
}
