.find-bug-dialog-trigger {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s;
}

.find-bug-dialog-trigger:hover {
    transform: translateY(-2px);
}

.find-bug-choice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.find-bug-choice-item {
    aspect-ratio: 1;
    border: 3px solid #ddd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
}

.find-bug-choice-item:hover {
    transform: scale(1.05);
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.find-bug-choice-item.find-bug-selected {
    border-color: #28a745;
    background: #f0f8f4;
}

.find-bug-email-step, .find-bug-choice-step {
    display: none;
}

.find-bug-email-step.find-bug-active, .find-bug-choice-step.find-bug-active {
    display: block;
}

.find-bug-form-hidden {
    display: none !important;
}

.find-bug-dialog-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.find-bug-dialog-overlay.find-bug-active {
    display: flex;
}

.find-bug-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.find-bug-close-dialog {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.find-bug-close-dialog:hover {
    color: #333;
}

.find-bug-container h1 {
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.find-bug-game-description {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
    font-size: 15px;
}

.find-bug-step-indicator {
    text-align: center;
    color: #999;
    margin-bottom: 15px;
    font-size: 13px;
}

.find-bug-form-group {
    margin-bottom: 20px;
}

.find-bug-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: bold;
}

.find-bug-container input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.find-bug-container input[type="email"]:focus {
    outline: none;
    border-color: #667eea;
}

.find-bug-container button[type="submit"], .find-bug-container button[type="button"] {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s;
}

.find-bug-container button[type="submit"]:hover, .find-bug-container button[type="button"]:hover {
    transform: translateY(-2px);
}

.find-bug-result {
    margin-top: 30px;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.find-bug-result.find-bug-winner {
    background: #d4edda;
    border: 3px solid #28a745;
}

.find-bug-result.find-bug-loser {
    background: #f8d7da;
    border: 3px solid #dc3545;
}

.find-bug-result.find-bug-error {
    background: #fff3cd;
    border: 3px solid #ffc107;
}

.find-bug-bug-display {
    font-size: 80px;
    margin: 20px 0;
}

.find-bug-result h2 {
    margin-bottom: 10px;
}

.find-bug-winner h2 {
    color: #28a745;
}

.find-bug-loser h2 {
    color: #dc3545;
}

.find-bug-error h2 {
    color: #856404;
}