/* ============================================================================
   Artistas Page – Black & White Platinum Theme
   Monochrome palette with silver/platinum accents
   ============================================================================ */

/* Full-Screen Layout */
.artist-select-screen {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    background: radial-gradient(ellipse at 30% 40%, rgba(30, 30, 30, 0.5) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 60%, rgba(20, 20, 20, 0.3) 0%, transparent 50%),
                linear-gradient(180deg, #0a0a0a 0%, #111111 50%, #080808 100%);
    padding-top: 80px;
}

.artist-select-screen::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 200, 200, 0.02) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Ambient particles */
.ambient-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(200, 200, 200, 0.3);
    border-radius: 50%;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% { transform: translateY(100vh) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-20px) translateX(30px); opacity: 0; }
}

/* ---- TOP DISPLAY AREA ---- */
.select-display {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    padding: 1rem;
    gap: 1.5rem;
}

@media (min-width: 992px) {
    .select-display {
        flex-direction: row;
        align-items: stretch;
        justify-content: center;
        gap: 2rem;
        padding: 1rem 4rem;
    }
}

/* ---- LEFT: Large Artist Image ---- */
.select-image-panel {
    position: relative;
    width: 100%;
    max-width: 300px;
    height: 320px;
    flex-shrink: 0;
}

@media (min-width: 992px) {
    .select-image-panel {
        max-width: 360px;
        height: 440px;
    }
}

.select-image-placeholder {
    position: absolute;
    inset: 0;
    border-radius: 6px;
    background: linear-gradient(145deg, rgba(22, 22, 22, 0.95), rgba(10, 10, 10, 0.98));
    border: 1px solid rgba(200, 200, 200, 0.08);
    overflow: hidden;
    opacity: 0;
    transform: scale(0.92) translateX(-30px);
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7),
                inset 0 0 60px rgba(200, 200, 200, 0.01);
}

.select-image-placeholder.active {
    opacity: 1;
    transform: scale(1) translateX(0);
    pointer-events: auto;
    z-index: 2;
}

.placeholder-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    border: 1px dashed rgba(200, 200, 200, 0.08);
    margin: 12px;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    border-radius: 4px;
}

.placeholder-inner i {
    font-size: 4rem;
    color: rgba(200, 200, 200, 0.08);
}

.placeholder-inner span {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: rgba(200, 200, 200, 0.12);
    text-transform: uppercase;
}

/* ---- CENTER: Name Badge + Description ---- */
.select-center-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    flex: 1;
    max-width: 380px;
    min-width: 0;
}

.select-name-badge {
    text-align: left;
    pointer-events: none;
    display: block;
}

.name-badge-genre {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: rgba(200, 200, 200, 0.45);
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.name-badge-label {
    font-family: var(--font-heading);
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: rgba(200, 200, 200, 0.2);
    text-transform: uppercase;
    margin-bottom: 0.15rem;
}

.name-badge-name {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1;
    text-shadow: 0 0 40px rgba(200, 200, 200, 0.1);
    /* Platinum metallic gradient */
    background: linear-gradient(
        to bottom,
        #d0d0d0 0%,
        #ffffff 25%,
        #888888 50%,
        #cccccc 75%,
        #ffffff 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(3px 3px 0 rgba(0,0,0,0.6));
}

@media (min-width: 992px) {
    .name-badge-name { font-size: 3rem; }
}

/* Description Panel */
.select-description {
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(200, 200, 200, 0.06);
    border-radius: 4px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.description-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: rgba(200, 200, 200, 0.03);
    border-bottom: 1px solid rgba(200, 200, 200, 0.06);
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: rgba(200, 200, 200, 0.4);
    text-transform: uppercase;
}

.description-header i {
    font-size: 0.7rem;
    color: rgba(200, 200, 200, 0.3);
}

.description-text {
    padding: 1rem 1.2rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(200, 200, 200, 0.5);
    margin: 0;
    transition: opacity 0.4s ease;
}

/* ---- RIGHT: Stats Panel ---- */
.select-stats-panel {
    width: 100%;
    max-width: 340px;
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(200, 200, 200, 0.06);
    border-radius: 4px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
    align-self: center;
}

.stats-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: rgba(200, 200, 200, 0.03);
    border-bottom: 1px solid rgba(200, 200, 200, 0.06);
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: rgba(200, 200, 200, 0.4);
    text-transform: uppercase;
}

.stats-header i {
    font-size: 0.7rem;
    color: rgba(200, 200, 200, 0.3);
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 1rem;
    border-bottom: 1px solid rgba(200, 200, 200, 0.04);
    transition: background 0.3s ease;
}

.stat-row:last-child { border-bottom: none; }

.stat-row.highlight {
    background: rgba(200, 200, 200, 0.04);
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(200, 200, 200, 0.3);
    border: 1px solid rgba(200, 200, 200, 0.08);
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    background: rgba(200, 200, 200, 0.02);
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    color: #fff;
    text-align: right;
    letter-spacing: 0.02em;
}

.stat-row.highlight .stat-value {
    background: linear-gradient(90deg, #c0c0c0, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rank-badge {
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
    background: linear-gradient(135deg, rgba(200, 200, 200, 0.12), rgba(150, 150, 150, 0.06)) !important;
    border: 1px solid rgba(200, 200, 200, 0.15);
    -webkit-text-fill-color: initial !important;
    color: rgba(230, 230, 230, 0.9) !important;
    font-size: 0.8rem !important;
}

/* ============================================================================
   BOTTOM CARD ROW (Straight)
   ============================================================================ */
.select-card-arc {
    width: 100%;
    padding: 0.5rem 0 0 0;
    position: relative;
    z-index: 15;
    overflow: visible;
}

.arc-track {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 8px;
    position: relative;
    height: 180px;
    padding: 0 2rem;
}

@media (min-width: 992px) {
    .arc-track {
        height: 210px;
    }
}

/* ---- Individual Card ---- */
.arc-card {
    width: 80px;
    height: 110px;
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    flex-shrink: 0;
    filter: grayscale(100%) brightness(0.35);
    transform-origin: bottom center;
}

@media (min-width: 768px) {
    .arc-card { width: 95px; height: 132px; }
}

@media (min-width: 992px) {
    .arc-card { width: 105px; height: 148px; }
}

.arc-card-face {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    border: 1px solid rgba(200, 200, 200, 0.06);
    background: linear-gradient(170deg, rgba(22, 22, 22, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.arc-card-face::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(200, 200, 200, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.arc-card-number {
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: rgba(200, 200, 200, 0.15);
}

.arc-card-face i {
    font-size: 1.5rem;
    color: rgba(200, 200, 200, 0.1);
    transition: all 0.4s ease;
}

@media (min-width: 992px) {
    .arc-card-face i { font-size: 1.8rem; }
}

.arc-card-label {
    font-family: var(--font-heading);
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(200, 200, 200, 0.12);
    transition: all 0.4s ease;
    text-align: center;
    line-height: 1.2;
}

@media (min-width: 992px) {
    .arc-card-label { font-size: 0.6rem; }
}

/* ---- ACTIVE / SELECTED CARD ---- */
.arc-card.active {
    filter: grayscale(0%) brightness(1);
    z-index: 20;
    transform: translateY(-10px) scale(1.1);
}

.arc-card.active .arc-card-face {
    border-color: rgba(200, 200, 200, 0.25);
    box-shadow: 0 0 25px rgba(200, 200, 200, 0.1),
                0 10px 30px rgba(0, 0, 0, 0.6),
                inset 0 0 20px rgba(200, 200, 200, 0.02);
    background: linear-gradient(170deg, rgba(30, 30, 30, 0.95) 0%, rgba(15, 15, 15, 0.98) 100%);
}

.arc-card.active .arc-card-face i {
    color: rgba(220, 220, 220, 0.8);
    text-shadow: 0 0 12px rgba(200, 200, 200, 0.3);
}

.arc-card.active .arc-card-number {
    color: rgba(220, 220, 220, 0.5);
}

.arc-card.active .arc-card-label {
    color: rgba(220, 220, 220, 0.7);
}

/* ---- HOVER (non-active cards) ---- */
.arc-card:not(.active):hover {
    filter: grayscale(30%) brightness(0.65);
}

.arc-card:not(.active):hover .arc-card-face {
    border-color: rgba(200, 200, 200, 0.12);
}

/* ============================================================================
   BOTTOM INFO BAR
   ============================================================================ */
.select-info-bar {
    width: 100%;
    background: rgba(5, 5, 5, 0.95);
    border-top: 1px solid rgba(200, 200, 200, 0.06);
    padding: 0.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 20;
}

.info-bar-label {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: rgba(200, 200, 200, 0.5);
    text-transform: uppercase;
    background: rgba(200, 200, 200, 0.04);
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    border: 1px solid rgba(200, 200, 200, 0.1);
    flex-shrink: 0;
}

.info-bar-text {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: rgba(200, 200, 200, 0.4);
    letter-spacing: 0.02em;
    flex: 1;
}

.info-bar-controls {
    display: none;
    align-items: center;
    gap: 1.2rem;
}

@media (min-width: 768px) {
    .info-bar-controls { display: flex; }
}

.control-hint {
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: 600;
    color: rgba(200, 200, 200, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.control-hint i {
    font-size: 0.55rem;
    color: rgba(200, 200, 200, 0.3);
    background: rgba(200, 200, 200, 0.04);
    padding: 0.15rem 0.3rem;
    border-radius: 2px;
    border: 1px solid rgba(200, 200, 200, 0.08);
}

/* ============================================================================
   MOBILE RESPONSIVE
   ============================================================================ */
@media (max-width: 767px) {
    .artist-select-screen {
        height: auto;
        min-height: 100vh;
        padding-top: 70px;
    }
    .select-display {
        flex-direction: column;
        gap: 1rem;
        padding: 0.5rem 1rem;
    }
    .select-image-panel { max-width: 240px; height: 260px; }
    .select-center-panel { max-width: 100%; }
    .select-stats-panel { max-width: 100%; }
    .name-badge-name { font-size: 1.8rem; }
    .arc-track { 
        height: auto; 
        padding: 1rem 0.5rem 2rem 0.5rem; 
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .arc-card { 
        width: 100%; 
        height: 90px; 
    }
    .arc-card-number { font-size: 0.5rem; }
    .arc-card-face i { font-size: 1.2rem; }
    .arc-card-label { font-size: 0.45rem; }
    .select-info-bar { padding: 0.4rem 1rem; }
    .info-bar-label { font-size: 0.55rem; }
    .info-bar-text { font-size: 0.7rem; }
}
