.dj-container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
  color: #333;
  font-family: "Arial", "Segoe UI", sans-serif;
}

.dj-two-columns {
  display: flex;
  flex-wrap: wrap;
}

.dj-event-image {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 2rem;
  border: 2px solid #f15d59;
}

.dj-event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dj-category {
  display: inline-block;
  color: #777;
  margin-bottom: 0.8rem;
  font-size: 1.25rem;
}

.dj-description-column h1 {
  font-size: 2rem;
  color: #34929a;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  font-weight: bold;
}

.dj-event-details-grid {
  display: flex;
}

.dj-description,
.dj-cta-text {
  color: #666;
  margin-bottom: 1.5rem;
  padding-bottom: 0;
  font-size: 1rem;
}

.dj-focus {
  font-weight: bold;
}

.dj-meta-info {
  height: fit-content;
  border-left: 2px solid #a9a9a9;
  padding-left: 1rem;
  margin-left: 1rem;
  padding-right: 1.5rem;
}

.dj-meta-section {
  margin-bottom: 2.5rem;
}

.dj-meta-section:last-child {
  margin-bottom: 0;
}

.dj-meta-section h3 {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 0.2rem;
}

.dj-meta-section p {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dj-left-column {
  flex: 3 1 0%;
  padding-right: 2rem;
}

/* Right Column */
.dj-right-column {
  flex: 1 1 0%;
}

.dj-ticket-box {
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  position: sticky;
  top: 2rem;
  border: 1px solid #35939b;
  box-shadow: 0 0 9px rgba(0, 0, 0, 0.25);
}

.dj-ticket-box,
.dj-ticket-box h3 {
  font-size: 0.8rem;
  color: #777;
}

.dj-ticket-box p {
  color: #111;
  font-weight: bold;
}

.dj-ticket-box h3 {
  margin-bottom: 0.5rem;
  font-weight: normal;
}

.dj-time-info,
.dj-location-info {
  display: flex;
  align-items: flex-start;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
}

.dj-ticket-button {
  width: 100%;
  padding: 1rem;
  background: #f15d5a;
  color: white;
  border: none;
  border-radius: 100px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.dj-ticket-button i {
  font-size: 1.5rem;
}

.dj-ticket-button:hover {
  background: #ff5252;
}

.dj-iframe {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000000;
  overflow: hidden;
  display: none;
  margin: 0;
  max-width: 100%;
}

.dj-iframe-close {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0b0b0b;
  opacity: 0.8;
}

.dj-iframe-close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  left: 0;
  height: 40px;
  text-align: right;
  color: #fff;
  opacity: 0.65;
  line-height: 40px;
  padding-right: 5px;
  font-size: 24px;
  cursor: pointer;
}

.dj-iframe-body {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.dj-iframe-content {
  position: relative;
  max-width: 450px;
  margin: 0 auto;
  background-color: #000;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  top: 50%;
  transform: translateY(-50%);
}

.dj-iframe-content:before {
  content: "";
  display: block;
  padding-bottom: 166.67%;
}

.dj-iframe-content iframe {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

@media (max-width: 450px) or (max-height: 750px) {
  .dj-iframe-content {
    height: 100%;
  }

  .dj-iframe-content:before {
    height: 100%;
  }

  .dj-iframe-close-btn {
    top: 0;
    z-index: 1;
    color: #111;
    text-align: left;
    padding: 10px;
  }
}

@media (max-width: 768px) {
  .dj-container {
    margin: 2rem -2rem;
  }

  .dj-left-column {
    padding: 0;
    min-width: 100%;
  }

  .dj-right-column {
    max-width: 300px;
    margin: 0 auto;
  }

  .dj-event-image {
    height: 300px;
  }

  .dj-description-column h1 {
    font-size: 1.5rem;
  }

  .dj-ticket-box {
    position: static;
  }
}

@media (max-width: 425px) {
  .dj-event-details-grid {
    flex-wrap: wrap;
  }

  .dj-meta-info {
    padding: 0;
    margin: 0;
    border: 0;
    display: flex;
    justify-content: space-around;
    width: 100%;
  }
}
