/**
* Template Name: Scaffold
* Template URL: https://bootstrapmade.com/scaffold-bootstrap-metro-style-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Nunito Sans",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #555555; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #364146; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #009cea; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #828c91;  /* The default color of the main navmenu links */
  --nav-hover-color: #009cea; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #555555; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #009cea; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f6f8fa;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

html.aimusic-dark-mode,
body.aimusic-dark-mode {
  --background-color: #0f172a;
  --default-color: #dbe4f0;
  --heading-color: #ffffff;
  --surface-color: #172033;
  --contrast-color: #ffffff;
  --nav-color: #dbe4f0;
  --nav-hover-color: #c084fc;
  --nav-mobile-background-color: #111827;
  --nav-dropdown-background-color: #111827;
  --nav-dropdown-color: #e5e7eb;
  --nav-dropdown-hover-color: #c084fc;
}

html.aimusic-dark-mode,
html.aimusic-dark-mode body,
body.aimusic-dark-mode,
html.aimusic-dark-mode .main,
html.aimusic-dark-mode .section,
body.aimusic-dark-mode .main,
body.aimusic-dark-mode .section {
  background-color: #0f172a !important;
  color: #dbe4f0 !important;
}

html.aimusic-dark-mode .header,
html.aimusic-dark-mode .footer,
html.aimusic-dark-mode .light-background,
body.aimusic-dark-mode .header,
body.aimusic-dark-mode .footer,
body.aimusic-dark-mode .light-background {
  background-color: #111827 !important;
  color: #dbe4f0 !important;
}

html.aimusic-dark-mode .card,
html.aimusic-dark-mode .member,
html.aimusic-dark-mode .pricing .pricing-item,
html.aimusic-dark-mode .aimusic-user-panel,
html.aimusic-dark-mode .list-group-item,
html.aimusic-dark-mode .form-control,
body.aimusic-dark-mode .card,
body.aimusic-dark-mode .member,
body.aimusic-dark-mode .pricing .pricing-item,
body.aimusic-dark-mode .aimusic-user-panel,
body.aimusic-dark-mode .list-group-item,
body.aimusic-dark-mode .form-control {
  background-color: #172033 !important;
  color: #dbe4f0 !important;
}

html.aimusic-dark-mode .form-control,
html.aimusic-dark-mode .list-group-item,
body.aimusic-dark-mode .form-control,
body.aimusic-dark-mode .list-group-item {
  border-color: rgba(255, 255, 255, 0.14) !important;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Admin Center
------------------------------*/
.aimusic-admin-body {
  background: #f6f7fb;
  color: #1f2937;
}

.admin-topbar {
  align-items: center;
  background: #111827;
  color: #fff;
  display: flex;
  gap: 18px;
  min-height: 64px;
  padding: 12px 24px;
}

.admin-brand {
  color: #fff;
  font: 800 20px/1 var(--heading-font);
  text-decoration: none;
  white-space: nowrap;
}

.admin-nav {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-nav a,
.admin-account a {
  border-radius: 8px;
  color: #d1d5db;
  font-weight: 700;
  padding: 8px 10px;
  text-decoration: none;
}

.admin-nav a:hover,
.admin-account a:hover {
  background: #374151;
  color: #fff;
}

.admin-account {
  align-items: center;
  display: flex;
  gap: 10px;
  white-space: nowrap;
}

.admin-main {
  margin: 0 auto;
  max-width: 1480px;
  padding: 28px 20px 48px;
}

.admin-page-title h1 {
  color: #111827;
  font-size: 30px;
  margin: 0 0 20px;
}

.admin-stat-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-bottom: 18px;
}

.admin-stat-grid article,
.admin-stat-link,
.admin-panel {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
}

.admin-stat-grid article {
  padding: 18px;
}

.admin-stat-link {
  color: inherit;
  display: block;
  padding: 18px;
  text-decoration: none;
}

.admin-stat-link:hover {
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.1);
  color: inherit;
  transform: translateY(-1px);
}

.admin-stat-grid span {
  color: #6b7280;
  display: block;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-stat-grid strong {
  color: #111827;
  display: block;
  font-size: 30px;
  line-height: 1.1;
  margin-top: 8px;
}

.admin-grid-two {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 18px;
}

.admin-panel {
  margin-bottom: 18px;
  padding: 20px;
}

.admin-panel h2 {
  color: #111827;
  font-size: 20px;
  margin: 0 0 16px;
}

.admin-bar-chart {
  display: grid;
  gap: 10px;
}

.admin-bar-row {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(90px, 160px) 1fr minmax(34px, auto);
}

.admin-bar-row span,
.admin-bar-row strong {
  color: #374151;
  font-weight: 800;
}

.admin-bar-row div {
  background: #e5e7eb;
  border-radius: 999px;
  height: 12px;
  overflow: hidden;
}

.admin-bar-row i {
  background: #2563eb;
  display: block;
  height: 100%;
}

.admin-donut {
  border-radius: 50%;
  height: 180px;
  margin: 4px auto 16px;
  width: 180px;
}

.admin-chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.admin-chart-legend span {
  align-items: center;
  color: #374151;
  display: inline-flex;
  font-weight: 700;
  gap: 6px;
}

.admin-chart-legend i {
  border-radius: 999px;
  display: inline-block;
  height: 10px;
  width: 10px;
}

.legend-active {
  background: #16a34a;
}

.legend-pending {
  background: #f59e0b;
}

.legend-unpublished {
  background: #6b7280;
}

.admin-line-chart {
  align-items: end;
  border-bottom: 1px solid #d1d5db;
  display: flex;
  gap: 8px;
  min-height: 160px;
  padding: 12px 0 0;
}

.admin-line-chart div {
  background: #7c3aed;
  border-radius: 6px 6px 0 0;
  flex: 1;
  min-width: 10px;
}

.admin-chart-legend--compact {
  font-size: 12px;
  margin-top: 12px;
}

.admin-action-list,
.admin-filter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.admin-bulk-actions {
  align-items: center;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 16px;
  padding: 12px;
}

.admin-bulk-actions form {
  margin: 0;
}

.admin-action-list a {
  align-items: center;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  color: #111827;
  display: inline-flex;
  font-weight: 800;
  gap: 8px;
  padding: 12px 14px;
  text-decoration: none;
}

.admin-topbar .admin-account a:first-child {
  background: rgba(255, 255, 255, 0.08);
}

.admin-filter-form .form-control,
.admin-filter-form .form-select {
  max-width: 320px;
}

.admin-inline-edit,
.admin-stacked-form {
  display: grid;
  gap: 8px;
}

.admin-role-edit {
  min-width: 280px;
}

.admin-check {
  align-items: center;
  display: inline-flex;
  gap: 6px;
  font-weight: 700;
}

.admin-permission-list {
  display: grid;
  gap: 6px;
}

.admin-permission-list label {
  font-size: 14px;
}

.admin-table-wide {
  min-width: 1100px;
}

.admin-sortable th {
  cursor: pointer;
  user-select: none;
}

.admin-sortable th[data-sortable="false"] {
  cursor: default;
}

.admin-panel-header {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.admin-limit-summary {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-limit-summary div {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 12px;
}

.admin-limit-summary span {
  color: #6b7280;
  display: block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-limit-summary strong {
  color: #111827;
  display: block;
  font-size: 20px;
  margin-top: 6px;
}

.admin-artwork-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.admin-filter-tabs a {
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  color: #111827;
  font-weight: 800;
  padding: 8px 12px;
  text-decoration: none;
}

.admin-filter-tabs a.active {
  background: #111827;
  color: #fff;
}

.admin-artwork-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
}

.admin-artwork-card__image-link {
  align-self: center;
  display: block;
  width: 200px;
}

.admin-artwork-card img {
  aspect-ratio: 1 / 1;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  display: block;
  object-fit: cover;
  width: 200px !important;
  height: 200px !important;
  max-height: 200px !important;
  max-width: 200px !important;
}

.admin-artwork-card__meta {
  display: grid;
  gap: 4px;
}

.admin-artwork-card__meta strong {
  color: #111827;
  font-size: 14px;
  word-break: break-word;
}

.admin-artwork-card__meta span {
  color: #6b7280;
  font-size: 13px;
}

.admin-artwork-card__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-pagination {
  margin-top: 18px;
}

.admin-artwork {
  border-radius: 6px;
  display: block;
  height: auto;
  max-width: 72px;
}

@media (max-width: 1100px) {
  .admin-stat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .admin-grid-two {
    grid-template-columns: 1fr;
  }

  .admin-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-artwork-grid,
  .admin-limit-summary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .admin-stat-grid {
    grid-template-columns: 1fr;
  }

  .admin-bar-row {
    grid-template-columns: 1fr;
  }
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.site-logo-mark {
  align-items: center;
  display: inline-flex;
  line-height: 1;
}

.site-logo-image {
  display: block;
  height: auto;
  max-height: 78px;
  max-width: min(460px, 76vw);
  width: auto;
}

.site-logo-dark {
  display: none;
}

html[data-aimusic-theme="dark"] .site-logo-light,
html.aimusic-dark-mode .site-logo-light,
body.aimusic-dark-mode .site-logo-light {
  display: none;
}

html[data-aimusic-theme="dark"] .site-logo-dark,
html.aimusic-dark-mode .site-logo-dark,
body.aimusic-dark-mode .site-logo-dark {
  display: block;
}

.header .logo img {
  margin-right: 0;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .header-social-links {
  padding-left: 15px;
}

.header .header-social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding-left: 6px;
  display: inline-block;
  transition: 0.3s;
  font-size: 16px;
}

.header .header-social-links a:hover {
  color: var(--accent-color);
}

.header .header-social-links a i {
  line-height: 0px;
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .header-social-links {
    order: 2;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu .theme-mode-toggle,
  .navmenu .nav-artist-cta {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    font-family: var(--nav-font);
    font-size: 14px;
    font-weight: 800;
    gap: 7px;
    justify-content: center;
    line-height: 1;
    margin: 10px 6px;
    padding: 11px 15px;
    text-decoration: none;
    white-space: nowrap;
  }

  .navmenu .theme-mode-toggle {
    background: color-mix(in srgb, var(--default-color), transparent 92%);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 78%);
    color: var(--nav-color);
    cursor: pointer;
  }

  .navmenu a.nav-artist-cta,
  .navmenu a.nav-artist-cta:focus,
  .navmenu a.nav-artist-cta:hover {
    background: #7c3aed !important;
    border: 1px solid #7c3aed !important;
    color: #fff !important;
    padding: 11px 15px !important;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu .theme-mode-toggle,
  .navmenu .nav-artist-cta {
    align-items: center;
    border-radius: 10px;
    display: flex;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 800;
    gap: 9px;
    justify-content: center;
    margin: 8px 20px;
    padding: 12px 16px;
    text-decoration: none;
    width: calc(100% - 40px);
  }

  .navmenu .theme-mode-toggle {
    background: color-mix(in srgb, var(--nav-dropdown-color), transparent 90%);
    border: 1px solid color-mix(in srgb, var(--nav-dropdown-color), transparent 80%);
    color: var(--nav-dropdown-color);
    cursor: pointer;
  }

  .navmenu a.nav-artist-cta,
  .navmenu a.nav-artist-cta:focus,
  .navmenu a.nav-artist-cta:hover {
    background: #7c3aed !important;
    border: 1px solid #7c3aed !important;
    color: #fff !important;
    padding: 12px 16px !important;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  background-color: color-mix(in srgb, var(--background-color), white 5%);
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer h4 {
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}

.footer h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 30px 0;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}

.footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  color: var(--accent-color);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  text-decoration: none;
}

html[data-aimusic-theme="dark"] .footer,
html[data-aimusic-theme="dark"] .footer.light-background,
html.aimusic-dark-mode .footer,
html.aimusic-dark-mode .footer.light-background,
body.aimusic-dark-mode .footer,
body.aimusic-dark-mode .footer.light-background {
  --background-color: #07173e;
  --default-color: #dbe4f0;
  --heading-color: #ffffff;
  --surface-color: #172033;
  --accent-color: #c084fc;
  background: #07173e !important;
  color: #dbe4f0 !important;
}

html[data-aimusic-theme="dark"] .footer .footer-top,
html[data-aimusic-theme="dark"] .footer .copyright,
html.aimusic-dark-mode .footer .footer-top,
html.aimusic-dark-mode .footer .copyright,
body.aimusic-dark-mode .footer .footer-top,
body.aimusic-dark-mode .footer .copyright {
  background: #07173e !important;
  color: #dbe4f0 !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
}

html[data-aimusic-theme="dark"] .footer h4,
html[data-aimusic-theme="dark"] .footer .sitename,
html[data-aimusic-theme="dark"] .footer .footer-about .logo span,
html.aimusic-dark-mode .footer h4,
html.aimusic-dark-mode .footer .sitename,
html.aimusic-dark-mode .footer .footer-about .logo span,
body.aimusic-dark-mode .footer h4,
body.aimusic-dark-mode .footer .sitename,
body.aimusic-dark-mode .footer .footer-about .logo span {
  color: #ffffff !important;
}

html[data-aimusic-theme="dark"] .footer p,
html[data-aimusic-theme="dark"] .footer div,
html[data-aimusic-theme="dark"] .footer li,
html.aimusic-dark-mode .footer p,
html.aimusic-dark-mode .footer div,
html.aimusic-dark-mode .footer li,
body.aimusic-dark-mode .footer p,
body.aimusic-dark-mode .footer div,
body.aimusic-dark-mode .footer li {
  color: #dbe4f0 !important;
}

html[data-aimusic-theme="dark"] .footer a,
html[data-aimusic-theme="dark"] .footer .footer-links ul a,
html.aimusic-dark-mode .footer a,
html.aimusic-dark-mode .footer .footer-links ul a,
body.aimusic-dark-mode .footer a,
body.aimusic-dark-mode .footer .footer-links ul a {
  color: #e5e7eb !important;
}

html[data-aimusic-theme="dark"] .footer a:hover,
html[data-aimusic-theme="dark"] .footer .footer-links ul a:hover,
html.aimusic-dark-mode .footer a:hover,
html.aimusic-dark-mode .footer .footer-links ul a:hover,
body.aimusic-dark-mode .footer a:hover,
body.aimusic-dark-mode .footer .footer-links ul a:hover {
  color: #c084fc !important;
}

html[data-aimusic-theme="dark"] .footer .social-links a,
html.aimusic-dark-mode .footer .social-links a,
body.aimusic-dark-mode .footer .social-links a {
  background: #172033 !important;
  color: #c084fc !important;
}

html[data-aimusic-theme="dark"] .footer .social-links a:hover,
html.aimusic-dark-mode .footer .social-links a:hover,
body.aimusic-dark-mode .footer .social-links a:hover {
  background: #c084fc !important;
  color: #ffffff !important;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  background: url(../img/hero-bg.png) right center no-repeat;
  width: 100%;
  min-height: 60vh;
  position: relative;
  padding: 120px 0 60px 0;
  display: flex;
  align-items: center;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 40px;
}

.about .content h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
}

.about .content h2 {
  font-size: 24px;
  font-weight: 700;
}

.about .content p {
  margin: 15px 0 30px 0;
  line-height: 24px;
}

.about .content .btn-read-more {
  color: var(--contrast-color);
  background: var(--accent-color);
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
}

.about .content .btn-read-more span {
  font-family: var(--default-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.about .content .btn-read-more i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.about .content .btn-read-more:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  color: var(--heading-color);
  padding: 15px 0;
  transition: 0.3s;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 4px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 575px) {
  .features .nav-link h4 {
    font-size: 16px;
  }
}

.features .nav-link:hover {
  color: var(--accent-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.features .nav-link.active {
  background-color: var(--background-color);
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.features .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-top: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  height: 100%;
}

.services .service-item .icon {
  margin-bottom: 10px;
}

.services .service-item .icon i {
  color: var(--accent-color);
  font-size: 36px;
  transition: 0.3s;
}

.services .service-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.services .service-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  transform: translateY(-10px);
}

.services .service-item:hover h4 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 120px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  color: var(--default-color);
  font-size: 28px;
  font-weight: 700;
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: var(--contrast-color);
  background: var(--accent-color);
}

.call-to-action .cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid var(--background-color);
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  position: relative;
}

.team .member .pic {
  overflow: hidden;
  margin-bottom: 50px;
}

.team .member .member-info {
  background-color: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: -50px;
  left: 20px;
  right: 20px;
  padding: 20px 15px;
  overflow: hidden;
  transition: 0.5s;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  position: relative;
  padding-bottom: 10px;
}

.team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  bottom: 0;
  left: 0;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member .social {
  position: absolute;
  right: 15px;
  bottom: 15px;
}

.team .member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.team .member .social a:hover {
  color: var(--accent-color);
}

.team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  height: 100%;
  position: relative;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 18px;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  background-color: var(--background-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing-mobile-callout {
  display: none;
}

.pricing-billing-toggle {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 34px;
  font-weight: 800;
}

.pricing-switch {
  cursor: pointer;
  display: inline-flex;
}

.pricing-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pricing-switch span {
  background: color-mix(in srgb, var(--default-color), transparent 84%);
  border-radius: 999px;
  display: inline-block;
  height: 30px;
  position: relative;
  transition: background 0.2s ease;
  width: 58px;
}

.pricing-switch span::after {
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
  content: "";
  height: 24px;
  left: 3px;
  position: absolute;
  top: 3px;
  transition: transform 0.2s ease;
  width: 24px;
}

.pricing-switch input:checked + span {
  background: var(--accent-color);
}

.pricing-switch input:checked + span::after {
  transform: translateX(28px);
}

.pricing .yearly-price,
.pricing.show-yearly .monthly-price {
  display: none;
}

.pricing.show-yearly .yearly-price {
  display: inline;
}

.pricing h4 > .monthly-price,
.pricing h4 > .yearly-price {
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-size: inherit;
  font-weight: 600;
}

.pricing.show-yearly .pricing-discount.yearly-price {
  display: inline-block;
}

.pricing-discount {
  background: #111827;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  margin: -6px 0 16px;
  padding: 6px 12px;
  width: fit-content;
}

.pricing .featured .pricing-discount {
  background: #fff;
  color: var(--accent-color);
}

.pricing .pricing-item {
  overflow: hidden;
  position: relative;
}

.pricing-ribbon {
  background: #ffbf3f;
  color: #1f2937;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  padding: 8px 54px;
  position: absolute;
  right: -54px;
  text-align: center;
  text-transform: uppercase;
  top: 28px;
  transform: rotate(38deg);
  z-index: 2;
}

.pricing .featured {
  z-index: 10;
}

.pricing .featured .pricing-item {
  background: var(--accent-color);
}

@media (min-width: 992px) {
  .pricing .featured .pricing-item {
    transform: none;
  }
}

.pricing .featured h3,
.pricing .featured h4,
.pricing .featured h4 span,
.pricing .featured ul,
.pricing .featured ul .na,
.pricing .featured ul i,
.pricing .featured ul .na i {
  color: var(--contrast-color);
}

.pricing .featured .buy-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--contrast-color);
}

.pricing .featured .buy-btn:hover {
  background: color-mix(in srgb, var(--background-color), transparent 92%);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container {
  margin-top: 15px;
}

.faq .faq-container .faq-item {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: 0.3s;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item h3 span {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 20px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: var(--accent-color);
  transition: 0.3s;
}

.faq .faq-container .faq-active h3,
.faq .faq-container .faq-active h3:hover,
.faq .faq-container .faq-active .faq-toggle,
.faq .faq-container .faq-active .faq-icon,
.faq .faq-container .faq-active .faq-content {
  color: var(--contrast-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
}

.faq-page-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 auto 34px;
  max-width: 980px;
}

.faq-page-menu a {
  background: var(--accent-color);
  border: 1px solid var(--accent-color);
  border-radius: 999px;
  color: #ffd84d;
  font-weight: 800;
  padding: 9px 14px;
  text-decoration: none;
}

.faq-page-menu a:hover {
  background: color-mix(in srgb, var(--accent-color), black 14%);
  border-color: color-mix(in srgb, var(--accent-color), black 14%);
  color: #ffd84d;
}

.faq-page .faq-content a {
  color: #ffd84d;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-page .faq-content a:hover {
  color: #fff2a8;
}

.faq-page-section {
  scroll-margin-top: 130px;
}

.faq-page-section + .faq-page-section {
  margin-top: 34px;
}

.faq-page-section > h3 {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 850;
  margin-bottom: 14px;
  text-align: center;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
}

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--accent-color);
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}
@media (max-width: 767px) {
  .footer,
  .footer .footer-about,
  .footer .footer-contact,
  .footer .footer-links,
  .footer .footer-links h4,
  .footer .footer-links ul,
  .footer .footer-links ul li {
    text-align: center;
  }

  .footer .footer-about .logo {
    justify-content: center;
  }

  .footer .footer-links h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer .footer-links ul {
    padding-left: 0;
  }

  .footer .footer-links ul a {
    justify-content: center;
  }
}

/* AI Music creator portal */
.aimusic-user-layout {
  display: grid !important;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr) !important;
  align-items: flex-start !important;
  gap: 28px !important;
  width: 100% !important;
}

.aimusic-user-sidebar {
  width: 100% !important;
  max-width: 340px !important;
  align-self: stretch !important;
  position: sticky;
  top: 96px;
  min-height: 420px;
  background: linear-gradient(160deg, #182848 0%, #274f8f 55%, #21a0a0 100%);
  color: #fff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 16px 40px rgba(24, 40, 72, 0.18);
}

.aimusic-user-sidebar__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 18px;
}

.aimusic-user-sidebar__brand i {
  font-size: 24px;
}

.aimusic-sidebar-artist {
  margin-bottom: 18px;
  text-align: center;
  width: 100%;
}

.aimusic-sidebar-artist a {
  color: #fff;
  display: block;
  text-decoration: none;
}

.aimusic-sidebar-artist img {
  aspect-ratio: 1 / 1;
  background: rgba(255, 255, 255, 0.2);
  border: 3px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  box-sizing: border-box;
  display: block;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  max-width: 90%;
  object-fit: cover;
  width: 90%;
}

.aimusic-sidebar-artist span {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
}

.aimusic-user-sidebar__nav {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px;
}

.aimusic-user-sidebar__nav a {
  display: flex !important;
  align-items: center;
  justify-content: flex-start !important;
  gap: 10px;
  width: 100%;
  color: #fff;
  text-align: left !important;
  text-decoration: none;
  font-weight: 700;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease, transform 0.2s ease;
}

.aimusic-user-sidebar__nav a:hover,
.aimusic-user-sidebar__nav a.active {
  background: rgba(255, 255, 255, 0.22);
  transform: translateX(2px);
}

.aimusic-user-sidebar__nav i {
  flex: 0 0 auto;
  font-size: 18px;
}

.aimusic-user-panel {
  min-width: 0;
  width: 100%;
  background: var(--surface-color);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.aimusic-user-layout > .artist-profile-panel:only-child {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 1200px;
  width: 100%;
}

.artist-image-current,
.artist-profile-image-summary {
  align-items: center;
  display: flex;
  gap: 18px;
}

.artist-image-current img,
.artist-profile-image-summary img {
  aspect-ratio: 1 / 1;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 82%);
  border-radius: 10px;
  height: 120px;
  object-fit: cover;
  width: 120px;
}

.artist-profile-panel {
  box-sizing: border-box;
  min-width: 0;
  overflow: visible;
}

.artist-profile-hero {
  align-items: center;
  background:
    radial-gradient(circle at top left, rgba(33, 160, 160, 0.3), transparent 34%),
    linear-gradient(135deg, #111827 0%, #243b6b 52%, #0f766e 100%);
  border-radius: 18px;
  color: #fff;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  margin-bottom: 24px;
  max-width: 100%;
  padding: 28px;
}

.artist-profile-hero__content {
  min-width: 0;
}

.artist-profile-hero__image img {
  aspect-ratio: 1 / 1;
  border: 4px solid rgba(255, 255, 255, 0.6);
  border-radius: 18px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
  object-fit: cover;
  width: 100%;
}

.artist-profile-kicker {
  color: #9ef6e5;
  display: inline-block;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.artist-profile-badge {
  border-radius: 999px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 12px;
  padding: 9px 14px;
  text-transform: uppercase;
}

.artist-profile-badge--early {
  background: #7c3aed;
  color: #fff;
  box-shadow: 0 12px 28px rgba(124, 58, 237, 0.32);
}

.artist-profile-role-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.artist-profile-role-badges span {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  padding: 7px 10px;
  text-transform: uppercase;
}

.aimusic-google-login-button {
  align-items: center;
  background: #fff;
  border: 1px solid #dadce0;
  border-radius: 8px;
  color: #202124;
  display: flex;
  font-size: 16px;
  font-weight: 800;
  gap: 12px;
  justify-content: center;
  margin-bottom: 18px;
  min-height: 48px;
  padding: 10px 16px;
  text-decoration: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
  width: 100%;
}

.aimusic-google-login-button:hover,
.aimusic-google-login-button:focus {
  border-color: #a8c7fa;
  box-shadow: 0 6px 18px rgba(60, 64, 67, 0.16);
  color: #202124;
  transform: translateY(-1px);
}

.aimusic-google-login-button__icon {
  align-items: center;
  border: 1px solid #dadce0;
  border-radius: 50%;
  color: #4285f4;
  display: inline-flex;
  flex: 0 0 28px;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 900;
  height: 28px;
  justify-content: center;
  line-height: 1;
  width: 28px;
}

.aimusic-login-divider {
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 42%);
  display: grid;
  font-size: 13px;
  font-weight: 800;
  gap: 12px;
  grid-template-columns: 1fr auto 1fr;
  margin: 4px 0 20px;
  text-transform: uppercase;
}

.aimusic-login-divider::before,
.aimusic-login-divider::after {
  background: color-mix(in srgb, var(--default-color), transparent 86%);
  content: "";
  display: block;
  height: 1px;
}

.artist-profile-hero h3 {
  color: #fff;
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 12px;
  overflow-wrap: anywhere;
}

.artist-profile-hero p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 20px;
  overflow-wrap: anywhere;
}

.artist-profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.artist-profile-actions .btn-outline-primary {
  --bs-btn-color: #fff;
  --bs-btn-border-color: rgba(255, 255, 255, 0.75);
  --bs-btn-hover-bg: #fff;
  --bs-btn-hover-border-color: #fff;
  --bs-btn-hover-color: #182848;
}

.artist-share-button {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}

.artist-profile-stats {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 22px;
}

.artist-profile-stats div {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 78%);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
}

.artist-profile-stats strong {
  color: var(--heading-color);
  display: block;
  font-size: 28px;
  line-height: 1;
}

.artist-profile-stats span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: block;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.artist-profile-genres {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.artist-profile-genres span {
  background: #111827;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 7px 12px;
}

.artist-profile-section-heading {
  margin-bottom: 18px;
}

.artist-profile-section-heading h3 {
  margin-bottom: 4px;
}

.artist-profile-other-heading {
  margin-top: 36px;
}

.artist-other-grid {
  display: grid !important;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  width: 100%;
}

.artist-other-card {
  align-items: start;
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 16px;
  color: inherit;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  height: 100%;
  justify-items: start;
  min-width: 0;
  padding: 16px;
  text-decoration: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.artist-other-card:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 45%);
  box-shadow: 0 16px 36px color-mix(in srgb, var(--accent-color), transparent 86%);
  color: inherit;
  transform: translateY(-3px);
}

.artist-other-card img,
.artist-other-card__image {
  aspect-ratio: 1 / 1;
  background: transparent;
  border-radius: 14px;
  object-fit: cover;
  width: 200px !important;
  max-width: 200px !important;
  min-width: 200px !important;
}

.artist-other-card h4 {
  font-size: 20px;
  font-weight: 850;
  margin-bottom: 6px;
  overflow-wrap: anywhere;
}

.artist-other-card p {
  color: color-mix(in srgb, var(--default-color), transparent 28%);
  display: -webkit-box;
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media (max-width: 767px) {
  .aimusic-user-layout > .artist-profile-panel:only-child {
    max-width: 100%;
  }

  .artist-other-grid {
    grid-template-columns: 1fr !important;
  }
}

.artist-song-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 100%;
}

.artist-song-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
  min-width: 0;
  overflow: hidden;
}

.artist-song-card__art {
  aspect-ratio: 1 / 1;
  display: block;
  max-width: 100%;
  object-fit: cover;
  transition: transform 0.25s ease, filter 0.25s ease;
  width: 100%;
}

.artist-song-card__art-link {
  display: block;
  overflow: hidden;
}

.artist-song-card__art-link:hover .artist-song-card__art {
  filter: saturate(1.15);
  transform: scale(1.04);
}

.artist-song-card__body {
  padding: 18px;
}

.artist-song-card__body > span {
  color: var(--accent-color);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.artist-song-card h4 {
  font-size: 21px;
  margin-bottom: 6px;
}

.artist-song-card p {
  color: color-mix(in srgb, var(--default-color), transparent 38%);
  margin-bottom: 14px;
}

.artist-song-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.artist-song-links a {
  align-items: center;
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 86%);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  color: #111827;
  display: inline-flex;
  font-size: 22px;
  font-weight: 800;
  gap: 6px;
  height: 42px;
  justify-content: center;
  padding: 0;
  width: 42px;
}

.artist-song-links a:hover {
  transform: translateY(-2px);
}

.artist-song-links img {
  height: 24px;
  width: 24px;
}

.artist-platform-spotify {
  color: #1db954 !important;
}

.artist-platform-instagram {
  color: #e1306c !important;
}

.artist-platform-tiktok {
  color: #111827 !important;
}

.artist-platform-facebook {
  color: #1877f2 !important;
}

.artist-platform-youtube {
  color: #ff0000 !important;
}

.music-card-genre-badge {
  background: color-mix(in srgb, var(--accent-color), transparent 86%);
  border-radius: 999px;
  color: var(--accent-color);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  margin-top: 10px;
  padding: 6px 11px;
  text-transform: uppercase;
}

.team .member .social .music-card-platform-link {
  align-items: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
  display: inline-flex;
  height: 38px;
  justify-content: center;
  margin: 0 4px;
  width: 38px;
}

.team .member .social .music-card-platform-link i {
  font-size: 20px;
  line-height: 1;
}

.team .member .social .music-card-platform-link img {
  height: 22px;
  width: 22px;
}

.music-card-platform-spotify {
  color: #1db954 !important;
}

.music-card-platform-apple-music {
  color: #111827 !important;
}

.music-card-platform-instagram {
  color: #e1306c !important;
}

.music-card-platform-tiktok {
  color: #111827 !important;
}

.music-card-platform-facebook {
  color: #1877f2 !important;
}

.music-directory-toolbar {
  align-items: center;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  margin-bottom: 28px;
  padding: 16px 18px;
}

.music-directory-sort {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.music-directory-sort a,
.music-directory-pagination a {
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 72%);
  border-radius: 999px;
  color: var(--accent-color);
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
}

.music-directory-sort a.active,
.music-directory-sort a:hover,
.music-directory-pagination a.active,
.music-directory-pagination a:hover:not(.disabled) {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.music-directory-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 34px;
  width: 100%;
}

.music-directory-pagination a {
  min-width: 40px;
}

.music-directory-pagination a.disabled {
  opacity: 0.4;
  pointer-events: none;
}

@media (max-width: 575px) {
  .aimusic-user-layout {
    gap: 14px !important;
  }

  .aimusic-user-sidebar {
    flex-basis: 190px !important;
    width: 190px !important;
    max-width: 190px !important;
    min-height: 0;
    padding: 14px;
  }

  .aimusic-user-sidebar__brand {
    font-size: 15px;
  }

  .aimusic-sidebar-artist span {
    font-size: 12px;
  }

  .aimusic-user-sidebar__nav a {
    padding: 10px;
    font-size: 13px;
  }

  .aimusic-user-panel {
    padding: 16px;
  }

  .artist-image-current,
  .artist-profile-image-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .artist-profile-hero {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .artist-profile-stats {
    grid-template-columns: 1fr;
  }

  .artist-song-grid {
    grid-template-columns: 1fr;
  }

  .artist-other-card img,
  .artist-other-card__image {
    width: 82px !important;
    max-width: 82px !important;
    min-width: 82px !important;
  }
}

/* Header brand above navigation */
.header {
  padding: 10px 0 8px;
}

.header > .container {
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 8px;
}

.header .logo {
  order: 1;
  width: 100%;
  justify-content: center;
  margin: 0;
  gap: 10px;
}

.header .logo h1,
.header .logo .sitename {
  margin: 0;
}

.header .navmenu {
  order: 2;
  margin: 0 auto;
}

.header .header-social-links {
  order: 3;
  margin-left: 0;
}

@media (min-width: 1200px) {
  .header .navmenu ul {
    justify-content: center;
  }
}

@media (max-width: 1199px) {
  .header {
    padding: 8px 0;
  }

  .header > .container {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    justify-content: initial;
    row-gap: 0;
  }

  .header .logo {
    grid-column: 1;
    order: initial;
    width: auto;
    justify-content: flex-start;
    margin: 0;
    min-width: 0;
  }

  .site-logo-image {
    max-height: 60px;
    max-width: min(330px, 70vw);
  }

  .header .logo h1,
  .header .logo .sitename {
    font-size: 20px;
    white-space: nowrap;
  }

  .header .navmenu {
    grid-column: 2;
    order: initial;
    margin: 0;
  }

  .header .mobile-nav-toggle {
    display: block;
    margin-left: 12px;
  }

  .header .header-social-links {
    display: none;
  }
}

@media (max-width: 420px) {
  .header .logo h1,
  .header .logo .sitename {
    font-size: 17px;
  }

  .site-logo-image {
    max-height: 52px;
    max-width: 280px;
  }
}

/* Cookie notice */
.cookie-notice {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  width: 100%;
  background: #5b1b8f;
  color: #fff;
  box-shadow: 0 -10px 30px rgba(20, 16, 36, 0.22);
}

.cookie-notice.is-hidden {
  display: none;
}

.cookie-notice__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 22px;
}

.cookie-notice p {
  margin: 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.45;
}

.cookie-notice a {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
}

.cookie-notice button {
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #5b1b8f;
  font-weight: 800;
  padding: 9px 18px;
}

@media (max-width: 767px) {
  .cookie-notice__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 10px;
    max-width: none;
    padding: 14px 16px;
  }

  .cookie-notice button {
    width: 100%;
  }
}

/* Portal music page enhancements */
.music-section-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.member-credit-summary {
  align-items: stretch;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  margin-bottom: 24px;
}

.member-credit-summary > div {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 78%);
  border-radius: 14px;
  padding: 16px;
}

.member-credit-summary strong {
  color: var(--heading-color);
  display: block;
  font-size: 30px;
  line-height: 1;
}

.member-credit-summary span {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  display: block;
  font-size: 13px;
  font-weight: 850;
  margin-top: 6px;
  text-transform: uppercase;
}

.member-credit-summary p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  line-height: 1.45;
  margin: 8px 0 0;
}

.member-credit-summary > a {
  align-items: center;
  align-self: stretch;
  background: var(--accent-color);
  border-radius: 14px;
  color: var(--contrast-color);
  display: inline-flex;
  font-weight: 850;
  justify-content: center;
  min-width: 150px;
  padding: 14px 16px;
  text-align: center;
  text-decoration: none;
}

.member-credit-summary > a:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
  color: var(--contrast-color);
}

.dashboard-help-callout {
  align-items: center;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 78%);
  border-radius: 14px;
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: 18px;
  padding: 16px;
}

.dashboard-help-callout strong {
  color: var(--heading-color);
  display: block;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 4px;
}

.dashboard-help-callout span {
  color: color-mix(in srgb, var(--default-color), transparent 24%);
  display: block;
  line-height: 1.45;
}

.dashboard-help-callout a {
  align-items: center;
  background: var(--accent-color);
  border-radius: 999px;
  color: var(--contrast-color);
  display: inline-flex;
  font-weight: 850;
  justify-content: center;
  padding: 10px 16px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.dashboard-help-callout a:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
  color: var(--contrast-color);
}

.member-role-summary {
  align-items: stretch;
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: 18px;
}

.member-role-summary > div {
  background: color-mix(in srgb, var(--heading-color), transparent 94%);
  border: 1px solid color-mix(in srgb, var(--heading-color), transparent 86%);
  border-radius: 14px;
  padding: 16px;
}

.member-role-summary span {
  color: color-mix(in srgb, var(--default-color), transparent 32%);
  display: block;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.member-role-summary strong {
  color: var(--heading-color);
  display: block;
  font-size: 26px;
  line-height: 1.1;
  margin-top: 4px;
}

.member-role-summary p {
  color: color-mix(in srgb, var(--default-color), transparent 28%);
  margin: 8px 0 0;
}

.member-role-summary > a {
  align-items: center;
  align-self: stretch;
  background: var(--accent-color);
  border-radius: 14px;
  color: var(--contrast-color);
  display: inline-flex;
  font-weight: 850;
  gap: 8px;
  justify-content: center;
  min-width: 170px;
  padding: 14px 18px;
  text-align: center;
  text-decoration: none;
}

.member-role-summary > a:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
  color: var(--contrast-color);
}

.music-section-menu a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-weight: 800;
  padding: 10px 14px;
  text-decoration: none;
}

.music-section-menu a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.music-section-block {
  scroll-margin-top: 130px;
}

.music-section-block + .music-section-block {
  margin-top: 34px;
}

.music-section-block h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 14px;
}

.aimusic-music-table .platform-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.aimusic-music-table .platform-link img {
  border-radius: 6px;
}

.aimusic-music-table .platform-link .bi-spotify {
  color: #1db954;
  font-size: 22px;
}

.aimusic-inline-action-form {
  margin: 0;
}

.aimusic-inline-action-form .btn {
  white-space: nowrap;
}

.artist-directory-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.artist-directory-card {
  align-items: center;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 18px;
  box-shadow: 0 16px 40px color-mix(in srgb, var(--default-color), transparent 90%);
  color: inherit;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  height: 100%;
  justify-items: center;
  padding: 22px;
  text-decoration: none;
  text-align: center;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.artist-directory-card > div {
  display: grid;
  justify-items: center;
  text-align: center;
  width: 100%;
}

.artist-directory-card:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 55%);
  box-shadow: 0 20px 50px color-mix(in srgb, var(--accent-color), transparent 84%);
  color: inherit;
  transform: translateY(-5px);
}

.artist-directory-card__image {
  aspect-ratio: 1 / 1;
  background: transparent;
  border-radius: 16px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 200px;
  object-fit: cover;
  width: 100%;
}

.artist-directory-card h3 {
  font-size: 22px;
  font-weight: 850;
  margin-bottom: 8px;
  overflow-wrap: anywhere;
}

.artist-directory-card p {
  color: color-mix(in srgb, var(--default-color), transparent 28%);
  display: -webkit-box;
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.artist-fan-message {
  border-radius: 10px;
  font-weight: 750;
  margin-top: 12px;
  padding: 10px 12px;
}

.artist-fan-message:not(.alert-success):not(.alert-danger) {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.artist-fan-message--loading {
  opacity: .82;
}

.fan-error-help-link {
  color: inherit;
  display: inline-flex;
  font-weight: 900;
  margin-left: 4px;
  text-decoration: underline;
}

.fan-error-help-detail {
  display: block;
  font-weight: 650;
  line-height: 1.55;
  margin-top: 8px;
}

.aimusic-fan-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.aimusic-fan-card {
  align-items: center;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 18px;
  box-shadow: 0 16px 40px color-mix(in srgb, var(--default-color), transparent 90%);
  display: grid;
  gap: 14px;
  justify-items: center;
  min-width: 0;
  padding: 22px;
  text-align: center;
}

.aimusic-fan-card img {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  max-width: 156px;
  object-fit: cover;
  width: 100%;
}

.aimusic-fan-card h3 {
  font-size: 21px;
  font-weight: 850;
  margin: 0 0 6px;
  overflow-wrap: anywhere;
}

.aimusic-fan-card p {
  color: color-mix(in srgb, var(--default-color), transparent 28%);
  margin: 0;
}

.music-card-artist-button {
  align-items: center;
  background: var(--accent-color);
  border-radius: 999px;
  color: var(--contrast-color);
  display: inline-flex;
  font-size: 14px;
  font-weight: 850;
  justify-content: center;
  margin-top: 12px;
  padding: 9px 14px;
  text-decoration: none;
}

.music-card-artist-button:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
  color: var(--contrast-color);
}

.help-page .help-layout {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: 280px minmax(0, 1fr);
}

.help-toc {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 14px;
  box-shadow: 0 12px 34px color-mix(in srgb, var(--default-color), transparent 92%);
  display: grid;
  gap: 4px;
  padding: 18px;
  position: sticky;
  top: 110px;
}

.help-toc h3 {
  font-size: 18px;
  font-weight: 850;
  margin: 0 0 8px;
}

.help-toc a {
  border-radius: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
  font-weight: 750;
  padding: 8px 10px;
  text-decoration: none;
}

.help-toc a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.help-content {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.help-section {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 18px;
  box-shadow: 0 16px 42px color-mix(in srgb, var(--default-color), transparent 92%);
  padding: 28px;
  scroll-margin-top: 120px;
}

.help-kicker {
  color: var(--accent-color);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.help-section h3 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 12px;
}

.help-section h4 {
  font-size: 19px;
  font-weight: 850;
  margin: 18px 0 8px;
}

.help-section p,
.help-section li {
  font-size: 16px;
  line-height: 1.7;
}

.help-section ul {
  margin-bottom: 0;
  padding-left: 20px;
}

.help-step-grid,
.help-card-grid,
.help-link-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.help-step-grid article,
.help-card-grid article {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 12px;
  padding: 18px;
}

.help-step-grid strong {
  align-items: center;
  background: var(--accent-color);
  border-radius: 50%;
  color: var(--contrast-color);
  display: inline-flex;
  font-size: 16px;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.help-step-grid h4,
.help-card-grid h4 {
  margin-top: 12px;
}

.help-step-grid a,
.help-link-grid a {
  font-weight: 850;
}

.help-link-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.help-link-grid a {
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 76%);
  border-radius: 10px;
  display: inline-flex;
  gap: 8px;
  padding: 12px;
  text-decoration: none;
}

.help-link-grid a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.help-error-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.help-error-list article {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 12px;
  padding: 16px;
}

.help-error-list h4 {
  margin-top: 0;
}

.artist-directory-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 34px;
}

.artist-directory-pagination a {
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 72%);
  border-radius: 999px;
  color: var(--accent-color);
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 40px;
  min-width: 40px;
  padding: 8px 14px;
  text-decoration: none;
}

.artist-directory-pagination a.active,
.artist-directory-pagination a:hover:not(.disabled) {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.artist-directory-pagination a.disabled {
  opacity: 0.4;
  pointer-events: none;
}

.aimusic-blog-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 390px));
  justify-content: center;
}

.aimusic-blog-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 18px;
  box-shadow: 0 16px 40px color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.aimusic-blog-card:hover {
  box-shadow: 0 20px 50px color-mix(in srgb, var(--accent-color), transparent 82%);
  transform: translateY(-5px);
}

.aimusic-blog-card-link {
  align-items: flex-start;
  color: inherit;
  display: flex;
  gap: 18px;
  height: 100%;
  padding: 22px;
  text-decoration: none;
}

.aimusic-blog-image {
  background: transparent;
  display: block;
  flex: 0 0 96px;
  height: 96px;
  object-fit: contain;
  padding: 0;
  width: 96px;
}

.aimusic-blog-card-body {
  padding: 0;
}

.aimusic-blog-card-body h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}

.aimusic-blog-kicker {
  color: var(--accent-color);
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.aimusic-blog-article {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 22px;
  box-shadow: 0 18px 55px color-mix(in srgb, var(--default-color), transparent 90%);
  margin: 0 auto;
  max-width: 1040px;
  overflow: hidden;
}

.aimusic-blog-article-image {
  background: transparent;
  display: block;
  height: 340px;
  object-fit: contain;
  padding: 34px;
  width: 100%;
}

.aimusic-blog-article-body {
  font-size: 18px;
  line-height: 1.82;
  padding: 42px;
}

.aimusic-blog-article-body h1 {
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 14px;
}

.aimusic-blog-article-body h2 {
  font-size: 30px;
  font-weight: 850;
  margin: 48px 0 16px;
}

.aimusic-blog-date {
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 28px;
}

.aimusic-blog-note {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-left: 6px solid var(--accent-color);
  border-radius: 14px;
  margin: 28px 0;
  padding: 20px;
}

.aimusic-comparison-table th {
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--heading-color);
}

.aimusic-comparison-table th,
.aimusic-comparison-table td {
  border-color: color-mix(in srgb, var(--default-color), transparent 82%);
  padding: 14px;
  vertical-align: top;
}

html[data-aimusic-theme="dark"] .aimusic-blog-card,
html[data-aimusic-theme="dark"] .aimusic-blog-article,
html[data-aimusic-theme="dark"] .aimusic-comparison-table {
  background: #172033 !important;
  color: #dbe4f0 !important;
}

html[data-aimusic-theme="dark"] .aimusic-comparison-table th,
html[data-aimusic-theme="dark"] .aimusic-comparison-table td {
  background: #172033 !important;
  border-color: #334155 !important;
  color: #dbe4f0 !important;
}

@media (max-width: 767px) {
  .pricing-mobile-callout {
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 76%);
    border-radius: 12px;
    display: block;
    margin: 0 0 22px;
    padding: 16px;
    text-align: center;
  }

  .pricing-mobile-callout p {
    color: var(--heading-color);
    font-size: 16px !important;
    font-weight: 800;
    line-height: 1.35;
    margin: 0 0 12px;
  }

  .pricing-mobile-callout a {
    background: var(--accent-color);
    border-radius: 999px;
    color: var(--contrast-color);
    display: inline-flex;
    font-weight: 850;
    justify-content: center;
    padding: 10px 16px;
    text-decoration: none;
  }

  .aimusic-user-layout {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    width: 100% !important;
  }

  .aimusic-user-sidebar,
  .aimusic-user-panel {
    max-width: 100% !important;
    min-width: 0 !important;
    width: 100% !important;
  }

  .aimusic-user-sidebar {
    min-height: 0 !important;
    padding: 16px !important;
    position: static !important;
  }

  .aimusic-sidebar-artist img {
    max-width: 180px;
    width: 180px;
  }

  .aimusic-user-panel {
    padding: 16px !important;
  }

  .member-role-summary {
    grid-template-columns: 1fr !important;
  }

  .member-role-summary > a {
    min-width: 0 !important;
    width: 100% !important;
  }

  .dashboard-help-callout {
    grid-template-columns: 1fr !important;
  }

  .dashboard-help-callout a {
    width: 100% !important;
  }

  .footer .footer-top,
  .footer .footer-about,
  .footer .footer-contact,
  .footer .footer-links,
  .footer .footer-links h4,
  .footer .footer-links ul,
  .footer .footer-links ul li,
  .footer .footer-links ul a,
  .footer .copyright,
  .footer .copyright .container,
  .footer .copyright .container > div {
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .footer .footer-links ul {
    display: grid;
    justify-items: center;
    padding-left: 0 !important;
  }

  .footer .footer-links ul li {
    width: 100%;
  }

  .footer .footer-links ul a {
    display: inline-flex;
    margin-left: auto;
    margin-right: auto;
  }

  .music-section-menu {
    display: grid;
  }

  .member-credit-summary {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .member-credit-summary > a {
    min-width: 0;
    width: 100%;
  }

  .music-section-menu a {
    justify-content: center;
  }

  .aimusic-user-panel .table-responsive {
    overflow-x: visible;
  }

  .aimusic-music-table,
  .aimusic-music-table thead,
  .aimusic-music-table tbody,
  .aimusic-music-table tr,
  .aimusic-music-table th,
  .aimusic-music-table td {
    display: block;
    width: 100%;
  }

  .aimusic-music-table {
    border: 0;
  }

  .aimusic-music-table thead {
    display: none;
  }

  .aimusic-music-table tr {
    background: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 84%);
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
  }

  .aimusic-music-table td {
    align-items: center;
    border-width: 0 0 1px !important;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    min-width: 0;
    overflow-wrap: anywhere;
    padding: 12px 14px !important;
    text-align: right;
  }

  .aimusic-music-table td:last-child {
    border-bottom: 0 !important;
  }

  .aimusic-music-table td::before {
    color: color-mix(in srgb, var(--default-color), transparent 35%);
    content: "";
    flex: 0 0 42%;
    font-weight: 850;
    text-align: left;
  }

  .aimusic-music-table td:nth-child(1)::before {
    content: "Artwork";
  }

  .aimusic-music-table td:nth-child(2)::before {
    content: "Song Title";
  }

  .aimusic-music-table td:nth-child(3)::before {
    content: "Artist Name";
  }

  .aimusic-music-table td:nth-child(4)::before {
    content: "Genre";
  }

  .aimusic-music-table td:nth-child(5)::before {
    content: "Status";
  }

  .aimusic-music-table td:nth-child(6)::before {
    content: "Plan";
  }

  .aimusic-music-table td:nth-child(7)::before {
    content: "AI Platform";
  }

  .aimusic-music-table td:nth-child(8)::before {
    content: "Spotify";
  }

  .aimusic-music-table td:nth-child(9)::before {
    content: "Submitted";
  }

  .aimusic-music-table td img {
    max-width: 88px;
  }

  .aimusic-blog-article-body {
    font-size: 16px;
    padding: 24px;
  }

  .aimusic-blog-article-image {
    height: 240px;
    padding: 24px;
  }

  .aimusic-blog-card-link {
    display: block;
  }

  .aimusic-blog-image {
    height: 82px;
    margin-bottom: 16px;
    width: 82px;
  }

  .artist-directory-grid {
    grid-template-columns: 1fr;
  }

  .aimusic-fan-grid {
    grid-template-columns: 1fr;
  }

  .help-page .help-layout {
    grid-template-columns: 1fr;
  }

  .help-toc {
    position: static;
  }

  .help-step-grid,
  .help-card-grid,
  .help-link-grid {
    grid-template-columns: 1fr;
  }
}
