/* HEADER */
.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header__logo img {
    height: 40px;
}

.header__menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* HERO */
.hero {
    height: 100vh;
    position: relative;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__content {
    position: absolute;
    top: 40%;
    left: 60px;
    max-width: 700px;
}

.hero__content p {
    font-size: 38px;
    color: #fff;
    background: rgba(0,0,0,0.31);
    padding: 20px;
    border-radius: 10px;
    font-weight: 300;
}

/* SECCIONES */
.section {
    padding: 80px 0;
}

.section--light {
    background: #f5f5f5;
}

.section--gray {
    background: #eaeaea;
}

/* .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 32px;
    padding-right: 32px;
    box-sizing: border-box;
} */

.section__title {
    font-size: 32px;
    margin-bottom: 40px;
}

.dj-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
    display: block;
}

.dj-card__image:hover img {
    transform: scale(1.1);
}

.dj-card__info {
    margin-top: 10px;
}

.dj-card__info h3 {
    margin: 0;
}

.dj-card__info p {
    color: #777;
}

.grid-container {
    padding-left:60px;
    padding-right: 60px;
}

.home-title {
    font-size:32px;
    font-weight: 500;
    color: #444;
}

.home-text {
    font-size:32px;
    font-weight: 300;
    color: #444;
    padding-bottom: 40px;
}

.dj-card__title {
    font-size: 13px;
    color: #777;
    margin-top: 0px;
}

@media (max-width: 768px) {
    .dj-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .dj-grid {
        grid-template-columns: 1fr;
    }
}

.dj-card__image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: #f1f1f1;
}

.dj-card__image.no-image {
    background: #dcdcdc;
}

.dj-card__image.no-image::after {
    content: "DJ";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #999;
    font-size: 18px;
    font-weight: 600;
}

.dj-card__image:hover .overlay {
    opacity: 1;
}

/* EVENTOS */
.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.event-card__image {
    position: relative;
    height: 260px;
    overflow: hidden;
    border-radius: 10px;
}

.event-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.event-card__image:hover img {
    transform: scale(1.1);
}

.event-card__title {
    margin-top: 10px;
}

.dj-card__image:hover .overlay,
.event-card__image:hover .overlay {
    opacity: 1;
}

/* FOOTER */
.footer {
    background: #1f1f1f;
    color: #ccc;
    padding: 40px 0;
    width: 100%;
}

.footer__container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer__col h3 {
    color: #fff;
    margin-bottom: 15px;
    font-weight: 400;
}

.footer__col a {
    display: flex;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    font-weight: 200;
}

.footer__col a:hover {
    color: #ff5a00;
    transition: 0.2s;
}

.footer__bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    font-size: 14px;
    background-color: #000000;
}
/* FONDO FULL */
.footer_terminos {
    width: 100%;
    background-color: #000;
    color: #fff;
    padding: 10px 0;
}

/* CONTENIDO LIMITADO (COMO HEADER) */
.footer_terminos__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;

    height: 50px;
}

/* IZQUIERDA */
.footer-left {
    display: flex;
    gap: 20px;
}

/* DERECHA */
.footer-right {
    text-align: right;
    font-size: 15px;
    color:#444
}

@media (max-width: 768px) {

    .footer_terminos__inner {
        flex-direction: column;
        height: auto;
        padding: 10px 0;
        gap: 5px;
        text-align: center;
    }

    .footer-left {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-right {
        text-align: center;
    }
}

.footer_disclaimer {
    height: auto; 
    min-height: auto;
    overflow: visible;
    padding: 4px 60px;
    font-size: 13px;
    color: #ddd;
    text-align: center;
    line-height: 1.4;
    background-color: #767676;
}

.auth-container {
    display: flex;
    justify-content: center;
    padding: 120px 20px;
}

.auth-box {
    width: 400px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.auth-box input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
}

/* DASHBOARD */
.dashboard {
    padding: 120px 40px;
}

.dashboard__top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.dashboard__content {
    display: flex;
    gap: 20px;
}

.sidebar {
    width: 250px;
    background: #1f1f1f;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
}

.main {
    flex: 1;
}

.upload-box {
    border: 2px dashed #aaa;
    padding: 40px;
    text-align: center;
}

.dashboard-container {
    padding: 120px 40px;
}

/* TOP */
.dashboard-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.welcome {
    width: 50%;
}

.account-box {
    width: 300px;
    background: #eee;
    padding: 20px;
    border-radius: 10px;
}

/* BODY */
.dashboard-body {
    display: flex;
    gap: 20px;
}

.sidebar {
    width: 250px;
    background: #1f1f1f;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
}

.main {
    flex: 1;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

/* MEDIA */
.media img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

/* UPLOAD */
.upload-box {
    border: 2px dashed #aaa;
    padding: 30px;
    text-align: center;
    cursor: pointer;
}

/* STATUS */
.status-ok {
    color: green;
    font-weight: bold;
}

.status-pending {
    color: orange;
    font-weight: bold;
}

.header__container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo-main {
    height: 50px;
}

.logo-text {
    height: 30px;
    margin-top: 5px;
}

/* LINK Buscar DJ */
.header__link a {
    font-size: 18px;
    font-weight: 500;
    color: #444;
    text-decoration: none;
    margin-left: 20px;
}

.header__link a:hover {
    color: #ff5a00;
}

/* LINKS */
.link {
    font-size: 15px;
    font-weight: 500;
    color: #444;
    text-decoration: none;
    transition: 0.2s;
}

.link:hover {
    color: #ff5a00;
}

/* USER MENU */
.user-menu {
    position: relative;
}

.user-menu button {
    background: none;
    border: none;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.arrow {
    font-size: 10px;
}

/* DROPDOWN */
.dropdown {
    position: absolute;
    right: 0;
    top: 35px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    width: 180px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.dropdown a {
    display: block;
    padding: 10px;
    font-size: 14px;
    color: #444;
    text-decoration: none;
}

.dropdown a:hover {
    background: #f5f5f5;
}

/* UTIL */
.hidden {
    display: none;
}

.register {
    padding: 120px 0;
}

.register-box {
    max-width: 400px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.register-box h2 {
    text-align: center;
    color: #ff5a00;
    margin-bottom: 20px;
}

.register-desc {
    text-align: center;
    margin-bottom: 35px;
    color: #5b5b5b;
    font-size:14px;
}

.form-group {
    margin-bottom: 15px;
}

.btn-primary.full {
    width: 100%;
    margin-top: 10px;
}

.alert.error {
    background: #ffe5e5;
    color: #c00;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
}

.alert.success {
    background: #e6ffea;
    color: #1a7f37;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
}

.profile {
    padding: 120px 0;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
    color: #888;
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.profile-left,
.profile-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* CARD */


.card.dark {
    background: #1f1f1f;
    color: #fff;
}

/* HEADER */
.profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* TAGS */
.tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tags span {
    background: #333;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
}

/* GALLERY */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.gallery img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

/* SOCIAL */
.social {
    display: flex;
    gap: 15px;
}

.authorized-info {
    font-size: 12px;
    line-height: 1.4;
}

.authorized-info strong {
    color: #28a745;
}

.badge-danger {
    background: #f8d7da;
    color: #721c24;
}

/* INFO BOX */
.info-box {
    background: #2c2c2c;
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.info-image {
    width: 100%;
    border-radius: 10px;
}

.panel-image {
    width: 100%;
    border-radius: 10px;
    height: 120px;
}

/* DIVIDER */
.dividerForm {
    margin: 20px 0;
    border: 1px solid #f4f4f4;
}

/* TEXT */
.subtitle {
    color: #777;
    margin-bottom: 20px;
}

/* COLUMNS */
.info-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* PACKAGES */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 280px);
    gap: 24px;
    justify-content: center;
    margin-top: 20px;
}

.package-card {
    background: #1f1f1f;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.package-card h3 {
    margin-bottom: 10px;
}

.package-card .price {
    font-size: 22px;
    color: #ff5a00;
    margin: 15px 0;
}

.package-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.package-card li {
    margin-bottom: 8px;
}

/* CTA */
.cta-box {
    margin-top: 50px;
    padding: 30px;
    background: #2c2c2c;
    color: #fff;
    border-radius: 10px;
    text-align: center;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .info-grid,
    .info-columns {
        grid-template-columns: 1fr;
    }

}

/* GRID CENTRADO */
.plans-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* CARD */
.plan-card {
    background: linear-gradient(180deg, #2a2a2a, #1f1f1f);
    color: #fff;
    width: 320px;
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s;
}

/* CARD */
.plan-card {
    display: flex;
    flex-direction: column;
    width: 320px;
/*     min-height: 600px; 
 */}

/* TOP */
.plan-card__top {
    flex: 0 0 auto;
}

/* FEATURES EXTRA CRECEN */
.plan-card__features-extra {
    flex: 1;
    margin-top: 0px;
}

/* BOTÓN SIEMPRE ABAJO */
.plan-card__bottom {
    margin-top: auto;
}

.plan-card:hover {
    transform: translateY(-5px);
}

/* TITLE */
.plan-title {
    font-size: 28px;
    font-weight: 700;
}

/* DESC */
.plan-desc {
    color: #bbb;
    margin: 10px 0 20px;
}

/* PRICE */
.plan-price {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #ff5a00;
    margin: 20px 0;
}

/* FEATURES */
.plan-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.plan-features li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

/* ICONOS */
.check {
    color: #00c853;
    font-weight: bold;
}

.cross {
    color: #ff5252;
    font-weight: bold;
}

/* BOTÓN */
.btn-plan {
    display: block;
    text-align: center;
    background: #ff5a00;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    margin-top: 20px;
    font-weight: 600;
    text-decoration: none;
}

.btn-plan:hover {
    background: #e64a00;
}

/* TITULO */
.section-title {
    font-size: 32px;
    margin-top: 40px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .plan-card {
        width: 90%;
    }
}

.plan-card hr {
    border: none;
    width: 100%;
    align-self: stretch; 
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255,255,255,0.3),
        transparent
    );
    margin: 0px 0;
}

.footer__col .social-link {
    display: flex !important;
    align-items: center;
    gap: 10px;

    color: #ccc;
    text-decoration: none;
    margin-bottom: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #ccc;
    text-decoration: none;
    margin-bottom: 12px;
}

/* ICONO */
.icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SVG */
.icon svg {
    width: 16px;
    height: 16px;
    display: block;
    fill: currentColor;
}

/* CONTENEDOR */
.dashboard {
    padding: 100px 20px;
}

/* TOP */
.dashboard-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* GRID */
.dashboard-grid {
    display: grid;
/*     grid-template-columns: 300px 1fr;
 */    grid-template-columns:  1fr 2fr;
    gap: 30px;
    margin-top: 30px;
}

/* SIDEBAR */
.sidebar label {
    font-size: 12px;
    color: #aaa;
}

/* ACCOUNT BOX */
.account-box {
    background: #f4f4f4;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    min-width: 250px;
}

/* STATUS */
.status-ok {
    color: green;
    font-weight: bold;
}

.status-warning {
    color: orange;
    font-weight: bold;
}

/* GRID MEDIA */


.media img {
    width: 100%;
    border-radius: 8px;
}

/* UPLOAD */
.upload-box {
    border: 2px dashed #ccc;
    border-radius: 10px;
    height: 120px;

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

    color: #777;
    cursor: pointer;
}

/* BOTÓN */
/* .btn-primary {
    background: #ff6a00;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 8px;
    width: 100%;
    margin-top: 20px;
} */

/* RESPONSIVE */
@media (max-width: 768px) {

    .dashboard-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .media-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* GRID GENERAL */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 90px;
}

/* COLUMNAS */
.dashboard-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dashboard-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* SIDEBAR */
.sidebar hr {
    border: none;
    width: 100%;
    align-self: stretch; 
    height: 1px;
    background-color: #444;
    margin: 5px 0;
}

/* BLOQUES */
.block {
    margin-bottom: 20px;
    padding-bottom: 10px;
}

/* FOTO PERFIL */
.profile-upload img {
    width: 100%;
    border-radius: 10px;
}

/* UPLOAD */
.upload-box {
    border: 2px dashed #ccc;
    border-radius: 10px;
    height: 120px;

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

    color: #777;
    cursor: pointer;
}

.upload-box.large {
    height: 250px;
}

/* MEDIA GRID */


.media img {
    width: 100%;
    border-radius: 8px;
}

/* HEADER CARD */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LINK ORANGE */
.link-orange {
    color: #ff5a00;
    text-decoration: none;
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .media-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* CONTENEDOR */
.dashboard-top {
    display: flex;
    justify-content: space-between;
    gap: 40px;

    align-items: stretch; 
}

/* CARD MÁS OSCURO */
.dashboard-top--dark {
    background: #f0f0f0; 
}

/* WELCOME */
.welcome {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; 
}
.welcome .title {
    color:#444;
    margin-bottom: 0px;
}

.welcome .text {
    font-size: 16px;
    line-height: 1.8;
    color: #5b5b5b;
    font-weight: 400;
}

/* ACCOUNT BOX */
.account-box {
    background: #e9e9e9;
    border-radius: 12px;
    padding: 20px;
    min-width: 260px;
}

/* ALIGN RIGHT */
.account-box--right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end; 
}

/* ESPACIADO MÁS LIMPIO */
.account-box p {
    margin: 2px 0;
}

.account-box h3 {
    margin: 5px 0;
}

/* STATUS */
.status-ok {
    color: green;
    font-weight: 600;
}

.status-warning {
    color: #ff8a00;
    font-weight: 600;
}
.profile-edit {
    padding: 100px 20px;
}

/* CARD */
.form-card {
    max-width: 1000px;
    margin: auto;
}

/* GRID */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* GROUP */
.form-group label {
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
    color:#444;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-sizing: border-box;
    font-size: 14px;
    color:#444;
}

textarea {
    min-height: 120px;
}

/* CHECKBOX */
.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* BOTÓN */
.btn-primary.full {
    width: 100%;
}

/* BACK */
.back-link {
    display: inline-block;
    margin-bottom: 10px;
    transition: 0.2s;
    font-size:13px; color:#6b7280; 
    text-decoration:none;
}
.back-link:hover {
    color: #ff5a00;
}

/* UTIL */
.mt-20 {
    margin-top: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.genre-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* CHIP */
.chip {
    display: inline-block;
    cursor: pointer;
}

/* ocultar checkbox */
.chip input {
    display: none;
}

/* apariencia base */
.chip span {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 999px;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    font-weight: 600;
    transition: all 0.2s ease;
}

/* hover */
.chip span:hover {
    border-color: #ff6a00;
}

/* ESTADO ACTIVO REAL */
.chip input:checked + span {
    background: #959595;
    color: #fff;
    border-color: #959595;
}

.form-control {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
    background: #fff;
    transition: 0.2s;
}

.form-control:focus {
    border-color: #ff6a00;
    outline: none;
    box-shadow: 0 0 0 2px rgba(255,106,0,0.15);
}

/* SIDEBAR */
.sidebar {
    background: linear-gradient(180deg, #2b2b2f, #1f1f22);
    color: #fff;
}

/* TITULOS */
.sidebar-djname {
    color: #ff5a00;
    font-size: 26px;
    margin-bottom: 5px;
}

.sidebar-title {
    color: #DDD;
    font-size: 14px;
    margin-bottom:13px;
}

/* BLOQUES */
.block {
    margin-bottom: 25px;
}

.block label {
    font-weight: 600;
    color: #ddd;
    font-size: 14px;
}

.block hr {
    border: none;
    border-top: 1px solid #3a3a3a;
    margin: 10px 0 15px;
}

/* REDES */
.social-icons {
    display: flex;
    gap: 15px;
    font-size: 18px;
}

.social-icons a {
    color: #bbb;
    transition: 0.2s;
}

.social-icons a:hover {
    color: #ff5a00;
    transform: scale(1.2);
}

/* CONTACTO */
.contact-item {
    margin-bottom: 8px;
    color: #ddd;
}

/* BOTON */
.btn-primary.full {
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

.social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: nowrap; 
}

.social-item {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #1f1f1f;
    transition: 0.2s;
}

.social-item svg {
    width: 18px;
    height: 18px;
    stroke: #bbb;
    fill: none;
}

.social-item:hover {
    background: #ff7a00;
}

.social-item:hover svg {
    stroke: #fff;
}

/* contacto */
.contact-item {
    margin-bottom: 6px;
    color: #ddd;
}

/* botón full */
.btn-primary.full {
    width: 100%;
    text-align: center;
    margin-top: 15px;
}



.dj-header {
    display: flex;
    align-items: center;
    padding: 20px;
}

.dj-header__left {
    display: flex;
    gap: 15px;
    align-items: center;
}





.media-grid img {
    width: 100px;
    border-radius: 8px;
}

.card.dark {
    background: linear-gradient(180deg, #2b2b2f, #1f1f22);
    color: #fff;
}

/* GRID PRINCIPAL */


/* RESPONSIVE */
@media (max-width: 768px) {
    .dj-layout {
        grid-template-columns: 1fr;
    }
}

/* COLUMNAS */
.dj-left,
.dj-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* CARD BASE (si no existe) */


/* CARD OSCURA */
.card.dark {
    background: linear-gradient(180deg, #2b2b2f, #1f1f22);
    color: #fff;
}

/* CHIPS */
.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip-view {
    background: #3a3a40;
    color: #ddd;
    padding: 12px 12px;
    border-radius: 10px;
    cursor: default;
    font-size: 14px;
    color:#BBB;
}

.chip-view:hover {
    background: #ff6a00;
    color: #fff;
}

/* HEADER DJ */
.dj-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.card-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #444444;
    margin-top: 0px;
}

/* TEXTO */
.card-text {
    font-size: 16px;
    line-height: 1.8;
    color: #5b5b5b;
    font-weight: 400;
}

.card-minitext {
    font-size: 14px;
    color: #5b5b5b;
    font-weight: 400;
}

.upload-box-profile {
    border: 1px dashed #666;
    padding: 0px;
    text-align: center;
    cursor: pointer;
    border-radius: 10px;
    min-height: 350px;
    color:#BBB;
    font-size: 14px;
    display: flex;
    align-items: center; 
    justify-content: center; 
}

.upload-box.dragging {
    border-color: orange;
    background: rgba(255,165,0,0.1);
}

.card-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-delete {
    background: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #CCC;
    transition: 0.2s;
}

.btn-delete:hover {
    transform: scale(1.2);
    color: #ff5a00;
}

.btn-sidebar {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    margin-right: -20px;
    background: #ff5a00;
    color: #fff;
    font-weight: 500;
    text-decoration: none;

    transition: all 0.2s ease;
    box-sizing: border-box;
}

/* HOVER */
.btn-sidebar:hover {
    background: #ff7a00;
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.3);
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: #1f1f1f;
    border-radius: 50%;
}

.contact-icon svg {
    width: 14px;
    height: 14px;
    stroke: #bbb;
    fill: none;
}

.contact-text {
    color: #ddd;
    font-size: 14px;
}

#flash-message {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;

    padding: 12px 18px;
    border-radius: 8px;

    background: #28a745;
    color: #fff;

    box-shadow: 0 4px 12px rgba(0,0,0,0.2);

    opacity: 1;
    transition: opacity 0.5s ease;
}

/* CONTENEDOR */
.header__container {
    display: flex;
    align-items: center;
    padding: 10px 32px;
}

.header__center .link {
    text-decoration: none;
    color: #444;
    font-size: 16px;
    transition: 0.2s;
}

.header__center .link:hover {
    color: #ff5a00;
}

/* BOTÓN PRINCIPAL */
.header-btn {
    padding: 8px 14px;
    border-radius: 6px;
    background: #ff5a00;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s;
    margin-top: 0px;
    border: none;
}

.header-btn:hover {
    background: #e64a00;
}

/* LINKS DERECHA */
.header__right .link {
    color: #444;
    font-size: 16px;
    text-decoration: none;
    white-space: nowrap;
    transition: 0.2s;
}

.header__right .link:hover {
    color: #ff5a00;
}

.user-menu button {
    background: none;
    font-size: 16px;
    border: none;
    color: #d7d7d7;
    cursor: pointer;
}

.dropdown {
    position: absolute;
    background: #111;
    border-radius: 8px;
    padding: 10px;
    margin-top: 0px;
}

.dropdown a {
    display: block;
    padding: 6px 10px;
    color: #ccc;
    text-decoration: none;
}

.dropdown a:hover {
    background: #222;
    color: #fff;
}

@media (max-width: 900px) {

    .header__center {
        display: none; 
    }

    .header__right {
        gap: 10px;
    }

    .logo-text {
        display: none; 
    }
}

/* Panel contenedor */
.breadcrumb-panel {
    border-radius: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 0px;
}

/* Links */
.breadcrumb-link {
    color: #FF5A00;
    text-decoration: none;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb-link:hover {
    opacity: 0.8;
}

/* Separador */
.separator {
    color: #999;
}

/* Texto actual */
.breadcrumb-current {
    color: #555;
    font-weight: 600;
}

/* Buscador */
.search-box {
    position: relative;
}

.search-box input {
    padding: 8px 12px 8px 35px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
    outline: none;
    width: 220px;
    transition: 0.2s;
}

.search-box input:focus {
    border-color: #FF5A00;
}

/* Botón lupa */
.search-box button {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: none;
    cursor: pointer;
    color: #777;
}

.search-box button:hover {
    color: #FF5A00;
}

/* HERO pequeño (para internas) */
.hero--small {
    height: 250px;
}

.hero--small .hero__content h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

/* PANEL */

/* géneros */
.dj-genres {
    margin-top: 6px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.genre-badge {
    background: rgba(255, 90, 0, 0.1);
    color: #FF5A00;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 20px;
    font-weight: 600;
}

/* no results */
.no-results {
    margin-top: 20px;
    color: #999;
}

.chip-link {
    text-decoration: none;
    cursor: pointer;
    transition: 0.2s;
}

.chip-link:hover {
    background: #FF5A00;
    color: #fff;
}

.hero {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 500px;
    overflow: hidden;
}

.hero__media {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    top: 0;
    left: 0;
}

.hero__overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 800px;
    padding: 20px;
}

/* responsive */
@media (max-width: 768px) {
    .hero {
        height: 70vh;
    }

    .hero__content {
        padding: 15px;
    }

    .hero__content h1 {
        font-size: 22px;
    }

    .hero__content p {
        font-size: 14px;
    }
}

/* HERO */
.hero {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 500px;
    overflow: hidden;
}

/* imagen o video */
.hero__media {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    top: 0;
    left: 0;
}

/* overlay */
.hero__overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* contenido */
.hero__content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 800px;
    padding: 20px;
}

/* alineaciones */
.hero__content--center {
    margin: 0 auto;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}

/* responsive */
@media (max-width: 768px) {
    .hero {
        height: 70vh;
    }

    .hero__content h1 {
        font-size: 22px;
    }

    .hero__content p {
        font-size: 14px;
    }
}

/* HERO CONTENT BASE */
.hero__content {
    position: absolute;
    z-index: 2;
    color: #fff;
    max-width: 800px;
    width: auto;
    padding: 20px;
}

/* CENTRO */
.hero__content--center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

/* IZQUIERDA */
.hero__content--left {
    top: 50%;
    left: 5%;
    right: auto; /* 🔥 importante */
    transform: translateY(-50%);
    text-align: left;
}

/* DERECHA */
.hero__content--right {
    top: 50%;
    right: 5%;
    left: auto; /* 🔥 esto faltaba */
    transform: translateY(-50%);
    text-align: right;
}
@media (max-width: 768px) {
    .hero__content {
        left: 50% !important;
        right: auto !important;
        transform: translate(-50%, -50%) !important;
        text-align: center !important;
        max-width: 90%;
    }
}

.media {
    position: relative;
    width: 140px;
    height: 140px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* upload box igual tamaño */
.upload-box {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #ccc;
    border-radius: 10px;
    cursor: pointer;
}

/* DELETE BTN */
.delete-media {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

/* GRID IMÁGENES */
.media-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* ITEM */
.media {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
}

.media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* PENDING */
.media-pending {
    border: 2px solid red;
}
.media-authorized {
    border: 2px solid #28a745;
}
.media-rejected {
    border: 2px solid #444;
}
.media-pending::after {
    content: 'Por autorizar';
    position: absolute;
    bottom: 5px;
    left: 5px;
    background: #000;
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    opacity: 0.7;
}
.media-authorized::after {
    content: 'Autorizada';
    position: absolute;
    bottom: 5px;
    left: 5px;
    background: #000;
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    opacity: 0.7;
}
.media-rejected::after {
    content: 'Rechazada';
    position: absolute;
    bottom: 5px;
    left: 5px;
    background: #000;
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    opacity: 0.7;
}

/* DELETE */
.delete-media {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    cursor: pointer;
}

/* ZONA DRAG FULL */
.upload-area {
    width: auto;
    margin-top: 15px;
    padding: 20px;
    border: 2px dashed #ccc;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: 0.2s;
}

.upload-area.dragover {
    border-color: #007bff;
    background: rgba(0,123,255,0.05);
}

.media {
    position: relative;
    cursor: pointer;
}

.media .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.2s;
}

.media:hover .overlay {
    opacity: 1;
}

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

.lightbox img {
    max-width: 90%;
    max-height: 90%;
}

.lightbox .close {
    position: fixed;
    right: 25px;
    font-size: 35px;
    color: #FFF;
    cursor: pointer;
    z-index: 10001;
    top: calc(60px + 10px);
}

#prev, #next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    color: #fff;
    font-size: 40px;
    border: none;
    cursor: pointer;
}

#prev { left: 20px; }
#next { right: 20px; }

.info-box.alt .info-grid {
    grid-template-columns: 1fr 1fr;
}

.info-text {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.divider {
    margin: 40px 0;
    border-top: 1px solid #e5e5e5;
}

.page-title {
    font-size: 30px;
    color: #DDD;
    margin-bottom: 35px;
    font-weight: bold;
}

.page-text {
    font-size: 16px;
    line-height: 1.8;
    color: #BBB;
    font-weight: 400;
}

.page-minitext {
    font-size: 14px;
    color: #5b5b5b;
    font-weight: 400;
}

.page-title-white {
    font-size: 28px;
    color: #444;
    margin-bottom: 35px;
}

.page-text-white {
    font-size: 16px;
    line-height: 1.8;
    color: #5b5b5b;
    font-weight: 400;
}

.page-subtitle {
    font-size: 24px;
    color: #CCC;
    margin-bottom: 15px;
}

.page-subtext {
    font-size: 18px;
    line-height: 1.8;
    color: #BBB;
    font-weight: 400;
}

.info-panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 20px;
}

.info-panel {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.info-panel h3 {
    margin-top: 0;
    margin-bottom: 15px;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.benefits-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

@media (max-width: 768px) {
    .info-panels {
        grid-template-columns: 1fr;
    }
}

.hidden {
    display: none !important;
}

.register-cta {
    margin-top: 20px;
    text-align: center;
}

.dividerO {
    display: flex;
    align-items: center;
    margin: 15px 0;
}

.dividerO::before,
.dividerO::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #ddd;
}

.dividerO span {
    margin: 0 10px;
    font-size: 14px;
    color: #999;
}

.register-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.register-link {
    font-weight: 600;
    color: #ff5a00;
    text-decoration: none;
}

.register-link:hover {
    color: #444;
}

.password-rules {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
}

.no-asignado {
    font-size: 12px;
    color: #888;
    margin-top: -8px;
}

.obligatorio {
    color: #a94442;
    font-weight: 700;
    font-size: 12px;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    padding: 12px 40px 12px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background-color: #fff;
    font-size: 14px;
    outline: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%239ca3af' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5H5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

textarea {
    min-height: 200px;
}

.page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .page-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .dj-card {
        width: calc(33.33% - 16px);
    }
}

@media (max-width: 768px) {
    .dj-card {
        width: calc(50% - 12px);
    }
}

@media (max-width: 480px) {
    .dj-card {
        width: 100%;
    }
}

/* GRID BASE */
.dj-grid {
    display: flex;
    gap: 24px;
    flex-flow: row wrap;
}

/* CARD */
.dj-card {
    width: calc(25% - 18px);
    display: flex;
    flex-direction: column;
}

.dj-card a {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* IMAGEN CONTENEDOR */
.dj-card__image {
    width: 100%;
    height: 480px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: #f1f1f1;
}

/* IMAGEN */
.dj-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.3s;
}

/* HOVER ZOOM */
.dj-card__image:hover img {
    transform: scale(1.1);
}

.overlay::after {
    content: "";
    width: 12px;
    height: 12px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
    transition: transform 0.2s ease;
}

/* hover */
.dj-card__image:hover .overlay::after {
    transform: rotate(-45deg) translate(3px, -3px);
}

.dj-card__image:hover .overlay {
    opacity: 1;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    color: #fff;
    opacity: 0;
    transition: 0.3s;
    font-size:24px;
}

/* TEXTO */
.overlay-text {
    font-size: 16px;
}

/* FLECHA */
.overlay-arrow {
    width: 12px;
    height: 12px;
    margin-top: 6px;


    transform: rotate(-45deg);
}

/* HOVER */
.dj-card__image:hover .overlay {
    opacity: 1;
}

/* TEXTO */
.dj-card__name {
    font-size: 22px;
    color: #27272a;
    margin: 0px;
    margin-top: 8px;
}

.dj-card__name:hover {
    font-size: 22px;
    color: #ff5a00;
    margin: 0px;
    margin-top: 8px;
    transition: 0.2s;
}

.dj-card__title {
    font-size: 13px;
    color: #777;
    margin-top: 0;
}

/* RESPONSIVE */

/* Tablet grande */
@media (max-width: 1024px) {
    .dj-card {
        width: calc(33.33% - 16px);
    }
}

/* Tablet */
@media (max-width: 768px) {
    .dj-card {
        width: calc(50% - 12px);
    }
}

/* Mobile */
@media (max-width: 480px) {
    .dj-card {
        width: 100%;
    }

    .dj-card__image {
        height: 200px;
    }
}

/* HEADER BASE */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #bababa;
    z-index: 1000;
    box-shadow: 0 2px 6px rgba(0,0,0,0.31);
}

/* CONTENEDOR */
.header-container {
    display: flex;
    align-items: center;
    padding: 10px 60px;
}

/* IZQUIERDA (LOGOS) */
.header__left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-main {
    height: 50px;
}

.logo-text {
    height: 30px;
}

/* CENTRO (MENU) */
.header__center {
    display: flex;
    gap: 25px;
    margin-left: 40px; 
    flex: 1;
}

.header__center .link {
    font-size: 16px;
    color: #444;
    text-decoration: none;
}

.header__center .link:hover {
    color: #ff5a00;
}

/* DERECHA */
.header__right {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto; 
}

/* BOTÓN */
.header-btn {
    padding: 8px 14px;
    border-radius: 6px;
    background: #ff5a00;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

/* HAMBURGUESA */
.menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

/* 🔥 RESPONSIVE */
@media (max-width: 900px) {

    /* ocultar menu central */
    .header__center {
        display: none;
    }

    /* ocultar botones normales */
    .header__right .link,
    .header__right .header-btn {
        display: none;
    }

    /* mostrar hamburguesa */
    .menu-toggle {
        display: block;
    }

    /* ocultar texto logo */
    .logo-text {
        display: none;
    }
}

.mobile-menu {
    position: fixed;
    top: 70px;
    right: 0;
    width: 100%;
    background: #111;
    display: flex;
    flex-direction: column;
    z-index: 999;
}

.mobile-menu a {
    color: #fff;
    padding: 12px 0;
    text-decoration: none;
    border-bottom: 1px solid #222;
    padding-left: 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between; 
    margin: 0 auto;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
    padding-left: 60px;
    padding-right: 60px;
}

.footer-link {
    font-size: 12px;
    font-weight: 500;
    color: #999;
    text-decoration: none;
}

.footer-link:hover {
    color: #ff5a00;
    transition: 0.2s;
}

.footer-copy {
    text-align: right;
    font-size: 12px;
    color:#999;
}

/* columnas */
.footer__col {
    display: flex;
    flex-direction: column;
}

/* responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer__col {
        align-items: center;
    }
}

/*  NUEVO DISEÑO */
:root {
    --bg-main: #050505;
    --gold: #c99a4a;
    --gold-light: #e0b86a;
    --gold-dark: #8f6427;
    --text-main: #f5f2ec;
    --text-muted: #b8b2a8;
    --border-muted: rgba(255, 255, 255, 0.12);
    --border-soft: rgba(212, 166, 86, 0.28);
    --radius-sm: 8px;
    --transition: all 0.25s ease;
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    background: var(--bg-main);
    color: var(--text-main);
    font-family: "Montserrat", "Inter", Arial, sans-serif;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  .container {
    width: min(1640px, 94%);
    margin: 0 auto;
  }
  
  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(5, 5, 5);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border-muted);
  }
  
  .navbar {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
  }
  
  .brand {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
  }
  
  .brand-mark {
    width: 300px;
    height: auto;
  }

  .brand-mark {
    width: auto;
    height: 86px;
  }
  
  .brand-text {
    width: 210px;
    height: auto;
  }
  
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  
  .nav-menu a {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-main);
    transition: var(--transition);
  }
  
  .nav-menu a:hover {
    color: var(--gold-light);
  }
  
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }
  
  .btn {
    min-height: 46px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    transition: var(--transition);
    border: 0px;
  }
  
  .btn-primary {
    color: #111;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
/*     border: 1px solid transparent;
 */  }
  
  .btn-outline {
    color: var(--text-main);
    border: 1px solid var(--border-soft);
    background: transparent;
  }
  
  .btn:hover {
    transform: translateY(-2px);
  }
  
  .user-menu {
    position: relative;
  }
  
  .user-menu-button {
    min-height: 46px;
    padding: 0 18px;
    color: var(--text-main);
    background: transparent;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
    cursor: pointer;
  }
  
  .dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 180px;
    background: #080808;
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    overflow: hidden;
  }
  
  .dropdown a {
    display: block;
    padding: 12px 16px;
    font-size: 13px;
    color: var(--text-muted);
  }
  
  .dropdown a:hover {
    background: rgba(201, 154, 74, 0.1);
    color: var(--gold-light);
  }
  
  .hidden {
    display: none !important;
  }
  
  .menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--text-main);
    font-size: 22px;
    cursor: pointer;
  }
  
  .mobile-menu {
    position: fixed;
    top: 86px;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(5, 5, 5, 0.98);
    border-bottom: 1px solid var(--border-soft);
    padding: 18px 24px;
  }
  
  .mobile-menu a {
    display: block;
    padding: 14px 0;
    color: var(--text-main);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border-muted);
  }
  
  @media (max-width: 1100px) {
    .brand-text {
      width: 180px;
    }
  
    .nav-menu {
      gap: 18px;
    }
  
    .nav-menu a {
      font-size: 12px;
    }
  }
  
  @media (max-width: 900px) {
    .navbar {
      min-height: 76px;
    }
  
    .nav-menu,
    .nav-login,
    .nav-register {
      display: none;
    }
  
    .menu-toggle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
  
    .mobile-menu {
      top: 76px;
    }
  }
  
  @media (max-width: 520px) {
    .brand-mark {
        width: 190px;
        max-width: 65vw;
        height: auto;
    }
  
    .brand-text {
      width: 150px;
    }
  
    .navbar {
      gap: 12px;
    }
  }

  .site-footer {
    background: #030303;
    border-top: 1px solid var(--border-muted);
    padding: 46px 0 24px;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr 1.5fr;
    gap: 34px;
    align-items: flex-start;
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
  }
  
  .footer-logo-mark {
    width: 300px;
  }

  .footer-logo-mark {
    height: 86px;
    width: auto;
  }
  
  .footer-logo-text {
    width: 210px;
  }
  
  .footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }
  
  .footer-socials a {
    color: var(--text-main);
    font-size: 13px;
    transition: var(--transition);
  }
  
  .footer-socials a:hover {
    color: var(--gold-light);
  }
  
  .footer-col h3,
  .footer-newsletter h3 {
    margin-bottom: 14px;
    color: var(--text-main);
    font-family: "Montserrat", "Inter", Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  .footer-col a {
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 13px;
    transition: var(--transition);
  }
  
  .footer-col a:hover {
    color: var(--gold-light);
  }
  
  .footer-newsletter p {
    margin-bottom: 16px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.5;
  }
  
  .newsletter-form {
    display: flex;
    overflow: hidden;
    border: 1px solid var(--border-muted);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.04);
  }
  
  .newsletter-form input {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    color: var(--text-main);
    background: transparent;
    border: none;
    outline: none;
    font-size: 13px;
  }
  
  .newsletter-form input::placeholder {
    color: var(--text-soft);
  }
  
  .newsletter-form button {
    width: 52px;
    border: none;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color: #111;
    cursor: pointer;
    font-size: 16px;
  }
  
  .footer-bottom {
    margin-top: 34px;
    padding-top: 18px;
    border-top: 1px solid var(--border-muted);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: var(--text-soft);
    font-size: 12px;
  }
  
  .footer-heart {
    color: var(--gold-light);
  }
  
  .footer-disclaimer {
    margin-top: 14px;
    color: var(--text-soft);
    font-size: 11px;
    line-height: 1.5;
  }
  
  @media (max-width: 1200px) {
    .footer-grid {
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
  
    .footer-newsletter {
      grid-column: span 2;
    }
  }
  
  @media (max-width: 800px) {
    .footer-grid {
      grid-template-columns: 1fr 1fr;
    }
  
    .footer-brand,
    .footer-newsletter {
      grid-column: 1 / -1;
    }
  
    .footer-bottom {
      flex-direction: column;
    }
  }
  
  @media (max-width: 520px) {
    .footer-grid {
      grid-template-columns: 1fr;
    }
  
    .footer-logo-mark {
        width: 190px;
        max-width: 65vw;
        height: auto;
    }
  
    .footer-logo-text {
      width: 170px;
    }
  }

  .home-page {
    background: var(--bg-main);
  }
  
  .home-hero {
    min-height: 200px;
    align-items: center;
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
  }
  
  .home-hero-media {
    position: absolute;
    inset: 0;
    z-index: 1;
  }
  
  .home-hero-media img,
  .home-hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .home-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
      linear-gradient(90deg, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.76) 38%, rgba(0,0,0,0.2) 100%),
      linear-gradient(0deg, #050505 0%, rgba(5,5,5,0.25) 45%, rgba(5,5,5,0.1) 100%);
  }
  
  .home-hero-content {
    position: relative;
    z-index: 3;
    padding-top: 80px;
  }
  
  .home-hero-content h1 {
    max-width: 510px;
    font-family: "Montserrat", "Inter", Arial, sans-serif;
    font-size: clamp(3rem, 6vw, 5.8rem);
    line-height: 1.02;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    font-size: 48px;
  }
  
  .home-hero-content h1 span {
    color: var(--gold-light);
  }
  
  .home-hero-content p {
    max-width: 500px;
    margin: 24px 0 34px;
    color: var(--text-main);
    font-size: clamp(1rem, 1.4vw, 1.35rem);
  }
  
  .home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
  }
  
  .home-search-section {
    position: relative;
    z-index: 5;
    margin-top: -76px;
  }
  
  .container-search-box {
    display: grid;
    gap: 12px;
    padding: 20px;
    background: rgba(8, 8, 8, 0.92);
    border: 1px solid var(--border-muted);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
  }

  .home-search-box {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr auto;
    gap: 12px;
  }
  
  .home-search-box input,
  .home-search-box select {
    min-height: 54px;
    padding: 0 16px;
    color: var(--text-main);
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-muted);
    border-radius: var(--radius-sm);
    outline: none;
  }
  
  .home-search-box input::placeholder {
    color: var(--text-muted);
  }
  
  .popular-searches {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 14px;
    color: var(--text-muted);
    font-size: 13px;
  }
  
  .popular-searches a {
    color: var(--gold-light);
    text-decoration: underline;
    text-underline-offset: 4px;
  }
  
  .home-djs-section {
    padding: 18px 0 28px 0;
  }
  
  .section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 24px;
  }
  
  .section-heading h2 {
    font-family: "Montserrat", "Inter", Arial, sans-serif;
    font-size: 28px;
    font-weight: 500;
    text-transform: uppercase;
  }
  
  .section-description {
    max-width: 740px;
    margin-top: 8px;
    color: var(--text-muted);
  }
  
  .section-link {
    color: var(--text-main);
    font-size: 13px;
    text-transform: uppercase;
  }
  
  .section-link:hover {
    color: var(--gold-light);
  }
  
  .home-dj-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
  
  .home-dj-card {
    overflow: hidden;
    border: 1px solid var(--border-muted);
    border-radius: 10px;
    background: rgba(255,255,255,0.035);
    transition: var(--transition);
  }
  
  .home-dj-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-soft);
  }
  
  .home-dj-image {
    position: relative;
    aspect-ratio: 4 / 4.5;
    background: #111;
    overflow: hidden;
  }
  
  .home-dj-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
  }
  
  .home-dj-card:hover .home-dj-image img {
    transform: scale(1.06);
  }
  
  .home-dj-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.95), rgba(0,0,0,0.05));
  }
  
  .home-dj-info {
    padding: 16px;
  }
  
  .home-dj-info h3 {
    margin-bottom: 4px;
    font-family: "Montserrat", "Inter", Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
  }
  
  .home-dj-info p {
    min-height: 42px;
    color: var(--text-muted);
    font-size: 13px;
  }
  
  .dj-rating {
    margin-top: 12px;
    color: var(--gold-light);
    font-size: 14px;
    font-weight: 700;
  }
  
  .home-stats {
    padding: 20px 0 56px;
  }
  
  @media (max-width: 1100px) {
    .home-search-box {
      grid-template-columns: 1fr 1fr;
    }
  
    .home-dj-grid,
    .home-features-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .home-features-grid div {
      border-bottom: 1px solid var(--border-muted);
    }
  }
  
  @media (max-width: 700px) {
    .home-hero {
      min-height: 620px;
    }
  
    .home-search-section {
      margin-top: 0;
      padding-top: 20px;
    }
  
    .home-search-box,
    .home-dj-grid,
    .home-features-grid {
      grid-template-columns: 1fr;
    }
  
    .section-heading {
      display: block;
    }
  
    .section-link {
      display: inline-block;
      margin-top: 14px;
    }
  
    .home-hero-actions .btn {
      width: 100%;
    }
  }

  .nav-menu a.active{
    color:#d4a44c;
    border-bottom:2px solid #d4a44c;
    }

.nav-menu a.active:hover{
        color:#e3b457;
}

.hidden {
    display: none !important;
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px;
    background: #050505;
    border-top: 1px solid rgba(255,255,255,0.12);
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 999;
}

.mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    padding: 10px 0;
}

.mobile-menu a.active {
    color: #c9a24d;
}

@media (min-width: 901px) {
    .mobile-menu {
        display: none !important;
    }

    .menu-toggle {
        display: none;
    }
}

@media (max-width: 900px) {
    .nav-menu {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}

.home-features{
    padding:70px 0;
}

.home-features-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

.feature-item{
    display:flex;
    align-items:flex-start;
    position:relative;
}

.feature-item:not(:last-child)::after{
    content:'';
    position:absolute;
    right:-20px;
    top:10px;
    width:1px;
    height:100px;
    background:rgba(255,255,255,.12);
}

.feature-item img{
    width:72px;
    height:72px;
    object-fit:contain;
    flex-shrink:0;
}

.feature-content {
    padding: 0px 10px;
}

.feature-content strong{
    display:block;
    color:#ffffff;
    font-size: 0.8125rem;
    font-weight:700;
    letter-spacing:.04em;
}

.feature-content p{
    color:#d7d7d7;
    line-height:1.7;
    font-size: 0.8125rem;
    margin:0;
}

@media(max-width:992px){

    .home-features-grid{
        grid-template-columns:1fr 1fr;
    }

    .feature-item:not(:last-child)::after{
        display:none;
    }
}

@media(max-width:768px){

    .home-features-grid{
        grid-template-columns:1fr;
        gap:45px;
    }

    .feature-item{
        align-items:center;
    }

    .feature-item img{
        width:60px;
        height:60px;
    }
}

.search-input-wrapper{
    position:relative;
}

.search-icon{
    position:absolute;
    left:16px;
    top:50%;
    transform:translateY(-50%);
    color:#8c8c8c;
    color:#FFFFFF;
    display:flex;
    align-items:center;
    pointer-events:none;
}

.search-input-wrapper input{
    padding-left:48px;
    width: 100%;
}

.home-stats-bar{
    padding:16px 0 26px;
}

.home-stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    background:rgba(255,255,255,.02);
    border:1px solid rgba(255,255,255,.10);
    border-radius:10px;
    overflow:hidden;
}

.stats-item{
    display:flex;
    align-items:flex-start;
    gap:22px;
    padding:34px 38px 21px 38px;
    position:relative;
}

.stats-item:not(:last-child)::after{
    content:'';
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    width:1px;
    height:95px;
    background:rgba(255,255,255,.12);
}

.stats-item img{
    width:90px;
    height:90px;
    object-fit:contain;
    flex-shrink:0;
}

.stats-content strong{
    display:block;
    color:#c99a4a;
    font-size:1.9rem;
    font-weight:600;
    line-height:1;
    margin-bottom:10px;
}

.stats-content p{
    color:#d7d7d7;
    font-size:.95rem;
    font-weight:600;
    letter-spacing:.04em;
    margin:0;
}

@media(max-width:1100px){

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

    .stats-item:nth-child(2)::after{
        display:none;
    }
}

@media(max-width:768px){

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

    .stats-item{
        padding:28px 24px;
    }

    .stats-item::after{
        display:none;
    }

    .stats-content strong{
        font-size:2.2rem;
    }
}

.how-it-works {
    background:#050505;
    padding:0px 0 30px;
    color:#fff;
}

.how-it-works h4 {
    color:#f3bc17;
    text-align:center;
    font-size:1rem;
    margin:0 0 5px;
    font-weight:600;
    font-family:'Montserrat', sans-serif;
}

.how-it-works h2 {
    text-align:center;
    font-size:1.8rem;
    font-weight:400;
    letter-spacing:.08em;
    margin:0 0 35px;
}

.steps-grid {
    display:grid;
    grid-template-columns:1fr auto 1fr auto 1fr;
    align-items:center;
    gap:35px;
}

.step-item {
    display:flex;
    align-items:center;
    gap:22px;
}

.step-item img {
    width:84px;
    height:84px;
    object-fit:contain;
}

.step-item strong {
    display:block;
    font-size:1.1rem;
    margin-bottom:8px;
}

.step-item p {
    color:#d7d7d7;
    font-size:1rem;
    line-height:1.5;
    margin:0;
}

.step-separator {
    width:2px;
    height:80px;
    background:rgba(255,255,255,.25);
}

.dj-cta {
    background:#050505;
    padding:20px 0 60px;
}

.dj-cta-box {
    min-height:230px;
    border:1px solid rgba(243,188,23,.6);
    background:
        linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.35), rgba(0,0,0,.9)),
        url('../images/dj-crowd.jpg') center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    padding:40px 70px;
}

.dj-cta-content span {
    color:#f3bc17;
    font-weight:800;
    font-size:1rem;
}

.dj-cta-content h2 {
    color:#fff;
    font-size:2rem;
    font-weight:400;
    letter-spacing:.04em;
    margin:12px 0;
}

.dj-cta-content p {
    color:#fff;
    font-size:1.1rem;
    line-height:1.5;
    max-width:620px;
    margin:0;
}

.dj-cta-action {
    text-align:center;
    flex-shrink:0;
}

.btn-dj {
    display:inline-block;
    background:#d6a34a;
    color:#fff;
    padding:22px 58px;
    border-radius:4px;
    font-weight:800;
    text-decoration:none;
    font-size:1.1rem;
}

.dj-cta-action small {
    display:block;
    color:#fff;
    margin-top:18px;
    font-weight:700;
}

@media (max-width: 900px) {
    .steps-grid {
        grid-template-columns:1fr;
        gap:28px;
    }

    .step-separator {
        display:none;
    }

    .dj-cta-box {
        flex-direction:column;
        align-items:flex-start;
        padding:35px 25px;
    }

    .dj-cta-action {
        width:100%;
    }

    .btn-dj {
        width:100%;
        text-align:center;
    }
}

.dj-cta{
    background:#000;
    padding:25px 0 60px;
}

.dj-cta-box{
    border:1px solid #9b6a17;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.92) 0%,
            rgba(0,0,0,.55) 35%,
            rgba(0,0,0,.25) 60%,
            rgba(0,0,0,.88) 100%
        ),
        url('../images/dj-crowd.png');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    min-height:260px;

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

    padding:45px 55px;
}

/*

.dj-cta-content span{
    color:#d3a343;
    font-size:1rem;
    font-weight:700;
}

.dj-cta-content h2{
    color:#fff;
    font-size:3rem;
    font-family:serif;
    font-weight:400;
    margin:10px 0 18px;
}

.dj-cta-content p{
    color:#e6e6e6;
    font-size:1.2rem;
    line-height:1.7;
    max-width:700px;
}

.btn-dj{
    background:#d7ab5c;
    color:#fff;
    padding:26px 65px;
    text-decoration:none;
    font-weight:700;
    border-radius:6px;
    display:inline-block;
}

*/

.footer-socials{
    display:flex;
    gap:28px;
    align-items:center;
    margin-top:20px;
}

.footer-socials a{
    color:#fff;
    font-size:2rem;
    text-decoration:none;
    transition:.25s ease;
}

.footer-socials a:hover{
    color:#f3bc17;
    transform:translateY(-2px);
}

.home-djs-panel{
    border:1px solid rgba(255,255,255,.08);
    border-radius:12px;
    padding:18px;
    background:#050505;
}

.home-dj-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.home-dj-card{
    display:block;
    border-radius:14px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.08);
    background:#080808;
    transition:.25s ease;
}

.home-dj-card:hover{
    transform:translateY(-6px);
}

/* imagen */

.home-dj-image{
    position:relative;
    aspect-ratio:4/5.4;
    overflow:hidden;
    background:#111;
}

.home-dj-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .45s ease;
}

.home-dj-card:hover img{
    transform:scale(1.06);
}

/* overlay oscuro */

.home-dj-image::after{
    content:'';
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.98) 10%,
            rgba(0,0,0,.55) 45%,
            rgba(0,0,0,.15) 100%
        );
}

/* badge */

.verified-badge{
    position:absolute;
    top:18px;
    left:18px;
    z-index:4;
    display:flex;
    align-items:center;
    gap:12px;
    padding:8px 16px;
    border-radius:10px;
    background:rgba(12,12,12,.66);
    border:1px solid rgba(255,255,255,.10);
    backdrop-filter:blur(8px);
    box-shadow:
        0 4px 18px rgba(0,0,0,.35);
}

.verified-text{
    color:#ffffff;
    font-size:10px;
    font-weight:500;
    letter-spacing:.06em;
}

.verified-icon{
    width:12px;
    height:12px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#d3a343;
    color:#111;
    flex-shrink:0;
}

.verified-icon i{
    font-size:8px;
}

/* contenido */

.home-dj-overlay-content{
    position:absolute;
    left:22px;
    right:22px;
    bottom:20px;
    z-index:3;
}

.dj-location{
    text-transform: uppercase;
    font-size:14px;
    margin-bottom:4px;
    font-weight:600;
}

.home-dj-overlay-content h3{
    color:#fff;
    font-size:1.5rem;
    margin:0 0 0px;
    font-weight:400;
}

.home-dj-overlay-content p{
    color:#cfcfcf;
    font-size:0.8rem;
    line-height:1.6;
    margin:0;
}

/* footer */

.dj-card-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:28px;
}

.dj-rating{
    color:#d3a343;
    font-size:1.0rem;
    font-weight:700;
}

.dj-rating span{
    color:#bfbfbf;
    font-size:.90rem;
}

.dj-heart{
    color:#bdbdbd;
    font-size:1.2rem;
    transition:.2s;
}

.dj-heart:hover{
    color:#d3a343;
}

/* responsive */

@media(max-width:1100px){
    .home-dj-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .home-dj-grid{
        grid-template-columns:1fr;
    }

    .home-dj-overlay-content h3{
        font-size:1.6rem;
    }
}

.dj-location{
    display:flex;
    align-items:center;
    gap:10px;

    color:#d3a343;
    font-size:14px;
    font-weight:600;
}

.dj-location i{
    color:#d3a343;
    font-size:1.2rem;
}

.legal-page{
    background:#050505;
    color:var(--text-main);
}

.legal-hero{
    padding:70px 0 35px;
    border-bottom:1px solid rgba(255,255,255,.08);
    background:
        linear-gradient(90deg, rgba(0,0,0,.96), rgba(0,0,0,.72)),
        #050505;
}

.legal-hero span{
    display:block;
    color:#d3a343;
    font-size:.85rem;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.08em;
    margin-bottom:10px;
}

.legal-hero h1{
    color:#fff;
    font-size:clamp(2rem, 4vw, 3.5rem);
    font-weight:500;
    text-transform:uppercase;
    margin:0;
}

.legal-content-section{
    padding:40px 0 70px;
}

.legal-card{
    max-width:1100px;
    margin:0 auto;
    padding:42px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:14px;
    background:rgba(255,255,255,.035);
}

.legal-content-section span{
    display:block;
    color:#d3a343;
    font-size:.85rem;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.08em;
    margin-bottom:10px;
}

.legal-content{
    color:#cfcfcf;
    font-size:1rem;
    line-height:1.9;
}

.legal-content h1,
.legal-content h2,
.legal-content h3{
    color:#fff;
    font-weight:500;
    margin:34px 0 14px;
}

.legal-content h1:first-child,
.legal-content h2:first-child,
.legal-content h3:first-child{
    margin-top:0;
}

.legal-content h2{
    font-size:1.6rem;
}

.legal-content h3{
    font-size:1.25rem;
    color:#d3a343;
}

.legal-content p{
    margin:0 0 18px;
}

.legal-content ul,
.legal-content ol{
    margin:0 0 24px 22px;
    padding:0;
}

.legal-content li{
    margin-bottom:10px;
}

.legal-content a{
    color:#d3a343;
    text-decoration:underline;
    text-underline-offset:4px;
}

.legal-content strong{
    color:#fff;
}

@media(max-width:768px){
    .legal-hero{
        padding:45px 0 25px;
    }

    .legal-card{
        padding:26px 20px;
    }

    .legal-content{
        font-size:.95rem;
    }
}

.djs-page{
    background:#050505;
    min-height:100vh;
}

.djs-hero{
    padding:28px 0 18px;
    background:
        linear-gradient(180deg, rgba(5,5,5,.92), rgba(5,5,5,.86)),
        #050505;
}

.djs-search-panel{
    max-width:1320px;
    margin:0 auto;
    padding:10px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:10px;
    background:rgba(8,8,8,.88);
}

.djs-search-form{
    display:grid;
    grid-template-columns:1.4fr 1fr 1.15fr 1fr auto;
    gap:10px;
}

.djs-search-field{
    min-height:56px;
    display:flex;
    align-items:center;
    gap:12px;
    padding:0 16px;
    border:1px solid rgba(255,255,255,.14);
    border-radius:6px;
    background:rgba(255,255,255,.025);
    color:#fff;
}

.djs-search-field i{
    color:#fff;
    font-size:1rem;
}

.djs-search-field input,
.djs-search-field select{
    width:100%;
    height:100%;
    border:0;
    outline:0;
    background:transparent;
    color:#fff;
    font-size:.9rem;
}

.djs-search-field input::placeholder{
    color:#b8b2a8;
}

.djs-search-field select{
    appearance:none;
    background:none;
    padding:0;
}

.djs-search-button{
    min-width:150px;
    border:0;
    border-radius:6px;
    background:linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color:#111;
    font-size:.85rem;
    font-weight:800;
    text-transform:uppercase;
    cursor:pointer;
}

.djs-results-section{
    padding:26px 0 70px;
}

.djs-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

@media(max-width:1100px){
    .djs-search-form{
        grid-template-columns:1fr 1fr;
    }

    .djs-search-button{
        min-height:56px;
    }

    .djs-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:700px){
    .djs-search-form,
    .djs-grid{
        grid-template-columns:1fr;
    }
}

.home-select-wrapper{
    position:relative;
}

.home-select-icon{
    position:absolute;
    left:16px;
    top:50%;
    transform:translateY(-50%);
    color:#fff;
    z-index:2;
    pointer-events:none;
}

.home-select-wrapper select{
    width:100%;
    padding-left:48px;
}

.djs-search-panel{
    max-width:1320px;
    margin:0 auto 24px;
    padding:10px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:10px;
    background:rgba(8,8,8,.88);
}

.djs-search-form{
    display:grid;
    grid-template-columns:1.4fr 1fr 1.15fr 1fr auto;
    gap:10px;
}

.djs-search-field{
    min-height:56px;
    display:flex;
    align-items:center;
    gap:12px;
    padding:0 16px;
    border:1px solid rgba(255,255,255,.14);
    border-radius:6px;
    background:rgba(255,255,255,.025);
    color:#fff;
}

.djs-search-field i{
    color:#fff;
}

.djs-search-field input,
.djs-search-field select{
    width:100%;
    height:100%;
    border:0;
    outline:0;
    background:transparent;
    color:#fff;
    font-size:.9rem;
}

.djs-search-field input::placeholder{
    color:#b8b2a8;
}

.djs-search-field select{
    appearance:none;
    padding:0;
}

.djs-search-field:focus-within{
    border-color:#c99a4a;
}

.djs-search-button{
    min-width:150px;
    border:0;
    border-radius:6px;
    background:linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color:#111;
    font-size:.85rem;
    font-weight:800;
    text-transform:uppercase;
    cursor:pointer;
}

.djs-active-filters{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
    margin-top:14px;
    padding:0 8px 4px;
    color:#b8b2a8;
    font-size:.85rem;
}

.filter-chip{
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:6px 12px;
    border:1px solid rgba(255,255,255,.14);
    border-radius:5px;
    color:#d3a343;
    background:rgba(255,255,255,.035);
    text-decoration:none;
}

.clear-filters{
    margin-left:auto;
    color:#d3a343;
    font-size:.85rem;
    text-decoration:none;
}

@media(max-width:1100px){
    .djs-search-form{
        grid-template-columns:1fr 1fr;
    }

    .djs-search-button{
        min-height:56px;
    }
}

@media(max-width:700px){
    .djs-search-form{
        grid-template-columns:1fr;
    }

    .clear-filters{
        margin-left:0;
    }
}

.djs-search-form{
    position:relative;
}

.djs-filter-trigger{
    min-height:56px;
    display:flex;
    align-items:center;
    gap:12px;
    padding:0 16px;
    border:1px solid rgba(255,255,255,.14);
    border-radius:6px;
    background:rgba(255,255,255,.025);
    color:#fff;
    cursor:pointer;
    font-size:.9rem;
}

.djs-filter-trigger span{
    flex:1;
    text-align:left;
}

.djs-filter-trigger.active{
    border-color:#c99a4a;
}

.djs-filter-panel{
    display:none;
    position:absolute;
    top:74px;
    left:0;
    right:0;
    z-index:20;

    padding:28px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:10px;
    background:rgba(16,16,16,.96);
    backdrop-filter:blur(14px);
}

.djs-filter-panel.active{
    display:block;
}

.filter-panel-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:24px;
}

.filter-panel-header h3{
    margin:0;
    color:#fff;
    font-size:1.2rem;
    font-weight:500;
    text-transform:uppercase;
}

.close-filter-panel{
    background:none;
    border:0;
    color:#fff;
    font-size:28px;
    cursor:pointer;
}

.filter-options-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:12px;
}

.filter-option{
    min-height:58px;
    display:flex;
    align-items:center;
    gap:12px;
    padding:0 16px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:6px;
    background:rgba(255,255,255,.025);
    color:#fff;
    cursor:pointer;
}

.filter-option input{
    width:18px;
    height:18px;
    accent-color:#c99a4a;
}

.filter-option:has(input:checked){
    border-color:#c99a4a;
    background:rgba(201,154,74,.12);
}

.filter-panel-footer{
    margin-top:28px;
    display:flex;
    justify-content:flex-end;
    gap:14px;
}

.filter-cancel,
.filter-apply{
    min-height:52px;
    padding:0 34px;
    border-radius:6px;
    text-transform:uppercase;
    font-weight:800;
    cursor:pointer;
}

.filter-cancel{
    background:transparent;
    color:#fff;
    border:1px solid rgba(255,255,255,.18);
}

.filter-apply{
    border:0;
    color:#111;
    background:linear-gradient(135deg, var(--gold-light), var(--gold-dark));
}

@media(max-width:900px){
    .filter-options-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .djs-filter-panel{
        position:static;
        grid-column:1 / -1;
        margin-top:10px;
    }
}

@media(max-width:600px){
    .filter-options-grid{
        grid-template-columns:1fr;
    }
}

.djs-search-panel{
    width:100%;
    max-width:none;
    margin:0 0 24px;
    padding:10px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:10px;
    background:rgba(8,8,8,.88);
}

.signup-page {
    background:
        radial-gradient(circle at top right, rgba(201,154,74,.14), transparent 34%),
        radial-gradient(circle at bottom left, rgba(201,154,74,.10), transparent 28%),
        #050505;
    min-height: calc(100vh - 86px);
}

.signup-hero {
    padding: 70px 0;
}

.signup-grid {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 48px;
    align-items: center;
}

.signup-left {
    min-height: 620px;
    padding: 54px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.signin-left-img {
    background:
    linear-gradient(90deg, rgba(0,0,0,.96), rgba(0,0,0,.68), rgba(0,0,0,.28)),
    url('../images/signin-left.png') center/cover no-repeat;
}

.signup-left-img {
    background:
    linear-gradient(90deg, rgba(0,0,0,.96), rgba(0,0,0,.68), rgba(0,0,0,.28)),
    url('../images/signup-left.png') center/cover no-repeat;
}

.verify-left-img {
    background:
    linear-gradient(90deg, rgba(0,0,0,.96), rgba(0,0,0,.68), rgba(0,0,0,.28)),
    url('../images/verify-left.png') center/cover no-repeat;
}

.forgot-left-img {
    background:
    linear-gradient(90deg, rgba(0,0,0,.96), rgba(0,0,0,.68), rgba(0,0,0,.28)),
    url('../images/forgot-left.png') center/cover no-repeat;
}

.reset-left-img {
    background:
    linear-gradient(90deg, rgba(0,0,0,.96), rgba(0,0,0,.68), rgba(0,0,0,.28)),
    url('../images/reset-left.png') center/cover no-repeat;
}

.signup-kicker {
    color: #d3a343;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .10em;
    margin-bottom: 14px;
}

.signup-left h1 {
    color: #fff;
    font-size: clamp(2.4rem, 4vw, 4.6rem);
    line-height: 1.02;
    font-weight: 800;
    margin: 0 0 18px;
    letter-spacing: -.04em;
}

.signup-left h1 strong {
    color: #d3a343;
    font-weight: 800;
}

.signup-left p {
    max-width: 560px;
    color: #e8e8e8;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 34px;
}

.signup-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.signup-benefits div {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
}

.signup-benefits i {
    width: 42px;
    height: 42px;
    border: 1px solid #d3a343;
    border-radius: 50%;
    color: #d3a343;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.signup-card {
    padding: 34px;
    border: 1px solid rgba(201,154,74,.35);
    border-radius: 14px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
    box-shadow: 0 24px 80px rgba(0,0,0,.42);
}

.signup-card-header {
    margin-bottom: 26px;
}

.signup-card-header span {
    display: inline-block;
    margin-bottom: 10px;
    color: #d3a343;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.signup-card-header h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    margin: 0 0 8px;
}

.signup-card-header p {
    color: #b8b2a8;
    font-size: .92rem;
    line-height: 1.6;
    margin: 0;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.signup-form-group label {
    display: block;
    margin-bottom: 7px;
    color: #f5f2ec;
    font-size: .82rem;
    font-weight: 600;
}

.signup-form-group input {
    width: 100%;
    min-height: 50px;
    padding: 0 14px;
    color: #fff;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 7px;
    outline: none;
    font-size: .9rem;
}

.signup-form-group input::placeholder {
    color: #7f7a72;
}

.signup-form-group input:focus {
    border-color: #c99a4a;
    box-shadow: 0 0 0 3px rgba(201,154,74,.10);
}

.signup-form-group input.is-valid {
    border-color: #22c55e;
}

.signup-form-group input.is-invalid {
    border-color: #ef4444;
}

.signup-form .password-rules {
    color: #9f988d;
    font-size: .75rem;
    line-height: 1.5;
    margin-top: 7px;
}

.signup-honeypot {
    position: absolute;
    left: -9999px;
}

.signup-alert.error {
    padding: 12px 14px;
    border: 1px solid rgba(239,68,68,.35);
    border-radius: 7px;
    background: rgba(239,68,68,.10);
    color: #fecaca;
    font-size: .85rem;
    line-height: 1.5;
}

.signup-submit {
    min-height: 54px;
    margin-top: 4px;
    border: 0;
    border-radius: 7px;
    color: #111;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    font-size: .85rem;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: .25s ease;
}

.signup-submit:hover {
    transform: translateY(-2px);
}

.signup-submit:disabled {
    opacity: .65;
    cursor: not-allowed;
    transform: none;
}

.signup-login {
    margin-top: 12px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.10);
    text-align: center;
    color: #b8b2a8;
    font-size: .88rem;
}

.signup-login a {
    color: #d3a343;
    margin-left: 6px;
}

.signup-login a:hover {
    color: #e0b86a;
}

@media (max-width: 1100px) {
    .signup-grid {
        grid-template-columns: 1fr;
    }

    .signup-left {
        min-height: 520px;
    }

    .signup-card {
        max-width: 620px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 700px) {
    .signup-hero {
        padding: 36px 0;
    }

    .signup-left {
        min-height: auto;
        padding: 34px 24px;
    }

    .signup-benefits {
        grid-template-columns: 1fr;
    }

    .signup-card {
        padding: 26px 20px;
    }
}

.signup-grid-center {
    align-items: stretch;
}

.verify-left {
    justify-content: flex-end;
}

.verify-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.verify-icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 22px;
    border: 1px solid rgba(201,154,74,.55);
    border-radius: 50%;
    color: #d3a343;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: rgba(201,154,74,.08);
}

.verify-card-header {
    margin-bottom: 24px;
}

.verify-email-box {
    margin: 20px auto 0;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 7px;
    background: rgba(255,255,255,.035);
    color: #fff;
    font-size: .9rem;
    word-break: break-all;
}

.verify-actions {
    margin-top: 6px;
}

.verify-actions p {
    color: #b8b2a8;
    font-size: .9rem;
    margin-bottom: 14px;
}

.verify-card .signup-submit {
    width: 100%;
}

.signup-alert.success {
    margin-top: 16px;
    padding: 12px 14px;
    border: 1px solid rgba(34,197,94,.35);
    border-radius: 7px;
    background: rgba(34,197,94,.10);
    color: #bbf7d0;
    font-size: .85rem;
    line-height: 1.5;
}

.signup-alert.error {
    margin-top: 16px;
    padding: 12px 14px;
    border: 1px solid rgba(239,68,68,.35);
    border-radius: 7px;
    background: rgba(239,68,68,.10);
    color: #fecaca;
    font-size: .85rem;
    line-height: 1.5;
}

.signin-forgot{
    text-align:right;
    margin-top:-4px;
}

.signin-forgot a{
    color:#d3a343;
    font-size:.85rem;
    text-decoration:none;
}

.signin-forgot a:hover{
    color:#e0b86a;
}

#loginError{
    margin-top:4px;
}

.dj-dashboard-page {
    background:
        radial-gradient(circle at top right, rgba(201,154,74,.14), transparent 34%),
        #050505;
    min-height: 100vh;
    color: #fff;
}

.dj-dashboard-hero {
    padding: 60px 0 24px;
}

.dashboard-welcome-card {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    padding: 34px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 14px;
    background:
        linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.68)),
        url('../images/dj-crowd.png') center/cover no-repeat;
}

.dashboard-kicker {
    display: block;
    margin-bottom: 10px;
    color: #d3a343;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .09em;
}

.dashboard-welcome-info h1 {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 800;
}

.dashboard-welcome-info p {
    max-width: 720px;
    color: #ddd;
    font-size: 1rem;
    line-height: 1.7;
}

.dashboard-progress {
    max-width: 720px;
    margin-top: 28px;
}

.dashboard-progress-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
}

.dashboard-progress-head strong {
    color: #d3a343;
}

.dashboard-progress-bar {
    height: 12px;
    overflow: hidden;
    border-radius: 99px;
    background: rgba(255,255,255,.12);
}

.dashboard-progress-bar div {
    height: 100%;
    border-radius: 99px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
}

.dashboard-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.dashboard-status-card {
    padding: 24px;
    border: 1px solid rgba(201,154,74,.35);
    border-radius: 12px;
    background: rgba(5,5,5,.72);
}

.dashboard-status-card span {
    display: block;
    color: #b8b2a8;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 6px;
}

.dashboard-status-card strong {
    display: block;
    color: #fff;
    font-size: 1rem;
}

.dashboard-status-card small {
    display: block;
    margin-top: 5px;
    color: #b8b2a8;
}

.dashboard-status-card hr {
    border: 0;
    border-top: 1px solid rgba(255,255,255,.12);
    margin: 18px 0;
}

.is-approved {
    color: #86efac !important;
}

.is-pending {
    color: #facc15 !important;
}

.dashboard-steps-section {
    padding: 0 0 70px;
}

.dashboard-steps-tabs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-top: 28px;
    margin-bottom: 24px;
}

.dashboard-steps-tabs a {
    min-height: 74px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 10px;
    background: rgba(255,255,255,.035);
    color: #fff;
    font-size: .85rem;
    font-weight: 700;
}

.dashboard-steps-tabs a span {
    display: block;
    margin-bottom: 6px;
    color: #d3a343;
    font-size: .75rem;
}

.dashboard-steps-tabs a.completed {
    border-color: rgba(201,154,74,.55);
    background: rgba(201,154,74,.10);
}

.dashboard-steps-tabs a.pending {
    color: #b8b2a8;
}

.dashboard-content-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 24px;
}

.dashboard-main-card,
.dashboard-checklist-card {
    padding: 30px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 14px;
    background: rgba(255,255,255,.035);
}

.dashboard-main-card h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
}

.dashboard-main-card p {
    max-width: 720px;
    margin-bottom: 26px;
    color: #b8b2a8;
    line-height: 1.7;
}

.dashboard-checklist-card h3 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
}

.dashboard-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    color: #b8b2a8;
    font-size: .85rem;
}

.dashboard-check-item span {
    color: #777;
}

.dashboard-check-item.done {
    color: #fff;
}

.dashboard-check-item.done span {
    color: #d3a343;
}

@media (max-width: 1100px) {
    .dashboard-welcome-card,
    .dashboard-content-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-steps-tabs {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 700px) {
    .dj-dashboard-hero {
        padding: 34px 0 18px;
    }

    .dashboard-welcome-card {
        padding: 24px 18px;
    }

    .dashboard-steps-tabs {
        grid-template-columns: 1fr;
    }

    .dashboard-actions .btn {
        width: 100%;
    }

    .dashboard-main-card,
    .dashboard-checklist-card {
        padding: 22px 18px;
    }
}

.dashboard-step-page {
    padding-top: 60px;
    padding-top: 26px;
}

.dashboard-step-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
}

.dashboard-steps-tabs a.active {
    border-color: rgba(201,154,74,.75);
    background: rgba(201,154,74,.16);
    color: #fff;
}

.dashboard-steps-tabs a.active span {
    color: #e0b86a;
}

@media (max-width: 900px) {
    .dashboard-step-layout {
        grid-template-columns: 1fr;
    }
}

.wizard-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 28px;
}

.wizard-form-group {
    margin-bottom: 18px;
}

.wizard-form-group label {
    display: block;
    margin-bottom: 7px;
    color: #f5f2ec;
    font-size: .82rem;
    font-weight: 600;
}

.wizard-form-group input,
.wizard-form-group select,
.wizard-form-group textarea {
    width: 100%;
    min-height: 50px;
    padding: 0 14px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 7px;
    background: rgba(255,255,255,.035);
    color: #fff;
    outline: none;
    font-size: .9rem;
    font-family: inherit;
}

.wizard-form-group textarea {
    min-height: 130px;
    padding: 14px;
    resize: vertical;
    line-height: 1.6;
}

.wizard-form-group input::placeholder,
.wizard-form-group textarea::placeholder {
    color: #7f7a72;
}

.wizard-form-group input:focus,
.wizard-form-group select:focus,
.wizard-form-group textarea:focus {
    border-color: #c99a4a;
    box-shadow: 0 0 0 3px rgba(201,154,74,.10);
}

.wizard-form-group select option {
    background: #111;
    color: #fff;
}

.dashboard-form-actions {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-top: 28px;
}

.dashboard-flash {
    margin-bottom: 18px;
    padding: 13px 16px;
    border-radius: 8px;
    font-size: .9rem;
}

.dashboard-flash.success {
    border: 1px solid rgba(34,197,94,.35);
    background: rgba(34,197,94,.10);
    color: #bbf7d0;
}

.dashboard-flash.error {
    border: 1px solid rgba(239,68,68,.35);
    background: rgba(239,68,68,.10);
    color: #fecaca;
}

.dashboard-side-note {
    margin-top: 24px;
    padding: 18px;
    border: 1px solid rgba(201,154,74,.30);
    border-radius: 10px;
    background: rgba(201,154,74,.07);
}

.dashboard-side-note strong {
    display: block;
    color: #d3a343;
    margin-bottom: 8px;
}

.dashboard-side-note p {
    color: #b8b2a8;
    font-size: .86rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 760px) {
    .wizard-form-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-form-actions {
        flex-direction: column;
    }

    .dashboard-form-actions .btn {
        width: 100%;
    }
}

.wizard-chips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 28px;
}

.wizard-chip {
    position: relative;
    display: block;
    cursor: pointer;
}

.wizard-chip input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.wizard-chip span {
    min-height: 34px;
    padding: 0 16px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 8px;
    background: rgba(255,255,255,.035);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: .86rem;
    transition: .2s ease;
}

.wizard-chip:hover span {
    border-color: rgba(201,154,74,.65);
}

.wizard-chip.selected span {
    border-color: #c99a4a;
    background: rgba(201,154,74,.16);
    color: #e0b86a;
}

@media (max-width: 1100px) {
    .wizard-chips-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 760px) {
    .wizard-chips-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .wizard-chips-grid {
        grid-template-columns: 1fr;
    }
}

.wizard-upload-form {
    margin-top: 28px;
}

.wizard-upload-area {
    min-height: 190px;
    margin-bottom: 18px;
    padding: 34px 24px;
    border: 1px dashed rgba(201,154,74,.55);
    border-radius: 12px;
    background: rgba(201,154,74,.055);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    text-align: center;
    transition: .2s ease;
}

.wizard-upload-area:hover {
    border-color: #d3a343;
    background: rgba(201,154,74,.09);
}

.wizard-upload-area input {
    display: none;
}

.wizard-upload-area .upload-icon {
    width: 58px;
    height: 58px;
    border: 1px solid rgba(201,154,74,.55);
    border-radius: 50%;
    color: #d3a343;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
}

.wizard-upload-area strong {
    color: #fff;
    font-size: 1rem;
}

.wizard-upload-area small {
    color: #b8b2a8;
    font-size: .85rem;
}

.wizard-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 28px;
}

.wizard-gallery-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 10px;
    background: #111;
}

.wizard-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wizard-gallery-item{
    position:relative;
    overflow:hidden;
}

.wizard-gallery-status{
    position:absolute;
    top:10px;
    left:10px;
    z-index:5;

    display:inline-flex;
    align-items:center;
    gap:6px;

    padding:7px 11px;
    border-radius:999px;

    color:#fff;
    font-size:.72rem;
    line-height:1;
    letter-spacing:.04em;

    box-shadow:0 8px 18px rgba(0,0,0,.35);
}

.wizard-gallery-status span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:15px;
    height:15px;
    border-radius:50%;
    background:rgba(255,255,255,.18);
    font-size:.68rem;
}

.wizard-gallery-status.authorized{
    background:rgba(22,163,74,.86);
}

.wizard-gallery-status.pending{
    background:rgba(245,158,11,.66);
}

.wizard-gallery-status.rejected{
    background: rgba(239,68,68,.66);
}

.wizard-gallery-item.rejected img{
    filter:grayscale(.15) brightness(.72);
}

.wizard-gallery-delete {
    position: absolute;
    top: 8px;
    right: 8px;
}

.wizard-gallery-delete button {
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 50%;
    background: rgba(0,0,0,.72);
    color: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.wizard-gallery-delete button:hover {
    background: rgba(239,68,68,.86);
}

.wizard-empty-state {
    margin-top: 28px;
    padding: 26px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 12px;
    background: rgba(255,255,255,.035);
}

.wizard-empty-state strong {
    display: block;
    margin-bottom: 8px;
    color: #fff;
}

.wizard-empty-state p {
    color: #b8b2a8;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 1100px) {
    .wizard-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 760px) {
    .wizard-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.review-profile-box {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 28px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 12px;
    background: rgba(255,255,255,.035);
}

.review-profile-box img,
.review-profile-placeholder {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    flex-shrink: 0;
}

.review-profile-box img {
    object-fit: cover;
    border: 1px solid rgba(201,154,74,.45);
}

.review-profile-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,154,74,.12);
    border: 1px solid rgba(201,154,74,.45);
    color: #d3a343;
    font-weight: 800;
}

.review-profile-box h3 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 1.4rem;
}

.review-profile-box p {
    margin: 0 0 5px;
    color: #d3a343;
}

.review-profile-box small {
    color: #b8b2a8;
}

.review-progress-box {
    margin-top: 26px;
}

.review-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.review-disabled-button {
    width: 100%;
    margin-top: 22px;
    cursor: not-allowed;
    opacity: .75;
}

.review-small-text {
    margin-top: 10px;
    color: #b8b2a8;
    font-size: .78rem;
    line-height: 1.5;
    text-align: center;
}

@media (max-width: 620px) {
    .review-profile-box {
        flex-direction: column;
        text-align: center;
    }

    .review-actions .btn {
        width: 100%;
    }
}

.wizard-help-text {
    display: block;
    margin-top: 6px;
    color: #9f988d;
    font-size: .75rem;
    line-height: 1.4;
}

.wizard-chips-grid-small {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 8px;
}

@media (max-width: 760px) {
    .wizard-chips-grid-small {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .wizard-chips-grid-small {
        grid-template-columns: 1fr;
    }
}

.gallery-limit-box {
    margin-top: 16px;
    padding: 18px;
    border: 1px solid rgba(201,154,74,.30);
    border-radius: 10px;
    background: rgba(201,154,74,.07);
}

.gallery-limit-box strong {
    display: block;
    color: #d3a343;
    font-size: 1.8rem;
    line-height: 1;
    margin-bottom: 8px;
}

.gallery-limit-box span {
    display: block;
    color: #fff;
    font-size: .9rem;
    line-height: 1.5;
}

.gallery-limit-box small {
    display: block;
    margin-top: 8px;
    color: #b8b2a8;
    font-size: .8rem;
}

.gallery-limit-box.limit-reached {
    border-color: rgba(239,68,68,.35);
    background: rgba(239,68,68,.10);
}

.gallery-limit-box.limit-reached strong {
    color: #fecaca;
}

.wizard-upload-area.dragover {
    border-color: #d3a343;
    background: rgba(201,154,74,.14);
    transform: translateY(-2px);
}

.wizard-upload-area.dragover .upload-icon {
    background: rgba(201,154,74,.16);
}

.section-divider{
    position:relative;
    height:1px;
    margin:36px 0;
    background:linear-gradient(
        to right,
        transparent,
        rgba(201,154,74,.25),
        rgba(201,154,74,.55),
        rgba(201,154,74,.25),
        transparent
    );
}

.section-divider::after{
    content:'';
    position:absolute;
    left:50%;
    top:50%;
    width:8px;
    height:8px;
    border-radius:50%;
    background:#c99a4a;
    transform:translate(-50%,-50%);
    box-shadow:0 0 10px rgba(201,154,74,.45);
}

.step-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 12px;
}

.step-card-header h2 {
    margin-bottom: 0;
}

.step-back-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#b8b2a8;
    font-size:.78rem;
    letter-spacing:.08em;
    text-decoration:none;
    transition:all .25s ease;
}

.step-back-link:hover{
    color:#f3bc17;
}

.required-label::after {
    content: '*';
    margin-left: 4px;
    color: #d3a343;
    font-weight: 700;
}

.step-number{
    position:relative;
    display:inline-block;
    font-size:2rem;
    font-weight:700;
    line-height:1;
}

.step-check{
    position:relative;
    margin-left:8px;
    font-size:.9rem;
    color:#d3a343;
}

.profile-images-section {
    margin-top: 10px;
}

.profile-images-section h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
}

.profile-images-section > p {
    margin: 0 0 22px;
    color: #b8b2a8;
    font-size: .9rem;
    line-height: 1.6;
}

.profile-images-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 20px;
}

.profile-image-uploader {
    padding: 18px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 12px;
    background: rgba(255,255,255,.035);
}

.profile-upload-preview {
    height: 260px;
    margin-bottom: 14px;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(0,0,0,.35);
    border: 1px solid rgba(255,255,255,.10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8f887d;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.profile-image-uploader-wide .profile-upload-preview {
    height: 260px;
}

.profile-upload-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-upload-drop {
    min-height: 120px;
    padding: 20px;
    border: 1px dashed rgba(201,154,74,.55);
    border-radius: 10px;
    background: rgba(201,154,74,.055);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    text-align: center;
    cursor: pointer;
    transition: .2s ease;
}

.profile-upload-drop:hover,
.profile-upload-drop.dragover {
    border-color: #d3a343;
    background: rgba(201,154,74,.12);
    transform: translateY(-2px);
}

.profile-upload-drop input {
    display: none;
}

.profile-upload-drop strong {
    color: #fff;
    font-size: .92rem;
    font-weight: 600;
}

.profile-upload-drop small {
    color: #b8b2a8;
    font-size: .78rem;
    line-height: 1.5;
}

.profile-image-delete {
    width: 100%;
    min-height: 42px;
    margin-top: 12px;
    border: 1px solid rgba(239,68,68,.35);
    border-radius: 8px;
    background: rgba(239,68,68,.08);
    color: #fecaca;
    cursor: pointer;
    font-weight: 700;
}

.profile-image-delete:hover {
    background: rgba(239,68,68,.16);
}

@media (max-width: 1000px) {
    .profile-images-grid {
        grid-template-columns: 1fr;
    }
}

.review-submit-form {
    margin-top: 24px;
    display: block;
}

.review-submit-form .btn {
    width: 100%;
}

.dashboard-checklist-card .btn {
    width: 100%;
}

.review-status-box{
    margin-top:24px;
    padding:24px;
    border-radius:18px;
    display:flex;
    gap:18px;
    align-items:flex-start;
}

.review-status-pending{
    background:rgba(243,188,23,.08);
    border:1px solid rgba(243,188,23,.25);
}

.review-status-approved{
    background:rgba(52,199,89,.08);
    border:1px solid rgba(52,199,89,.25);
}

.review-status-icon{
    font-size:1.8rem;
    color:#f3bc17;
    flex-shrink:0;
}

.review-status-approved .review-status-icon{
    color:#34c759;
}

.review-status-content h4{
    margin:0 0 8px;
    color:#fff;
    font-size:1rem;
}

.review-status-content p{
    margin:0 0 10px;
    color:#d8d8d8;
    line-height:1.6;
}

.review-status-content small{
    color:#9f9f9f;
    font-size:.85rem;
}

.profile-review-banner{
    display:flex;
    gap:16px;
    align-items:flex-start;

    margin-bottom:24px;
    padding:20px;

    border-radius:18px;

    background:rgba(243,188,23,.08);
    border:1px solid rgba(243,188,23,.25);
}

.profile-review-banner-icon{
    color:#f3bc17;
    font-size:1.4rem;
    flex-shrink:0;
}

.profile-review-banner strong{
    display:block;
    margin-bottom:6px;

    color:#fff;
    font-size:.95rem;
}

.profile-review-banner p{
    margin:0 0 8px;
    color:#d8d8d8;
}

.profile-review-banner small{
    color:#9a9a9a;
}

.profile-upload-locked {
    margin-top: 14px;
    padding: 16px;
    border-radius: 14px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
}

.profile-upload-locked strong {
    display: block;
    color: #fff;
    font-size: .9rem;
    margin-bottom: 4px;
}

.profile-upload-locked small {
    color: #a8a8a8;
    line-height: 1.5;
}

.wizard-chip.is-disabled {
    opacity: .55;
    cursor: not-allowed;
}

.wizard-chip.is-disabled input,
.wizard-chip.is-disabled span {
    cursor: not-allowed;
}

.dashboard-checklist-caption {
    margin: -4px 0 16px;
    color: #a7a7a7;
    font-size: .88rem;
    line-height: 1.5;
}

.dashboard-check-item small {
    margin-left: auto;
    color: #8f8f8f;
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.dashboard-check-item.is-optional {
    opacity: .82;
}

.review-status-rejected {
    background: rgba(255, 90, 90, .08);
    border: 1px solid rgba(255, 90, 90, .28);
}

.review-status-rejected .review-status-icon {
    color: #ff6b6b;
}

.review-notes-box {
    margin-top: 14px;
    padding: 16px;
    border-radius: 14px;

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

    color: #f0f0f0;
    line-height: 1.6;
    white-space: normal;
}

.experience-professional-form {
    margin-top: 24px;
}

.dashboard-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    color: #fff;
    font-weight: 600;
    font-size: .82rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: rgba(0,0,0,.35);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 12px;
    color: #fff;
    padding: 14px 16px;
    font-size: .95rem;
    outline: none;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:disabled,
.form-group textarea:disabled,
.form-group select:disabled {
    opacity: .6;
    cursor: not-allowed;
}

.technical-rider-box {
    margin-top: 24px;
}

.technical-rider-current {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    margin: 18px 0;
    padding: 16px;

    border-radius: 16px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
}

.technical-rider-current strong,
.technical-rider-current small {
    display: block;
}

.technical-rider-current strong {
    color: #fff;
    margin-bottom: 4px;
}

.technical-rider-current small {
    color: #aaa;
}

.technical-rider-upload {
    margin-top: 18px;
}

.technical-rider-upload .btn {
    margin-top: 16px;
}

@media (max-width: 768px) {
    .dashboard-form-grid {
        grid-template-columns: 1fr;
    }

    .technical-rider-current {
        align-items: flex-start;
        flex-direction: column;
    }
}

.auth-field{
    text-align:left;
}

.auth-field label{
    display:block;
    margin-bottom:12px;
    color:#fff;
    font-size:.82rem;
    font-weight:600;
}

.auth-input-wrap{
    position:relative;
}

.auth-input-wrap input{
    width:100%;
    height:50px;
    padding:0 14px;
    border-radius:7px;
    border:1px solid rgba(255,255,255,.18);
    background:rgba(255,255,255,.03);
    color:#fff;
    font-size:.9rem;
    outline:none;
}

.auth-input-wrap input::placeholder{
    color:rgba(255,255,255,.42);
}

.auth-input-wrap input:focus{
    border-color:#d3a343;
    box-shadow:0 0 0 3px rgba(211,163,67,.16);
}

.auth-input-icon{
    position:absolute;
    right:20px;
    top:50%;
    transform:translateY(-50%);

    width:38px;
    height:38px;
    border-radius:8px;

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

    background:#d94a43;
    color:#fff;
    font-size:1rem;
}

.password-rules{
    display:flex;
    flex-direction:column;
    gap:10px;
    font-size:.95rem;
    color:#b8b8b8;
}

.password-rules div{
    display:flex;
    align-items:center;
    gap:10px;
}

.password-rules i{
    width:18px;
}

.dashboard-status-card .is-draft{
    color:#b8b2a8;
}

.dashboard-status-card .is-pending{
    color:#f3bc17;
}

.dashboard-status-card .is-approved{
    color:#41c46b;
}

.dashboard-status-card .is-rejected{
    color:#e35d5d;
}

.dashboard-approved-actions-card{
    padding:42px;
    border-radius:22px;
    background:linear-gradient(145deg, rgba(30,30,30,.96), rgba(12,12,12,.96));
    border:1px solid rgba(243,188,23,.18);
}

.dashboard-approved-actions-card h2{
    color:#fff;
    font-size:2rem;
    margin:10px 0 12px;
}

.dashboard-approved-actions-card p{
    color:#cfcfcf;
    max-width:780px;
    line-height:1.7;
    margin:0 0 28px;
}

.approved-actions-grid{
    display:grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:18px;
}

.approved-action-item{
    display:flex;
    flex-direction:column;
    gap:10px;
    min-height:190px;
    padding:24px;
    border-radius:18px;
    text-decoration:none;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    transition:.25s ease;
}

.approved-action-item i{
    width:46px;
    height:46px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#111;
    background:#f3bc17;
    font-size:1.1rem;
    margin-bottom:8px;
}

.approved-action-item strong{
    color:#fff;
    font-size:1.05rem;
}

.approved-action-item span{
    color:#b8b8b8;
    font-size:.92rem;
    line-height:1.5;
}

.approved-action-item:hover{
    transform:translateY(-3px);
    border-color:rgba(243,188,23,.4);
    background:rgba(243,188,23,.08);
}

.dashboard-status-card .is-draft{
    color:#b8b2a8;
}

.dashboard-status-card .is-pending{
    color:#f3bc17;
}

.dashboard-status-card .is-approved{
    color:#41c46b;
}

.dashboard-status-card .is-rejected{
    color:#e35d5d;
}

@media (max-width:1100px){
    .approved-actions-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
}

@media (max-width:640px){
    .dashboard-approved-actions-card{
        padding:28px;
    }

    .approved-actions-grid{
        grid-template-columns:1fr;
    }
}

.profile-review-banner-rejected{
    border:1px solid rgba(227,93,93,.30);
    background:rgba(227,93,93,.08);
}

.profile-review-banner-rejected .profile-review-banner-icon{
    color:#e35d5d;
}

.profile-review-banner-rejected strong{
    color:#ff8b8b;
}

.profile-review-notes{
    margin-top:14px;
    padding:14px 16px;

    border-radius:10px;

    background:rgba(0,0,0,.20);
    border-left:4px solid #e35d5d;

    color:#d8d8d8;
    line-height:1.7;
}

.profile-review-banner-rejected{
    border:1px solid rgba(227,93,93,.30);
    background:rgba(227,93,93,.08);
}

.profile-review-banner-rejected .profile-review-banner-icon{
    color:#e35d5d;
}

.profile-review-banner-rejected strong{
    color:#ff8b8b;
}

.profile-review-link{
    display:inline-block;
    color:#fff;
    font-size:.9rem;
    text-decoration:none;
    transition:.2s ease;
}

.profile-review-link:hover{
    color:#ff8b8b;
    text-decoration:underline;
}

.review-side-note-approved{
    background:rgba(65,196,107,.08);
    border:1px solid rgba(65,196,107,.25);
}

.review-side-note-approved strong{
    color:#41c46b;
}

.dashboard-side-note small{
    display:block;
    margin-top:10px;
    color:#aaa;
    font-size:.82rem;
}

.profile-review-banner-draft{
    border-color:rgba(243,188,23,.25);
    background:rgba(243,188,23,.06);
}

.profile-review-banner-draft .profile-review-banner-icon{
    color:#f3bc17;
}

.profile-review-banner-ready{
    border-color:rgba(65,196,107,.25);
    background:rgba(65,196,107,.08);
}

.profile-review-banner-ready .profile-review-banner-icon{
    color:#41c46b;
}

.profile-gallery-carousel{
    display:flex;
    gap:16px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    padding-bottom:8px;
}

.profile-gallery-carousel .profile-media-item{
    min-width:210px;
    height:150px;
    border:0;
    padding:0;
    cursor:pointer;
    scroll-snap-align:start;
}

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

.gallery-modal.is-active{
    display:flex;
}

.gallery-modal img{
    max-width:88vw;
    max-height:82vh;
    object-fit:contain;
}

.gallery-modal-close,
.gallery-modal-prev,
.gallery-modal-next{
    position:absolute;
    border:0;
    background:transparent;
    color:#fff;
    cursor:pointer;
    z-index:2;
}

.gallery-modal-close{
    top:22px;
    right:28px;
    font-size:42px;
}

.gallery-modal-prev,
.gallery-modal-next{
    top:50%;
    transform:translateY(-50%);
    font-size:42px;
}

.gallery-modal-prev{
    left:28px;
}

.gallery-modal-next{
    right:28px;
}

@media(max-width:700px){
    .profile-gallery-carousel .profile-media-item{
        min-width:78%;
        height:210px;
    }

    .gallery-modal-prev{
        left:12px;
    }

    .gallery-modal-next{
        right:12px;
    }
}

.profile-gallery-carousel{
    display:flex;
    gap:16px;
    overflow-x:auto;
    padding-bottom:8px;
    scroll-behavior:smooth;
}

.profile-gallery-carousel::-webkit-scrollbar{
    height:8px;
}

.profile-gallery-carousel::-webkit-scrollbar-thumb{
    background:rgba(211,163,67,.5);
    border-radius:20px;
}

.profile-gallery-carousel .profile-media-item{
    min-width:260px;
    height:170px;
    flex-shrink:0;

    border:0;
    padding:0;
    cursor:pointer;
    background:none;

    overflow:hidden;
    border-radius:6px;
}

.profile-gallery-carousel .profile-media-item img{
    width:100%;
    height:100%;
    object-fit:cover;

    transition:.35s;
}

.profile-gallery-carousel .profile-media-item:hover img{
    transform:scale(1.05);
}

.gallery-modal{
    display:none;

    position:fixed;
    inset:0;

    z-index:99999;

    align-items:center;
    justify-content:center;
}

.gallery-modal.is-active{
    display:flex;
}

.gallery-modal-overlay{
    position:absolute;
    inset:0;

    background:rgba(0,0,0,.92);
    backdrop-filter:blur(6px);
}

.gallery-modal img{
    position:relative;
    z-index:2;

    max-width:88vw;
    max-height:85vh;

    object-fit:contain;

    border-radius:8px;
}

.gallery-modal-close,
.gallery-modal-prev,
.gallery-modal-next{
    position:absolute;

    z-index:3;

    border:0;
    background:transparent;

    color:#fff;

    cursor:pointer;
}

.gallery-modal-close{
    top:18px;
    right:24px;

    font-size:48px;
}

.gallery-modal-prev,
.gallery-modal-next{
    top:50%;

    transform:translateY(-50%);

    font-size:42px;

    padding:12px;
}

.gallery-modal-prev{
    left:24px;
}

.gallery-modal-next{
    right:24px;
}

.gallery-modal-close:hover,
.gallery-modal-prev:hover,
.gallery-modal-next:hover{
    color:#d3a343;
}

@media(max-width:700px){

    .profile-gallery-carousel .profile-media-item{
        min-width:85%;
        height:220px;
    }

    .gallery-modal-prev{
        left:8px;
    }

    .gallery-modal-next{
        right:8px;
    }

    .gallery-modal-close{
        right:14px;
        top:10px;
    }

}

.profile-final-cta-full{
    grid-template-columns:1fr;
}

.profile-final-cta-full .profile-cta-block{
    max-width:700px;
}

.profile-cta-actions{
    margin-top:28px;
}

.profile-contact-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
}

.profile-contact-btn i{
    margin-right:0;
}

.purchase-current-box{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:24px;
    background:linear-gradient(135deg, #2b2b2f, #171719);
    border:1px solid rgba(243,188,23,.28);
    border-radius:22px;
    padding:26px;
    margin:0 0 28px;
    box-shadow:0 20px 48px rgba(0,0,0,.28);
    margin-top: 24px;;
}

.purchase-current-label{
    display:block;
    color:#f3bc17;
    font-size:.75rem;
    font-weight:800;
    letter-spacing:.14em;
    text-transform:uppercase;
    margin-bottom:10px;
}

.purchase-current-box h2{
    margin:0 0 14px;
    color:#ffffff;
    font-size:1.65rem;
    line-height:1.1;
}

.purchase-current-dates{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    color:#bdbdbd;
    font-size:.92rem;
}

.purchase-current-dates strong{
    color:#ffffff;
}

.purchase-current-price{
    text-align:right;
    min-width:140px;
}

.purchase-current-price small{
    display:block;
    color:#f3bc17;
    font-size:.78rem;
    font-weight:800;
    letter-spacing:.08em;
    margin-bottom:6px;
}

.purchase-current-price strong{
    color:#ffffff;
    font-size:1.9rem;
    line-height:1;
}

.purchase-history-box{
    background:#1f1f22;
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    overflow:hidden;
}

.purchase-history-title{
    padding:24px 26px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.purchase-history-title h2{
    margin:0 0 8px;
    color:#ffffff;
    font-size:1.3rem;
}

.purchase-history-title p{
    margin:0;
    color:#aaa;
    font-size:.92rem;
    line-height:1.6;
}

.purchase-table-scroll{
    overflow-x:auto;
}

.purchase-history-table{
    width:100%;
    border-collapse:collapse;
    min-width:820px;
}

.purchase-history-table td{
    padding:17px 16px;
    color:#d7d7d7;
    font-size:.9rem;
    border-bottom:1px solid rgba(255,255,255,.07);
    vertical-align:middle;
}

.purchase-history-table tr:last-child td{
    border-bottom:0;
}

.purchase-plan-cell strong,
.purchase-money-cell strong,
.purchase-date-cell strong{
    display:block;
    color:#ffffff;
    font-size:.96rem;
    margin-bottom:5px;
}

.purchase-plan-cell span{
    display:inline-flex;
    align-items:center;
    background:rgba(243,188,23,.14);
    border:1px solid rgba(243,188,23,.35);
    color:#f3bc17;
    border-radius:999px;
    padding:4px 9px;
    font-size:.68rem;
    font-weight:900;
    letter-spacing:.04em;
    text-transform:uppercase;
}

.purchase-money-cell span,
.purchase-date-cell span{
    display:block;
    color:#888;
    font-size:.78rem;
}

.purchase-status{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    min-width:88px;
    padding:7px 10px;
    border-radius:999px;
    font-size:.7rem;
    font-weight:900;
    letter-spacing:.04em;
    text-transform:uppercase;
}

.purchase-status.paid{
    background:rgba(46,204,113,.14);
    color:#2ecc71;
    border:1px solid rgba(46,204,113,.32);
}

.purchase-status.pending{
    background:rgba(243,188,23,.14);
    color:#f3bc17;
    border:1px solid rgba(243,188,23,.32);
}

.purchase-status.cancelled,
.purchase-status.expired,
.purchase-status.failed{
    background:rgba(231,76,60,.14);
    color:#e74c3c;
    border:1px solid rgba(231,76,60,.32);
}

.purchase-empty-box{
    padding:42px 24px;
    text-align:center;
}

.purchase-empty-box h3{
    margin:0 0 8px;
    color:#ffffff;
    font-size:1.15rem;
}

.purchase-empty-box p{
    margin:0;
    color:#aaa;
    font-size:.92rem;
}

@media (max-width:768px){
    .purchase-current-box{
        display:block;
        padding:22px;
        border-radius:18px;
    }

    .purchase-current-price{
        text-align:left;
        margin-top:22px;
    }

    .purchase-current-price strong{
        font-size:1.65rem;
    }

    .purchase-history-title{
        padding:22px;
    }
}

.dashboard-main-nav{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin:0 0 28px;
    padding:12px;
    background:#1f1f22;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
}

.dashboard-main-nav a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:44px;
    padding:0 20px;
    border-radius:999px;
    color:#d7d7d7;
    text-decoration:none;
    font-size:.86rem;
    font-weight:800;
    letter-spacing:.04em;
    text-transform:uppercase;
    border:1px solid transparent;
    transition:.2s ease;
}

.dashboard-main-nav a:hover{
    color:#f3bc17;
    border-color:rgba(243,188,23,.35);
    background:rgba(243,188,23,.08);
}

.dashboard-main-nav a.active{
    background:#f3bc17;
    color:#111111;
    border-color:#f3bc17;
}

@media (max-width:768px){
    .dashboard-main-nav{
        display:grid;
        grid-template-columns:1fr;
        gap:10px;
        padding:10px;
    }

    .dashboard-main-nav a{
        width:100%;
    }
}

.dashboard-subnav{
    display:flex;
    gap:28px;
    margin:0 0 22px;
    padding-bottom:0px;
}

.dashboard-subnav a{
    position:relative;
    color:#FFF;
    text-decoration:none;
    font-size:.8rem;
    font-weight:400;
    letter-spacing:.12em;
}

.dashboard-subnav a.active{
    color:#f3bc17;
}

.dashboard-subnav a.active::after{
    content:'';
    position:absolute;
    left:0;
    right:0;
    bottom:0px;
    height:2px;
    background:#f3bc17;
}

.purchase-main-card{
    padding:0;
    overflow:hidden;
}

.purchase-hero-box{
    display:grid;
    grid-template-columns:1fr 360px;
    gap:28px;
    align-items:stretch;
    padding:34px;
    background:
        linear-gradient(135deg, rgba(43,43,47,.98), rgba(23,23,25,.98));
    border-bottom:1px solid rgba(255,255,255,.08);
}

.purchase-hero-content h1{
    margin:0 0 14px;
    color:#ffffff;
    font-size:2rem;
    line-height:1.1;
}

.purchase-hero-content p{
    margin:0;
    max-width:620px;
    color:#bdbdbd;
    font-size:1rem;
    line-height:1.75;
}

.purchase-current-summary{
    background:#18181b;
    border:1px solid rgba(243,188,23,.24);
    border-radius:20px;
    padding:24px;
}

.purchase-current-label{
    display:block;
    color:#f3bc17;
    font-size:.72rem;
    font-weight:800;
    letter-spacing:.14em;
    text-transform:uppercase;
    margin-bottom:10px;
}

.purchase-current-summary h2{
    margin:0 0 14px;
    color:#ffffff;
    font-size:1.45rem;
    line-height:1.15;
}

.purchase-current-dates{
    display:grid;
    gap:7px;
    margin-bottom:20px;
    color:#a9a9a9;
    font-size:.9rem;
}

.purchase-current-dates strong{
    color:#ffffff;
}

.purchase-current-price{
    padding-top:18px;
    border-top:1px solid rgba(255,255,255,.08);
    text-align:left;
}

.purchase-current-price small{
    display:block;
    color:#f3bc17;
    font-size:.76rem;
    font-weight:800;
    letter-spacing:.08em;
    margin-bottom:6px;
}

.purchase-current-price strong{
    display:block;
    color:#ffffff;
    font-size:1.85rem;
    line-height:1;
}

.purchase-current-empty{
    margin:0;
    color:#aaa;
    font-size:.92rem;
    line-height:1.6;
}

.purchase-history-box{
    background:#1f1f22;
    border:0;
    border-radius:0;
    overflow:hidden;
}

@media (max-width:900px){
    .purchase-hero-box{
        grid-template-columns:1fr;
        padding:26px;
    }
}

@media (max-width:768px){
    .purchase-hero-box{
        padding:22px;
    }

    .purchase-hero-content h1{
        font-size:1.65rem;
    }
}

.purchase-page-card{
    background:linear-gradient(135deg, rgba(20,20,20,.98), rgba(12,12,12,.98));
    border:1px solid rgba(255,255,255,.12);
    border-radius:14px;
    padding:30px;
    box-shadow:0 24px 70px rgba(0,0,0,.45);
}

.purchase-page-head{
    margin:0 0 30px;
}

.purchase-page-head span,
.purchase-card-head span{
    display:block;
    color:#f3bc17;
    font-size:.8rem;
    letter-spacing:.14em;
    text-transform:uppercase;
    margin-bottom:12px;
}

.purchase-page-head h1{
    margin:0 0 12px;
    color:#ffffff;
    font-size:2rem;
    font-weight:600;
    line-height:1.05;
}

.purchase-page-head p{
    margin:0;
    max-width:760px;
    color:#bdbdbd;
    line-height:1.7;
}

.purchase-card{
    background:rgba(24,24,24,.92);
    border:1px solid rgba(255,255,255,.12);
    border-radius:22px;
    padding:28px;
}

.purchase-card + .purchase-card{
    margin-top:26px;
}

.purchase-card-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:24px;
    margin-bottom:26px;
}

.purchase-card-head h2{
    margin:0;
    color:#ffffff;
    font-size:1.6rem;
    font-weight:600;
    line-height:1.15;
}

.purchase-card-head p{
    margin:10px 0 0;
    color:#aaa;
    font-size:.98rem;
    line-height:1.6;
}

.purchase-active-price{
    text-align:right;
    min-width:160px;
}

.purchase-active-price small{
    display:block;
    color:#f3bc17;
    font-size:.78rem;
    letter-spacing:.08em;
    margin-bottom:6px;
}

.purchase-active-price strong{
    display:block;
    color:#ffffff;
    font-size:1.6rem;
    line-height:1;
    font-weight: 600;
}

.purchase-active-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:18px;
}

.purchase-info-item{
    background:#121212;
    border:1px solid rgba(255,255,255,.12);
    border-radius:16px;
    padding:18px;
}

.purchase-info-item span{
    display:block;
    color:#8f8f8f;
    font-size:.78rem;
    letter-spacing:.06em;
    margin-bottom:9px;
}

.purchase-info-item strong{
    display:block;
    color:#ffffff;
    font-size:1rem;
    font-weight:400;
}

.purchase-empty-inline{
    background:#121212;
    border:1px solid rgba(255,255,255,.1);
    border-radius:16px;
    padding:20px;
}

.purchase-empty-inline p{
    margin:0;
    color:#aaa;
    font-size:1rem;
    line-height:1.6;
}

.purchase-table-scroll{
    overflow-x:auto;
}

.purchase-history-table{
    width:100%;
    border-collapse:collapse;
    min-width:820px;
}

.purchase-history-table th{
    padding:16px 15px;
    color:#f3bc17;
    font-size:.72rem;
    letter-spacing:.08em;
    text-align:left;
    border-bottom:1px solid rgba(255,255,255,.12);
    font-weight: 400;
}

.purchase-history-table td{
    padding:18px 15px;
    color:#d7d7d7;
    font-size:.92rem;
    border-bottom:1px solid rgba(255,255,255,.08);
    vertical-align:middle;
}

.purchase-history-table tr:last-child td{
    border-bottom:0;
}

.purchase-plan-cell strong,
.purchase-money-cell strong,
.purchase-date-cell strong{
    display:block;
    color:#ffffff;
    font-size:.98rem;
    margin-bottom:5px;
    font-weight: 400;
}

.purchase-plan-cell span{
    display:inline-flex;
    align-items:center;
    background:rgba(243,188,23,.14);
    border:1px solid rgba(243,188,23,.35);
    color:#f3bc17;
    border-radius:999px;
    padding:4px 9px;
    font-size:.68rem;
    font-weight:900;
    letter-spacing:.04em;
    text-transform:uppercase;
}

.purchase-money-cell span,
.purchase-date-cell span{
    display:block;
    color:#d7d7d7;
    font-size:.92rem;
}

.purchase-status{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    min-width:88px;
    padding:7px 10px;
    border-radius:999px;
    font-size:.7rem;
    font-weight:900;
    letter-spacing:.04em;
    text-transform:uppercase;
}

.purchase-status.paid{
    background:rgba(46,204,113,.14);
    color:#2ecc71;
    border:1px solid rgba(46,204,113,.32);
}

.purchase-status.pending{
    background:rgba(243,188,23,.14);
    color:#f3bc17;
    border:1px solid rgba(243,188,23,.32);
}

.purchase-status.cancelled,
.purchase-status.expired,
.purchase-status.failed{
    background:rgba(231,76,60,.14);
    color:#e74c3c;
    border:1px solid rgba(231,76,60,.32);
}

.purchase-empty-box{
    padding:38px 20px;
    text-align:center;
    background:#121212;
    border:1px solid rgba(255,255,255,.1);
    border-radius:16px;
}

.purchase-empty-box h3{
    margin:0 0 8px;
    color:#ffffff;
    font-size:1.15rem;
}

.purchase-empty-box p{
    margin:0;
    color:#aaa;
    font-size:.94rem;
}

@media (max-width:1024px){
    .purchase-active-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media (max-width:768px){
    .purchase-page-card{
        padding:22px;
        border-radius:22px;
    }

    .purchase-page-head h1{
        font-size:1.8rem;
    }

    .purchase-page-head p{
        font-size:1rem;
    }

    .purchase-card{
        padding:22px;
        border-radius:18px;
    }

    .purchase-card-head{
        display:block;
    }

    .purchase-active-price{
        text-align:left;
        margin-top:20px;
    }

    .purchase-active-grid{
        grid-template-columns:1fr;
    }
}

.purchase-card-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:24px;
}

.purchase-upgrade-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:48px;
    padding:0 22px;
    border-radius:999px;
    background:#f3bc17;
    color:#111;
    text-decoration:none;
    font-size:.82rem;
    font-weight:800;
    letter-spacing:.06em;
    text-transform:uppercase;
    white-space:nowrap;
    transition:.2s ease;
}

.purchase-upgrade-btn:hover{
    transform:translateY(-1px);
    box-shadow:0 8px 20px rgba(243,188,23,.25);
}

@media (max-width:768px){

    .purchase-card-head{
        flex-direction:column;
        align-items:flex-start;
    }

    .purchase-upgrade-btn{
        width:100%;
    }
}

.purchase-card-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:20px;
}

@media (max-width:768px){
    .purchase-card-head{
        flex-direction:column;
        align-items:flex-start;
    }
}

.membership-current-strip{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
    margin:0 0 28px;
}

.membership-current-strip > div{
    padding:20px;
    border-radius:16px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.10);
}

.membership-current-strip span{
    display:block;
    color:#f3bc17;
    font-size:.72rem;
    letter-spacing:.12em;
    text-transform:uppercase;
    margin-bottom:8px;
}

.membership-current-strip strong{
    display:block;
    color:#fff;
    font-size:1rem;
    font-weight:500;
}

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

.membership-plan-card{
    position:relative;
    display:flex;
    flex-direction:column;
    min-height:100%;
    padding:26px;
    border-radius:22px;
    background:rgba(24,24,24,.92);
    border:1px solid rgba(255,255,255,.12);
}

.membership-plan-card.is-current{
    border-color:rgba(243,188,23,.45);
    background:linear-gradient(180deg, rgba(243,188,23,.09), rgba(24,24,24,.92));
}

.membership-current-badge{
    position:absolute;
    top:18px;
    right:18px;
    padding:6px 10px;
    border-radius:999px;
    color:#111;
    background:#f3bc17;
    font-size:.68rem;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.06em;
}

.membership-plan-top span{
    display:block;
    color:#f3bc17;
    font-size:.72rem;
    letter-spacing:.12em;
    text-transform:uppercase;
    margin-bottom:10px;
}

.membership-plan-top h2{
    margin:0 0 12px;
    color:#fff;
    font-size:1.55rem;
    font-weight:600;
}

.membership-plan-top p{
    margin:0 0 22px;
    color:#aaa;
    font-size:.95rem;
    line-height:1.6;
}

.membership-plan-price{
    padding:20px 0;
    border-top:1px solid rgba(255,255,255,.10);
    border-bottom:1px solid rgba(255,255,255,.10);
    margin-bottom:22px;
}

.membership-plan-price small{
    display:block;
    color:#f3bc17;
    font-size:.75rem;
    letter-spacing:.08em;
    margin-bottom:6px;
}

.membership-plan-price strong{
    color:#fff;
    font-size:2rem;
    font-weight:600;
}

.membership-plan-features{
    display:grid;
    gap:12px;
    margin-bottom:26px;
}

.membership-plan-features div{
    display:flex;
    justify-content:space-between;
    gap:16px;
    padding-bottom:10px;
    border-bottom:1px solid rgba(255,255,255,.07);
}

.membership-plan-features span{
    color:#aaa;
    font-size:.9rem;
}

.membership-plan-features strong{
    color:#fff;
    font-size:.9rem;
    font-weight:500;
}

.membership-plan-action{
    margin-top:auto;
}

.membership-plan-action form,
.membership-plan-action .btn{
    width:100%;
}

.membership-plan-action .btn{
    min-height:50px;
}

.membership-plan-action .btn:disabled{
    opacity:.55;
    cursor:not-allowed;
    transform:none;
}

@media(max-width:1100px){
    .membership-plans-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
}

@media(max-width:760px){
    .membership-current-strip,
    .membership-plans-grid{
        grid-template-columns:1fr;
    }
}

.dj-info-page{
    background:
        radial-gradient(circle at top right, rgba(201,154,74,.14), transparent 34%),
        #050505;
    color:#fff;
}

.dj-info-hero{
    padding:60px 0 32px;
}

.dj-info-hero-card{
    display:grid;
    grid-template-columns:1fr 520px;
    gap:34px;
    align-items:stretch;

    padding:34px;

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

    background:
        linear-gradient(135deg, rgba(20,20,20,.98), rgba(12,12,12,.98));

    box-shadow:0 24px 70px rgba(0,0,0,.45);
}

.dj-info-hero-content{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.dj-info-hero-content > span,
.dj-info-panel > span,
.dj-info-section-head > span,
.dj-info-final-card span{
    display:block;
    color:#f3bc17;
    font-size:.8rem;
    letter-spacing:.14em;
    text-transform:uppercase;
    margin-bottom:12px;
}

.dj-info-hero-content h1{
    margin:0 0 18px;
    color:#fff;
    font-size:clamp(2rem, 4vw, 4.2rem);
    line-height:1.04;
    font-weight:700;
}

.dj-info-text{
    max-width:780px;
    color:#d7d7d7;
    font-size:1rem;
    line-height:1.8;
}

.dj-info-text p{
    margin:0 0 16px;
}

.dj-info-actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:28px;
}

.dj-info-hero-image{
    min-height:420px;
    border-radius:14px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.10);
    background:#111;
}

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

.dj-info-panels-section{
    padding:0 0 32px;
}

.dj-info-panels{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
}

.dj-info-panel{
    padding:30px;
    border-radius:22px;
    background:rgba(24,24,24,.92);
    border:1px solid rgba(255,255,255,.12);
}

.dj-info-panel h2{
    margin:0 0 14px;
    color:#fff;
    font-size:1.6rem;
    font-weight:600;
}

.dj-info-panel-text{
    color:#bdbdbd;
    line-height:1.75;
    font-size:.98rem;
}

.dj-info-panel-text p{
    margin:0 0 14px;
}

.dj-info-panel-text ul,
.dj-info-panel-text ol{
    margin:0;
    padding-left:20px;
}

.dj-info-panel-text li{
    margin-bottom:10px;
}

.dj-info-plans-section{
    padding:28px 0 36px;
}

.dj-info-section-head{
    margin:0 0 28px;
}

.dj-info-section-head h2{
    margin:0 0 12px;
    color:#fff;
    font-size:2rem;
    font-weight:600;
}

.dj-info-section-head p{
    margin:0;
    max-width:760px;
    color:#bdbdbd;
    line-height:1.7;
}

.public-plans-grid{
    margin-top:0;
}

.dj-info-final-section{
    padding:0 0 70px;
}

.dj-info-final-card{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:28px;

    padding:34px;

    border-radius:22px;
    border:1px solid rgba(243,188,23,.28);

    background:
        linear-gradient(90deg, rgba(0,0,0,.94), rgba(0,0,0,.72)),
        url('../images/dj-crowd.png') center/cover no-repeat;
}

.dj-info-final-card h2{
    margin:0 0 12px;
    color:#fff;
    font-size:1.8rem;
    font-weight:600;
}

.dj-info-final-card p{
    margin:0;
    max-width:780px;
    color:#d7d7d7;
    line-height:1.7;
}

.dj-info-final-card .btn{
    flex-shrink:0;
}

@media(max-width:1100px){
    .dj-info-hero-card{
        grid-template-columns:1fr;
    }

    .dj-info-hero-image{
        min-height:340px;
    }
}

@media(max-width:900px){
    .dj-info-panels{
        grid-template-columns:1fr;
    }

    .dj-info-final-card{
        align-items:flex-start;
        flex-direction:column;
    }

    .dj-info-final-card .btn{
        width:100%;
    }
}

@media(max-width:700px){
    .dj-info-hero{
        padding:34px 0 24px;
    }

    .dj-info-hero-card{
        padding:24px;
    }

    .dj-info-hero-image{
        min-height:260px;
    }

    .dj-info-actions .btn{
        width:100%;
    }

    .dj-info-panel{
        padding:24px;
    }
}

.about-page{
    background:
        radial-gradient(circle at top right, rgba(201,154,74,.14), transparent 34%),
        #050505;
    color:#fff;
}

.about-hero{
    padding:60px 0 32px;
}

.about-hero-card{
    display:grid;
    grid-template-columns:520px 1fr;
    gap:34px;
    align-items:stretch;

    padding:34px;

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

    background:
        linear-gradient(135deg, rgba(20,20,20,.98), rgba(12,12,12,.98));

    box-shadow:0 24px 70px rgba(0,0,0,.45);
}

.about-hero-image{
    min-height:420px;
    border-radius:14px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.10);
    background:#111;
}

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

.about-hero-content{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.about-hero-content > span,
.about-panel span{
    display:block;
    color:#f3bc17;
    font-size:.8rem;
    letter-spacing:.14em;
    text-transform:uppercase;
    margin-bottom:12px;
}

.about-hero-content h1{
    margin:0 0 18px;
    color:#fff;
    font-size:clamp(2rem, 4vw, 4rem);
    line-height:1.04;
    font-weight:700;
}

.about-text{
    max-width:780px;
    color:#d7d7d7;
    font-size:1rem;
    line-height:1.8;
}

.about-text p{
    margin:0 0 16px;
}

.about-panels-section{
    padding:0 0 70px;
}

.about-panels{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
}

.about-panel{
    min-height:100%;
    padding:30px;
    border-radius:22px;
    background:rgba(24,24,24,.92);
    border:1px solid rgba(255,255,255,.12);
}

.about-panel-content{
    height:100%;
    display:flex;
    flex-direction:column;
}

.about-panel h2{
    margin:0 0 16px;
    color:#fff;
    font-size:1.6rem;
    font-weight:600;
    line-height:1.2;
}

.about-panel-image{
    height:180px;
    margin:0 0 20px;
    overflow:hidden;
    border-radius:14px;
    border:1px solid rgba(255,255,255,.10);
    background:#111;
}

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

.about-panel-text{
    color:#bdbdbd;
    line-height:1.75;
    font-size:.98rem;
}

.about-panel-text p{
    margin:0 0 14px;
}

.about-panel-text ul,
.about-panel-text ol{
    margin:0;
    padding-left:20px;
}

.about-panel-text li{
    margin-bottom:10px;
}

.about-panel-actions{
    margin-top:auto;
    padding-top:24px;
}

.about-panel-actions .btn{
    min-width:190px;
}

@media(max-width:1100px){
    .about-hero-card{
        grid-template-columns:1fr;
    }

    .about-hero-image{
        min-height:340px;
    }
}

@media(max-width:900px){
    .about-panels{
        grid-template-columns:1fr;
    }
}

@media(max-width:700px){
    .about-hero{
        padding:34px 0 24px;
    }

    .about-hero-card{
        padding:24px;
    }

    .about-hero-image{
        min-height:260px;
    }

    .about-panel{
        padding:24px;
    }

    .about-panel-actions .btn{
        width:100%;
    }
}

.password-field {
    position: relative;
}

.password-field input {
    padding-right: 48px;
}

.password-toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    cursor: pointer;
    color: #777;
    font-size: 16px;
}

.password-toggle:hover {
    color: #f3bc17;
}

.auth-input-wrap.password-field {
    position: relative;
}

.auth-input-wrap.password-field input {
    padding-right: 48px;
}

.auth-input-wrap .password-toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    padding: 0;
    margin: 0;
    cursor: pointer;
    color: #777;
    font-size: 16px;
    line-height: 1;
    z-index: 2;
}

.auth-input-wrap .password-toggle:hover {
    color: #f3bc17;
}
