* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #07070c;
  color: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header{
    position:fixed;
    top:20px;
	z-index: 1000;
    left:50%;
    transform:translateX(-50%);
    width:min(1400px,95%);
    height:82px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 30px;

    background:rgba(15,15,25,.55);
    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    box-shadow:
        0 10px 35px rgba(0,0,0,.45);
}

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    height:64px;
    width:auto;
    transition:.3s;
}

.site-header.scrolled .logo img{
    height:48px;
}

.main-nav {
  display: flex;
  gap: 24px;
}

.main-nav a {
  font-weight: 700;
  opacity: 0.85;
}

.main-nav a:hover {
  color: #ffcc28;
}

.menu-toggle {
  display: none;
  background: none;
  color: white;
  border: none;
  font-size: 2rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.8)),
    url("/assets/images/background.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 120px 7% 80px;
}

.hero-content {
  max-width: 750px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: #ffcc28;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 2px;
}

.hero h1 {
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.9;
  text-transform: uppercase;
  font-style: italic;
}

.hero h2 {
  font-size: clamp(2rem, 6vw, 4.5rem);
  color: #ffffff;
  text-transform: uppercase;
}

.hero-text {
  margin: 22px 0;
  font-size: 1.3rem;
  color: #dddddd;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}


/* ==========================================
   AWARDS SECTION
========================================== */
.awards-section {
  background:
    radial-gradient(
      circle at top center,
      rgba(255, 204, 40, 0.08),
      transparent 34%
    ),
    linear-gradient(180deg, #11111d, #08080d);
}

.awards-header {
  max-width: 850px;
  margin: 0 auto 48px;
  text-align: center;
}

.awards-header p:last-child {
  color: #cccccc;
  line-height: 1.7;
}

.awards-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1.1fr);
  gap: 48px;
  align-items: center;
  width: 100%;
  max-width: 1050px;
  margin: 0 auto 45px;
  padding: 38px;
  border: 1px solid rgba(255, 204, 40, 0.35);
  border-radius: 24px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 204, 40, 0.12),
      rgba(255, 255, 255, 0.035)
    );
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.35);
  text-align: left;
}

.award-featured-image,
.award-card-image {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.award-featured-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 390px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(5, 5, 10, 0.5);
}

.award-featured-image img {
  display: block;
  width: 100%;
  max-width: 340px;
  max-height: 360px;
  object-fit: contain;
}

.award-featured-copy h3 {
  margin: 5px 0 8px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
}

.award-featured-copy > p:not(.award-year):not(.award-location) {
  margin-top: 22px;
  color: #d4d4d4;
  line-height: 1.7;
}

.award-year {
  margin: 0;
  color: #ffcc28;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.award-location {
  color: #ffffff;
  font-weight: 800;
  text-transform: uppercase;
}

.award-featured-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  padding: 11px 17px;
  border-radius: 999px;
  background: #ffcc28;
  color: #080808;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.awards-supporting {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 1150px;
  margin: 0 auto 42px;
}

.award-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.award-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 204, 40, 0.75);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.4);
}

.award-card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 280px;
  padding: 25px;
  background: rgba(5, 5, 10, 0.38);
}

.award-card-image img {
  display: block;
  width: 100%;
  max-width: 240px;
  height: 220px;
  object-fit: contain;
}

.award-card-copy {
  min-height: 145px;
  padding: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.award-card-copy h3 {
  margin: 5px 0 8px;
  font-size: 1.15rem;
}

.award-card-copy p:last-child {
  color: #bdbdbd;
}

.award-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.award-categories span {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid rgba(255, 204, 40, 0.35);
  border-radius: 999px;
  background: rgba(255, 204, 40, 0.1);
  color: #ffcc28;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.2;
}

.award-categories-featured {
  margin-top: 22px;
}

.award-gallery-item {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.award-gallery-item:hover,
.award-gallery-item:focus-visible {
  transform: scale(1.025);
}

.award-gallery-item:focus-visible {
  outline: 3px solid #ffcc28;
  outline-offset: -3px;
}

.award-trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  max-width: 1050px;
  margin: 0 auto 45px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.award-trust-item {
  padding: 24px 18px;
  text-align: center;
}

.award-trust-item + .award-trust-item {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.award-trust-item strong,
.award-trust-item span {
  display: block;
}

.award-trust-item strong {
  color: #ffcc28;
  font-size: 1.15rem;
  text-transform: uppercase;
}

.award-trust-item span {
  margin-top: 5px;
  color: #bdbdbd;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.review-summary {
  max-width: 900px;
  margin: 0 auto;
  padding: 35px;
  border: 1px solid rgba(255, 204, 40, 0.35);
  border-radius: 20px;
  background: linear-gradient(135deg, #2b2200, #161616);
  text-align: center;
}

.review-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.review-links a {
  padding: 12px 20px;
  border-radius: 999px;
  background: #ffcc28;
  color: #050505;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 0.2s ease;
}

.review-links a:hover {
  transform: scale(1.05);
}

.stars {
  margin-bottom: 10px;
  color: #ffd54a;
  font-size: 2rem;
  letter-spacing: 4px;
}

.review-summary h3 {
  margin-bottom: 10px;
  font-size: 1.6rem;
}

.review-summary p {
  color: #d4d4d4;
}

.award-lightbox {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: rgba(0, 0, 0, 0.92);
}

.award-lightbox.is-open {
  display: flex;
}

.award-lightbox img {
  display: block;
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.65);
}

.award-lightbox-close {
  position: absolute;
  top: 18px;
  right: 24px;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 3rem;
  line-height: 1;
  cursor: pointer;
}

.btn {
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
}

.btn.primary {
  background: #ffcc28;
  color: #080808;
}

.btn.secondary {
  border: 2px solid #fff;
}

.section {
  padding: 90px 7%;
  text-align: center;
}

.section h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-subtitle,
.intro p,
.poster-section p,
.contact-section p {
  color: #cccccc;
  max-width: 800px;
  margin: 0 auto 35px;
}

.dark {
  background: radial-gradient(circle at top, #171735, #050508 65%);
}

/* ==========================================
   DJ CARDS
========================================== */
.dj-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.dj-card {
  grid-column: span 2;
}

/* first row: 2 cards centered */
.dj-card:nth-child(1) {
  grid-column: 2 / span 2;
}

.dj-card:nth-child(2) {
  grid-column: 4 / span 2;
}

/* second row: 3 cards */
.dj-card:nth-child(3),
.dj-card:nth-child(4),
.dj-card:nth-child(5) {
  grid-column: span 2;
}

/* third row: 2 cards centered */
.dj-card:nth-child(6) {
  grid-column: 2 / span 2;
}

.dj-card:nth-child(7) {
  grid-column: 4 / span 2;
}

.dj-contact-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.dj-contact-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    border-radius: 10px;

    transition:
        transform .2s ease,
        background-color .2s ease;
}

.dj-contact-links img {
    width: 34px;
    height: 34px;
    display: block;
    transition: filter .2s ease;
}

.dj-contact-links a:hover img {
    filter: brightness(1.25) contrast(1.2);
}

.dj-card,
.service-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 0 25px rgba(0,0,0,0.35);
}

.dj-card:hover {
  transform: translateY(-6px);
  border-color: #ffcc28;
  box-shadow: 0 0 25px rgba(255,204,40,.18);
}

.dj-card.featured {
  border-color: #ffcc28;
  box-shadow: 0 0 30px rgba(255, 204, 40, 0.25);
}

.dj-card h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.dj-card p {
  color: #cccccc;
  min-height: 50px;
}

.dj-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  margin-bottom: 18px;
  background: #000;
}

.dj-card .dj-contact-links img {
  width: 34px;
  height: 34px;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 0;
  margin-bottom: 0;
  background: transparent;
  display: block;
  transition: filter 0.2s ease;
}

.dj-card .dj-contact-links a:hover img {
  filter: brightness(1.15) contrast(1.1);
}

.dj-card button,
.contact-form button {
  margin-top: 18px;
  padding: 12px 18px;
  border: none;
  border-radius: 999px;
  background: #ffcc28;
  color: #050505;
  font-weight: 900;
  cursor: pointer;
}

.dj-card button:hover,
.contact-form button:hover {
  transform: scale(1.04);
}

.service-card{

    background:linear-gradient(
        145deg,
        rgba(255,255,255,.10),
        rgba(255,255,255,.03)
    );

    border:1px solid rgba(255,255,255,.14);

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 0 25px rgba(0,0,0,.35);

    transition:.25s;

    text-align:left;

}

.services-grid{

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(340px,1fr));

    gap:28px;

    margin-top:40px;

}

.service-card:hover{

    transform:translateY(-6px);

    border-color:#ffcc28;

    box-shadow:0 0 25px rgba(255,204,40,.18);

}

.service-card img{

    width:100%;

    height:260px;

    object-fit:cover;

    display:block;

}

.service-card h3{

    font-size:1.6rem;

    padding:24px 24px 10px;

    text-transform:uppercase;

}

.service-card p{

    padding:0 24px 28px;

    color:#d5d5d5;

    line-height:1.6;

}

/* ==========================================
   FORM STYLES
========================================== */
.contact-phone {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.contact-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 18px;
    border: 2px solid #ffcc28;
    border-radius: 999px;
    color: #ffcc28;
    background: transparent;
    text-decoration: none;
    font-weight: 700;
    transition: all .25s ease;
}

.contact-action-btn:hover {
    background: #ffcc28;
    color: #111;
    transform: translateY(-2px);
}

.form-success-content {
  max-width: 520px;
  text-align: center;
}

.form-success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffcc28;
  color: #050505;
  font-size: 2.5rem;
  font-weight: 900;
  box-shadow: 0 0 28px rgba(255, 204, 40, 0.3);
}

.form-success-content h2 {
  margin-bottom: 12px;
  text-transform: uppercase;
}

.form-success-content p {
  color: #d4d4d4;
}

.form-success-button {
  margin-top: 24px;
  padding: 12px 24px;
  border: none;
  border-radius: 999px;
  background: #ffcc28;
  color: #050505;
  font-weight: 900;
  cursor: pointer;
}

.form-success-button:hover {
  transform: scale(1.04);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.contact-section {
  background: linear-gradient(135deg, #121228, #080808);
  overflow: hidden;
}

.contact-banner-wrap {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 35px;
  overflow: hidden;
  border-radius: 18px;
}

.contact-banner {
  display: block;
  width: 100%;
  height: auto;
}

.phone-link {
  display: inline-block;
  font-size: 2rem;
  font-weight: 900;
  color: #ffcc28;
  margin-bottom: 30px;
}

.contact-form {
  max-width: 650px;
  margin: auto;
  display: grid;
  gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
}

.contact-form select {
    color: #666;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

footer {
  padding: 25px;
  text-align: center;
  color: #aaaaaa;
  background: #030306;
}

.site-credit {
    margin-top: 18px;
    font-size: 0.85rem;
    color: rgba(255,255,255,.65);
}

.site-credit span {
    color: #ffcc28;
    font-weight: 700;
    transition: color .25s ease;
    cursor: default;
}

.site-credit span:hover {
    color: #ffffff;
	text-decoration: underline;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.82);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.modal.show {
  display: flex;
}

.modal-content {
  background: #11111d;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 32px;
  max-width: 500px;
  width: 90%;
  position: relative;
  white-space: pre-line;
}

.close-modal {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

/* ==========================================
   UPCOMING EVENTS
   ========================================== */

.events-section{
    background:#0d0d14;
    text-align:center;
}

.events-grid{
    max-width:1200px;
    margin:50px auto 0;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:24px;
}

.event-card{
    background:#171723;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    overflow:hidden;
    transition:.25s;
    text-align:left;
    display:flex;
    flex-direction:column;
}

.event-card:hover{
    transform:translateY(-6px);
    border-color:#ffcc28;
}

.event-card img{
    width:100%;
    height:220px;
    object-fit:contain;
    object-position:center;
    background:#000;
    display:block;
}

.event-info{
    padding:24px;
    display:flex;
    flex-direction:column;
    gap:10px;
    flex:1;
}

.event-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.event-type {
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 800;
}

.event-status-badge {
  flex-shrink: 0;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.event-status-tonight {
  color: #111111;
  background: #ffcc28;
  box-shadow: 0 0 14px rgba(255, 204, 40, 0.3);
}

.event-status-live {
  color: #ffffff;
  background: #c81924;
  box-shadow: 0 0 16px rgba(255, 38, 51, 0.45);
  animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.65;
  }
}

.no-upcoming-events {
  grid-column: 1 / -1;
  padding: 30px;
  color: #cccccc;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: 16px;
}

.event-date{
    color:#ffcc28;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:.85rem;
}

.event-info h3{
    margin:0;
    font-size:1.5rem;
}

.event-info p{
    margin:0;
    color:#d5d5d5;
    line-height:1.5;
}

.event-info a{
    margin-top:auto;
	align-self:flex-start;
    display:inline-block;
    padding:12px 18px;
    background:#ffcc28;
    color:#111;
    border-radius:999px;
    font-weight:700;
    text-decoration:none;
    transition:.25s;
}

.event-info a:hover{
    transform:scale(1.05);
	box-shadow:0 0 25px rgba(255,204,40,.18);
}

/* ==========================================
   SERVICES PHOTO CAROUSELS
========================================== */

.services-section {
  background: #07070c;
}

.services-list {
  display: grid;
  gap: 60px;
  margin-top: 45px;
}

.service-row {
  text-align: left;
}

.service-row-header {
  max-width: 850px;
  margin-bottom: 22px;
}

.service-row-header h3 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.service-row-header p {
  color: #cccccc;
  font-size: 1.05rem;
}

.service-gallery {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.service-gallery-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 0 30px rgba(0,0,0,.45);
  display: block;
}

.service-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 999px;
  background: #ffcc28;
  color: #050505;
  font-size: 2.2rem;
  font-weight: 900;
  cursor: pointer;
  z-index: 5;
}

.service-arrow-left {
  left: 18px;
}

.service-arrow-right {
  right: 18px;
}

.service-arrow:hover {
  box-shadow: 0 0 22px rgba(255,204,40,.35);
}

.service-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.service-dot {
  width: 11px;
  height: 11px;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: .2s;
}

.service-dot.active {
  background: #ffcc28;
  transform: scale(1.35);
}

.service-dot:hover {
  background: #ffcc28;
}

.service-no-photos {
  color: #aaaaaa;
  padding: 20px;
  border: 1px dashed rgba(255,255,255,.25);
  border-radius: 14px;
}

/* ==========================================
   PRIVATE DJ AREA / LOGIN PAGES
========================================== */
.member-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(255, 204, 40, 0.10), transparent 28%),
    radial-gradient(circle at bottom left, rgba(50, 50, 100, 0.35), transparent 34%),
    #07070c;
}

.member-main {
  min-height: 100vh;
  padding: 132px 5% 60px;
}

.login-main {
  display: grid;
  place-items: center;
}

.login-shell {
  width: min(1080px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(13, 13, 23, 0.88);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
}

.login-brand-panel {
  position: relative;
  min-height: 620px;
  padding: 58px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(7, 7, 12, 0.10), rgba(7, 7, 12, 0.92)),
    url("/assets/images/background.jpg") center/cover no-repeat;
}

.login-brand-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 204, 40, 0.10), transparent 45%);
  pointer-events: none;
}

.login-brand-copy {
  position: relative;
  z-index: 1;
  max-width: 540px;
}

.login-brand-copy img {
  width: min(250px, 70%);
  height: auto;
  margin-bottom: 28px;
}

.login-brand-copy h1 {
  margin-bottom: 14px;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.95;
  text-transform: uppercase;
  font-style: italic;
}

.login-brand-copy p {
  color: #d6d6d6;
  font-size: 1.05rem;
}

.login-panel {
  padding: 58px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-panel .eyebrow {
  margin-bottom: 8px;
}

.login-panel h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-transform: uppercase;
}

.login-intro {
  margin-bottom: 30px;
  color: #bdbdbd;
}

.member-form {
  display: grid;
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
  text-align: left;
}

.form-field label {
  color: #eeeeee;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-field textarea {
  min-height: 135px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: #ffcc28;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 3px rgba(255, 204, 40, 0.12);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #8f8f98;
}

.password-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-top: -3px;
  color: #bdbdbd;
  font-size: 0.88rem;
}

.remember-field {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.remember-field input {
  accent-color: #ffcc28;
}

.text-link {
  color: #ffcc28;
  font-weight: 800;
}

.text-link:hover {
  text-decoration: underline;
}

.member-submit {
  width: 100%;
  margin-top: 6px;
  padding: 15px 22px;
  border: 0;
  border-radius: 999px;
  background: #ffcc28;
  color: #080808;
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.member-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 204, 40, 0.20);
}

.login-note {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  color: #8f8f98;
  font-size: 0.86rem;
  text-align: center;
}

.dashboard-shell {
  width: min(1450px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 28px;
}

.dashboard-sidebar {
  position: sticky;
  top: 122px;
  align-self: start;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 22px;
  background: rgba(15, 15, 25, 0.82);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.30);
}

.dashboard-user {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 20px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.dashboard-avatar {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffcc28;
  color: #080808;
  font-size: 1.15rem;
  font-weight: 900;
}

.dashboard-user strong,
.dashboard-user span {
  display: block;
}

.dashboard-user span {
  color: #a9a9b2;
  font-size: 0.8rem;
}

.dashboard-nav {
  display: grid;
  gap: 8px;
}

.dashboard-nav a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 13px;
  border-radius: 11px;
  color: #c9c9cf;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.dashboard-nav a:hover,
.dashboard-nav a.active {
  background: rgba(255, 204, 40, 0.13);
  color: #ffcc28;
}

.dashboard-nav-divider {
  height: 1px;
  margin: 10px 0;
  background: rgba(255, 255, 255, 0.10);
}

.dashboard-content {
  min-width: 0;
}

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

.dashboard-heading h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
}

.dashboard-heading p:not(.eyebrow) {
  margin-top: 9px;
  color: #bdbdc5;
}

.dashboard-action {
  flex-shrink: 0;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  background: #ffcc28;
  color: #080808;
  font-weight: 900;
  cursor: pointer;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
}

.dashboard-card {
  grid-column: span 12;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
}

.dashboard-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.dashboard-card-header h2 {
  font-size: 1.15rem;
  text-transform: uppercase;
}

.dashboard-card-header span,
.dashboard-card-header a {
  color: #ffcc28;
  font-size: 0.82rem;
  font-weight: 800;
}

.dashboard-card-body {
  padding: 22px;
}

.schedule-summary {
  grid-column: span 12;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.summary-card {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.summary-card span,
.summary-card strong {
  display: block;
}

.summary-card span {
  color: #a9a9b2;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.summary-card strong {
  margin-top: 7px;
  color: #ffcc28;
  font-size: 1.7rem;
}

.schedule-list {
  display: grid;
  gap: 14px;
}

.schedule-item {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.035);
}

.schedule-date-box {
  padding: 10px 8px;
  border-radius: 13px;
  background: #ffcc28;
  color: #080808;
  text-align: center;
}

.schedule-date-box span,
.schedule-date-box strong {
  display: block;
}

.schedule-date-box span {
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.schedule-date-box strong {
  font-size: 1.7rem;
  line-height: 1;
}

.schedule-info h3 {
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.schedule-info p {
  color: #aaaaB4;
  font-size: 0.88rem;
}

.schedule-status {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(76, 200, 120, 0.14);
  color: #73dc98;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.schedule-status.pending {
  background: rgba(255, 204, 40, 0.12);
  color: #ffcc28;
}

.calendar-placeholder {
  min-height: 350px;
}

.calendar-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}

.calendar-toolbar h3 {
  font-size: 1.2rem;
}

.calendar-controls {
  display: flex;
  gap: 8px;
}

.calendar-controls button {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  cursor: pointer;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.calendar-day-label,
.calendar-day {
  min-height: 45px;
  padding: 8px;
  border-radius: 10px;
  text-align: center;
}

.calendar-day-label {
  min-height: auto;
  color: #8f8f98;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.calendar-day {
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.025);
  color: #d3d3d8;
}

.calendar-day.muted {
  opacity: 0.28;
}

.calendar-day.event-day {
  border-color: rgba(255, 204, 40, 0.55);
  background: rgba(255, 204, 40, 0.10);
  color: #ffcc28;
  font-weight: 900;
}

/* ==========================================
   DJ PORTAL MOBILE CONTROL NAV - BASE
========================================== */
.mobile-control-nav {
  display: none;
}