/* =========================
   CONTACT PAGE STYLES
   ========================= */

/* Bit display */
.bit-row {
    font-family: monospace;
    font-size: 15px;
    letter-spacing: 1px;
    white-space: nowrap;
    overflow: hidden;
}

.bit-target {
    color: rgba(120, 180, 255, 0.55);
    margin-bottom: 6px;
}

.bit-slider-row {
    color: rgba(120, 180, 255, 0.6);
    transition: all 0.2s ease;
}

.bit-slider-row.aligned {
    color: #00ff88;
    font-weight: 700;
}

/* Slider sizing */
#bit-slider {
    width: 280px;
    max-width: 90%;
    margin: 0 auto;
    display: block;
}

/* Unlock button active state */
.btn-sandwave-active {
    color: #ffffff !important;
    border-color: #00ff88 !important;
    box-shadow: 
        0 0 6px rgba(0, 255, 136, 0.4),
        0 0 12px rgba(0, 255, 136, 0.2);
    transition: all 0.25s ease;
}

/* Hover fix */
#unlock-contact.btn-outline-light:hover {
    background-color: rgba(0, 255, 136, 0.08) !important;
    color: #00ff88 !important;
    border-color: #00ff88 !important;
}

/* Pulse animation */
@keyframes sandwavePulse {
    0% {
        box-shadow: 0 0 6px rgba(0,255,136,0.3);
    }
    50% {
        box-shadow: 0 0 24px rgba(0,255,136,0.6);
    }
    100% {
        box-shadow: 0 0 6px rgba(0,255,136,0.3);
    }
}

.btn-sandwave-active.pulse {
    animation: sandwavePulse 2s infinite;
}

/* Copy icon */
.copy-btn {
    background: none;
    border: none;
    padding: 0;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--bs-light);
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.copy-btn:hover {
    opacity: 1;
}

/* Contact modal grid */
.contact-grid {
    display: grid;
    grid-template-columns: 140px 1fr;
    row-gap: 10px;
    column-gap: 10px;
    align-items: center;
}

.contact-grid .label {
    text-align: right;
    font-weight: 600;
    color: #ccc;
}

.contact-grid .value {
    text-align: left;
}

/* Modal logo */
.modal-logo {
    max-width: 150px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.modal-logo:hover {
    opacity: 1;
    transform: scale(1.03);
}

/* Explosion layer */
#bit-explosion-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

/* Bit particles */
.bit-particle {
    position: absolute;
    font-family: monospace;
    color: #00ff88;
    opacity: 1;
    text-shadow: 
        0 0 6px rgba(0,255,136,0.6),
        0 0 12px rgba(0,255,136,0.3);
    transition: 
        transform 5.6s cubic-bezier(0.05, 0.7, 0.1, 1),
        opacity 5.6s ease-out;
}