/* ==========================================
   RAJA ELIT SUPER MANIAC PURPLE ELITE
   PRE-MARKET & MATRIX CSS
   ========================================== */

/* --- ELITE CHECKBOX PREP --- */
.prep-item-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-bottom: 1px dashed rgba(255,255,255,0.05);
}
.prep-item-row:hover {
    background: rgba(168, 85, 247, 0.05);
    transform: translateX(5px); /* Efek slide dikit pas kursor masuk */
}
.prep-item-row.completed p.prep-text {
    color: #555 !important;
    text-decoration: line-through;
    text-decoration-color: #a855f7; /* Garis coretnya warna ungu */
}

/* Sembunyiin Checkbox Asli */
.prep-checkbox-hidden {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Custom Checkbox Kotak */
.prep-custom-checkbox {
    width: 20px;
    height: 20px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2px;
    flex-shrink: 0;
}

.prep-item-row:hover .prep-custom-checkbox {
    border-color: #c084fc;
    box-shadow: 0 0 12px rgba(192, 132, 252, 0.3);
}

.prep-checkbox-hidden:checked ~ .prep-custom-checkbox {
    background: rgba(168, 85, 247, 0.2);
    border-color: #a855f7;
    box-shadow: inset 0 0 10px rgba(168, 85, 247, 0.4);
}

.prep-checkbox-hidden:checked ~ .prep-custom-checkbox::after {
    content: '\f00c'; /* FontAwesome Check Icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #d8b4fe;
    font-size: 11px;
    text-shadow: 0 0 10px rgba(216, 180, 254, 0.8);
}

/* --- ELITE EXECUTION MATRIX CSS --- */
.prep-matrix-title {
    font-size: 10px;
    font-weight: 900;
    color: #c084fc; /* Elite Purple */
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-family: monospace;
    text-shadow: 0 0 10px rgba(192, 132, 252, 0.3);
}

.prep-btn-group {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.prep-btn-group.multi-wrap {
    flex-wrap: wrap;
}

.prep-tag-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #a1a1aa;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 10px;
    font-family: monospace;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
}

.prep-tag-btn:hover {
    background: rgba(192, 132, 252, 0.05);
    border-color: rgba(192, 132, 252, 0.4);
    color: #fff;
    transform: translateY(-2px);
}

/* State Aktif (Nyala Elite Purple Berkelas) */
.prep-tag-btn.active {
    background: rgba(168, 85, 247, 0.15);
    border-color: #a855f7;
    color: #d8b4fe;
    box-shadow: inset 0 0 15px rgba(168, 85, 247, 0.2), 0 0 10px rgba(168, 85, 247, 0.4);
    transform: translateY(-2px) scale(1.05);
}

.prep-matrix-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    padding: 12px 15px;
    border-radius: 8px;
    color: #a1a1aa;
    font-family: monospace;
    font-size: 11px;
    outline: none;
    transition: all 0.3s ease;
}

.prep-matrix-input:focus {
    border: 1px solid #c084fc;
    background: rgba(20, 15, 30, 0.8);
    color: #fff;
    box-shadow: 0 0 15px rgba(192, 132, 252, 0.2);
}

/* --- THE ULTIMATE START BUTTON --- */
.prep-start-btn {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(192, 132, 252, 0.1));
    border: 1px solid #a855f7;
    color: #d8b4fe;
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 3px;
    font-family: monospace;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.prep-start-btn:hover:not(.disabled) {
    background: linear-gradient(135deg, #a855f7, #c084fc);
    color: #fff;
    border-color: #d8b4fe;
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.6);
    transform: translateY(-3px) scale(1.02);
}

.prep-start-btn.disabled {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #555;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}