 
        .tattoo-font {
            font-family: 'Permanent Marker', cursive;
        }
        
        .question-card {
            transition: all 0.3s ease;
            border-left: 4px solid var(--primary);
        }
        
        .question-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            border-left-color: var(--secondary);
        }
        
        .active-question {
            background-color: #f0f0f0;
            border-left: 4px solid var(--secondary);
        }
        
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .accordion-content.show {
            max-height: 500px;
        }
        
        .category-btn {
            transition: all 0.2s ease;
        }
        
        .category-btn.active {
            background-color: var(--secondary);
            color: white;
        } 