/* Honesty Floating Button */
.honesty-float-button {
    position: fixed;
    bottom: 260px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 
        0 10px 30px rgba(251, 191, 36, 0.4),
        0 0 40px rgba(251, 191, 36, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 9997;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.honesty-float-button:hover {
    animation-play-state: paused;
    transform: scale(1.05);
    box-shadow: 
        0 15px 40px rgba(251, 191, 36, 0.5),
        0 0 50px rgba(251, 191, 36, 0.3),
        0 5px 20px rgba(0, 0, 0, 0.4);
}

.honesty-float-button svg {
    width: 30px;
    height: 30px;
}

/* Honesty Tooltip */
.honesty-tooltip {
    position: absolute;
    bottom: -40px;
    right: 80px;
    background: rgba(5, 6, 20, 0.95);
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.honesty-float-button:hover .honesty-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-5px);
}

/* Honesty Modal */
.honesty-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 20px;
}

.honesty-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.honesty-modal {
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    background: linear-gradient(180deg, #1a1f3a 0%, #0a0e27 100%);
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(251, 191, 36, 0.2);
    transform: scale(0.9);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.honesty-modal-overlay.active .honesty-modal {
    transform: scale(1);
}

/* Honesty Modal Header */
.honesty-modal-header {
    padding: 20px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, transparent 100%);
    border-bottom: 1px solid rgba(251, 191, 36, 0.2);
    position: relative;
    text-align: center;
}

.honesty-modal-title {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 800;
    color: #fbbf24;
    margin: 0;
}

.honesty-modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.honesty-modal-close:hover {
    background: rgba(255, 68, 68, 0.2);
    border-color: rgba(255, 68, 68, 0.4);
    transform: rotate(90deg);
}

.honesty-modal-close svg {
    width: 20px;
    height: 20px;
    stroke: #ffffff;
    stroke-width: 2;
}

/* Honesty Modal Content */
.honesty-modal-content {
    padding: 25px;
    overflow-y: auto;
    max-height: calc(90vh - 150px);
}

.honesty-modal-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    text-align: center;
}

.honesty-modal-content > p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    line-height: 1.5;
    margin-bottom: 2rem;
}

/* Honesty Points */
.honesty-points {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.honesty-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(251, 191, 36, 0.2);
    transition: all 0.3s ease;
}

.honesty-point:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.point-icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
}

.point-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fbbf24;
    margin: 0 0 0.375rem 0;
}

.point-content p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

/* Honesty Reminder */
.honesty-reminder {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
}

.honesty-reminder p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

.honesty-reminder strong {
    color: #fbbf24;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .honesty-float-button {
        bottom: 210px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .honesty-modal {
        width: 95%;
    }
    
    .honesty-modal-header {
        padding: 15px;
    }
    
    .honesty-modal-title {
        font-size: 1.25rem;
    }
    
    .honesty-modal-content {
        padding: 15px;
        max-height: calc(85vh - 120px);
    }
    
    .honesty-modal-content h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .honesty-modal-content > p {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }
    
    .honesty-points {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .honesty-point {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .point-icon {
        font-size: 1.5rem;
    }
    
    .point-content h4 {
        font-size: 1rem;
    }
    
    .point-content p {
        font-size: 0.75rem;
    }
    
    .honesty-reminder {
        padding: 1rem;
    }
    
    .honesty-reminder p {
        font-size: 1rem;
    }
}