/* Pre-shooting specific styles */

.checklist-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checklist-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.checklist-item.completed {
    opacity: 0.6;
}

.checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid #3a3a52;
    border-radius: 6px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.checklist-item.completed .checkbox {
    background: #ff6b6b;
    border-color: #ff6b6b;
}

.breathing-circle {
    width: 200px;
    height: 200px;
    border: 4px solid #ff6b6b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto;
    animation: breathe 4s infinite;
}

@keyframes breathe {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

.breathing-text {
    font-size: 18px;
    font-weight: 600;
    color: #ff6b6b;
}

.breathing-counter {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.breathing-instruction {
    font-size: 16px;
    color: #a0a0a0;
    margin-bottom: 30px;
}

.stance-guide {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
}

.stance-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.stance-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.point-icon {
    width: 30px;
    height: 30px;
    background: #ff6b6b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 16px;
}

.point-text {
    flex: 1;
    color: #a0a0a0;
    line-height: 1.5;
}

.weapon-status {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.weapon-info {
    display: flex;
    align-items: center;
}

.weapon-icon {
    font-size: 32px;
    margin-right: 15px;
}

.weapon-details h3 {
    font-weight: 600;
    margin-bottom: 5px;
}

.weapon-details p {
    color: #a0a0a0;
    font-size: 14px;
}

.sensor-status {
    display: flex;
    align-items: center;
    color: #4ade80;
    font-size: 14px;
    font-weight: 600;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #4ade80;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 2s infinite;
}

.session-types {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}

.session-type {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 15px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.session-type:hover, .session-type.selected {
    border-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

.type-icon {
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
}

.type-name {
    font-size: 12px;
    font-weight: 600;
}

.confidence-meter {
    margin: 30px 0;
}

.confidence-title {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

.confidence-scale {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.confidence-option {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
}

.confidence-option:hover, .confidence-option.selected {
    border-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.2);
}

.confidence-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #a0a0a0;
}
