/**
 * DJProf.online Theme
 *
 * Main LESS file. Imports all partials.
 * Palette variables are auto-injected by AssetManager.
 *
 * @ai-context Master stylesheet. Palette vars (@base, @light, etc.) are
 *             injected by the LESS compiler from Palette class.
 */
/**
 * Theme Variables
 *
 * Fallback variables when palette is not injected.
 * Palette variables (@base, @light, @dark, etc.) override these.
 *
 * @ai-context Palette vars are auto-injected before this file.
 *             These serve as fallbacks only.
 */
/**
 * Layout Styles
 *
 * Header, footer, main content area, and page wrapper.
 *
 * @ai-context Core layout structure. Palette vars used for colors.
 */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #e8e8f0;
  background-color: #0a0a1a;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a {
  color: #7c4dff;
  text-decoration: none;
  transition: color 150ms ease;
}
a:hover {
  color: #534bae;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul,
ol {
  list-style: none;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background-color: #121230;
  border-bottom: 1px solid #2a2a4a;
}
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.header-logo .logo-link {
  display: flex;
  align-items: center;
  color: #e8e8f0;
  font-weight: 700;
  font-size: 1.25rem;
}
.header-logo .logo-link:hover {
  color: #7c4dff;
}
.header-logo .logo-text {
  letter-spacing: 2px;
  text-transform: uppercase;
}
.header-nav .nav-list {
  display: flex;
  gap: 1.5rem;
}
.header-nav .nav-link {
  color: #9e9eb8;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: color 150ms ease;
}
.header-nav .nav-link:hover,
.header-nav .nav-link.active {
  color: #e8e8f0;
}
.header-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #7c4dff;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.admin-icon {
  color: #9e9eb8;
  display: flex;
  align-items: center;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: all 150ms ease;
}
.admin-icon:hover {
  color: #e8e8f0;
  background-color: rgba(255, 255, 255, 0.05);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #e8e8f0;
  transition: all 150ms ease;
}
@media (max-width: 768px) {
  .header-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background-color: #121230;
    border-bottom: 1px solid #2a2a4a;
    padding: 1rem;
  }
  .header-nav.open {
    display: block;
  }
  .header-nav .nav-list {
    flex-direction: column;
    gap: 0.5rem;
  }
  .header-nav .nav-link {
    display: block;
    padding: 0.5rem 1rem;
  }
  .nav-toggle {
    display: flex;
  }
}
.site-main {
  flex: 1;
  padding: 2rem 0;
}
.site-footer {
  background-color: #121230;
  border-top: 1px solid #2a2a4a;
  padding: 2rem 0;
  margin-top: auto;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copyright {
  color: #9e9eb8;
  font-size: 0.875rem;
}
.footer-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.footer-link {
  color: #9e9eb8;
  font-size: 0.875rem;
  transition: color 150ms ease;
}
.footer-link:hover {
  color: #e8e8f0;
}
.footer-social {
  display: flex;
  gap: 0.5rem;
}
.social-icon {
  color: #9e9eb8;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 0.5rem;
  transition: all 150ms ease;
}
.social-icon:hover {
  color: #e8e8f0;
  background-color: rgba(255, 255, 255, 0.05);
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-menu {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.page-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.page-header {
  padding: 1rem 0;
  border-bottom: 1px solid #2a2a4a;
  margin-bottom: 2rem;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #9e9eb8;
  margin-bottom: 1rem;
}
.breadcrumb-link {
  color: #9e9eb8;
}
.breadcrumb-link:hover {
  color: #e8e8f0;
}
.breadcrumb-separator {
  color: #2a2a4a;
}
.breadcrumb-current {
  color: #e8e8f0;
}
.page-submenu .submenu-list {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.page-submenu .submenu-link {
  color: #9e9eb8;
  font-size: 0.875rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  transition: all 150ms ease;
}
.page-submenu .submenu-link:hover {
  color: #e8e8f0;
  background-color: rgba(255, 255, 255, 0.05);
}
.page-submenu .submenu-link.active {
  color: #e8e8f0;
  background-color: #7c4dff;
}
.page-content {
  animation: fadeIn 300ms ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/**
 * Component Styles
 *
 * Reusable UI components: buttons, cards, forms, gallery, modal, etc.
 *
 * @ai-context Shared components used across pages.
 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 150ms ease;
  text-decoration: none;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-primary {
  background-color: #7c4dff;
  color: #fff;
}
.btn-primary:hover:not(:disabled) {
  background-color: #534bae;
  color: #fff;
}
.btn-secondary {
  background-color: transparent;
  color: #e8e8f0;
  border: 1px solid #2a2a4a;
}
.btn-secondary:hover:not(:disabled) {
  background-color: rgba(255, 255, 255, 0.05);
}
.btn-danger {
  background-color: #f44336;
  color: #fff;
}
.btn-danger:hover:not(:disabled) {
  opacity: 0.9;
}
.btn-sm {
  padding: 0.25rem 1rem;
  font-size: 0.875rem;
}
.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}
.card {
  background-color: #121230;
  border: 1px solid #2a2a4a;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 300ms ease;
}
.card:hover {
  border-color: #7c4dff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.card-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}
.card-image:hover img {
  transform: scale(1.05);
}
.card-body {
  padding: 1rem;
}
.card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.card-meta {
  font-size: 0.875rem;
  color: #9e9eb8;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.form-group {
  margin-bottom: 1rem;
}
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: #9e9eb8;
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  color: #e8e8f0;
  background-color: #0a0a1a;
  border: 1px solid #2a2a4a;
  border-radius: 0.5rem;
  transition: border-color 150ms ease;
}
.form-input:focus {
  outline: none;
  border-color: #7c4dff;
}
.form-input::placeholder {
  color: #9e9eb8;
}
.form-textarea {
  min-height: 120px;
  resize: vertical;
}
.form-error {
  font-size: 0.875rem;
  color: #f44336;
  margin-top: 0.25rem;
}
.modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease;
}
.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}
.modal {
  background-color: #121230;
  border-radius: 0.75rem;
  max-width: 90vw;
  max-height: 90vh;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 300ms ease;
}
.modal-backdrop.active .modal {
  transform: scale(1);
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #2a2a4a;
}
.modal-title {
  font-size: 1.125rem;
  font-weight: 600;
}
.modal-close {
  background: none;
  border: none;
  color: #9e9eb8;
  cursor: pointer;
  padding: 0.25rem;
  font-size: 1.25rem;
  line-height: 1;
  transition: color 150ms ease;
}
.modal-close:hover {
  color: #e8e8f0;
}
.modal-body {
  padding: 1.5rem;
  overflow-y: auto;
}
.alert {
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}
.alert-success {
  background-color: rgba(76, 175, 80, 0.15);
  border: 1px solid #4caf50;
  color: #4caf50;
}
.alert-error {
  background-color: rgba(244, 67, 54, 0.15);
  border: 1px solid #f44336;
  color: #f44336;
}
.alert-warning {
  background-color: rgba(255, 152, 0, 0.15);
  border: 1px solid #ff9800;
  color: #ff9800;
}
.alert-info {
  background-color: rgba(33, 150, 243, 0.15);
  border: 1px solid #2196f3;
  color: #2196f3;
}
.spinner {
  width: 24px;
  height: 24px;
  border: 2px solid #2a2a4a;
  border-top-color: #7c4dff;
  border-radius: 9999px;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
  background-color: #7c4dff;
  color: #fff;
}
.media-player {
  position: relative;
  background-color: #0a0a1a;
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.media-player .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background-color: #7c4dff;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 150ms ease;
  border: none;
}
.media-player .play-button:hover {
  background-color: #534bae;
  transform: translate(-50%, -50%) scale(1.1);
}
.media-player .play-button svg {
  width: 24px;
  height: 24px;
  fill: #fff;
  margin-left: 4px;
}
.audio-player {
  background-color: #121230;
  border: 1px solid #2a2a4a;
  border-radius: 0.75rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.audio-player .play-button {
  width: 48px;
  height: 48px;
  background-color: #7c4dff;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  flex-shrink: 0;
}
.audio-player .play-button:hover {
  background-color: #534bae;
}
.audio-player .play-button svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  margin-left: 2px;
}
.audio-player .track-info {
  flex: 1;
  min-width: 0;
}
.audio-player .track-title {
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.audio-player .track-meta {
  font-size: 0.875rem;
  color: #9e9eb8;
}
/**
 * Page-Specific Styles
 *
 * Styles for individual page layouts.
 *
 * @ai-context Page-specific overrides and layouts.
 */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-section .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: -1;
}
.hero-section .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 26, 0.7), rgba(10, 10, 26, 0.95));
  z-index: -1;
}
.hero-section .hero-content {
  max-width: 700px;
  padding: 2rem;
}
.hero-section .hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero-section .hero-subtitle {
  font-size: 1.125rem;
  color: #9e9eb8;
  margin-bottom: 2rem;
  line-height: 1.75;
}
.hero-section .hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.links-section {
  padding: 4rem 0;
  text-align: center;
}
.links-section .section-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.links-section .links-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.links-section .link-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #9e9eb8;
  transition: all 150ms ease;
}
.links-section .link-item:hover {
  color: #7c4dff;
  transform: translateY(-4px);
}
.links-section .link-item .link-icon {
  width: 48px;
  height: 48px;
}
.links-section .link-item .link-label {
  font-size: 0.875rem;
  font-weight: 500;
}
.djsets-page .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.djsets-page .section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.djsets-page .section-subtitle {
  color: #9e9eb8;
  font-size: 1.125rem;
}
.releases-page .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.releases-page .section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.releases-page .section-subtitle {
  color: #9e9eb8;
  font-size: 1.125rem;
}
.release-detail {
  max-width: 800px;
  margin: 0 auto;
}
.release-detail .back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #9e9eb8;
  font-size: 0.875rem;
  margin-bottom: 2rem;
}
.release-detail .back-link:hover {
  color: #e8e8f0;
}
.release-detail .release-header {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .release-detail .release-header {
    grid-template-columns: 1fr;
  }
}
.release-detail .release-cover {
  aspect-ratio: 1;
  border-radius: 0.75rem;
  overflow: hidden;
  background-color: #121230;
}
.release-detail .release-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.release-detail .release-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.release-detail .release-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.release-detail .release-artist {
  font-size: 1.125rem;
  color: #9e9eb8;
  margin-bottom: 1rem;
}
.release-detail .release-meta {
  font-size: 0.875rem;
  color: #9e9eb8;
}
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
}
@media (max-width: 992px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }
}
.blog-main .featured-post {
  margin-bottom: 3rem;
}
.blog-sidebar .sidebar-section {
  margin-bottom: 2rem;
}
.blog-sidebar .sidebar-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #2a2a4a;
}
.blog-sidebar .post-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.blog-sidebar .post-link {
  display: block;
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: #9e9eb8;
  font-size: 0.875rem;
  transition: all 150ms ease;
}
.blog-sidebar .post-link:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: #e8e8f0;
}
.blog-post-detail {
  max-width: 800px;
  margin: 0 auto;
}
.blog-post-detail .back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #9e9eb8;
  font-size: 0.875rem;
  margin-bottom: 2rem;
}
.blog-post-detail .back-link:hover {
  color: #e8e8f0;
}
.blog-post-detail .post-header {
  margin-bottom: 2rem;
}
.blog-post-detail .post-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.blog-post-detail .post-meta {
  font-size: 0.875rem;
  color: #9e9eb8;
}
.blog-post-detail .post-content {
  font-size: 1rem;
  line-height: 1.75;
}
.blog-post-detail .post-content p {
  margin-bottom: 1rem;
}
.blog-post-detail .post-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
}
.blog-post-detail .post-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
}
.blog-post-detail .post-content img {
  border-radius: 0.5rem;
  margin: 1.5rem 0;
}
.blog-post-detail .post-content blockquote {
  border-left: 3px solid #7c4dff;
  padding-left: 1rem;
  margin: 1.5rem 0;
  color: #9e9eb8;
  font-style: italic;
}
.gear-page .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.gear-page .section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.gear-page .section-subtitle {
  color: #9e9eb8;
  font-size: 1.125rem;
}
.gear-page .coming-soon {
  text-align: center;
  padding: 4rem;
  color: #9e9eb8;
}
.gear-page .coming-soon .coming-soon-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.gear-page .coming-soon .coming-soon-text {
  font-size: 1.125rem;
}
.bio-page {
  max-width: 800px;
  margin: 0 auto;
}
.bio-page .bio-header {
  position: relative;
  margin-bottom: 2rem;
}
.bio-page .bio-image-wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 0.75rem;
  overflow: hidden;
  background-color: #121230;
}
.bio-page .bio-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.bio-page .bio-image-wrapper .bio-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  background: linear-gradient(to top, rgba(10, 10, 26, 0.9), transparent);
}
.bio-page .bio-name {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.bio-page .bio-tagline {
  font-size: 1.125rem;
  color: #9e9eb8;
}
.bio-page .bio-text {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.bio-page .bio-text p {
  margin-bottom: 1rem;
}
.bio-page .social-links .social-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.bio-page .social-links .social-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.bio-page .social-links .social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: #121230;
  border: 1px solid #2a2a4a;
  border-radius: 0.5rem;
  color: #e8e8f0;
  font-size: 0.875rem;
  transition: all 150ms ease;
}
.bio-page .social-links .social-link:hover {
  border-color: #7c4dff;
  color: #7c4dff;
}
.admin-login {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.admin-login .login-card {
  width: 100%;
  max-width: 400px;
  background-color: #121230;
  border: 1px solid #2a2a4a;
  border-radius: 0.75rem;
  padding: 2rem;
}
.admin-login .login-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}
.admin-login .login-form .form-group {
  margin-bottom: 1rem;
}
.admin-login .login-error {
  margin-top: 1rem;
}
.admin-dashboard .dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.admin-dashboard .dashboard-title {
  font-size: 1.5rem;
  font-weight: 700;
}
.admin-dashboard .dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.admin-dashboard .dashboard-card {
  background-color: #121230;
  border: 1px solid #2a2a4a;
  border-radius: 0.75rem;
  padding: 1.5rem;
}
.admin-dashboard .dashboard-card .card-title {
  font-size: 0.875rem;
  color: #9e9eb8;
  margin-bottom: 0.5rem;
}
.admin-dashboard .dashboard-card .card-value {
  font-size: 2rem;
  font-weight: 700;
}
