.type-card {
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid transparent;
        border-radius: 10px;
        text-align: center;
        padding: 20px;
        height: 100%;
    }

    .type-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .type-card.active {
        border-color: #007bff;
        background-color: #f8f9fa;
        box-shadow: 0 5px 15px rgba(0, 123, 255, 0.2);
    }

    .type-card i {
        font-size: 3rem;
        display: block;
        margin-bottom: 15px;
    }

    .type-fan i {
        color: #28a745;
    }

    .type-radio i {
        color: #dc3545;
    }

    .type-artist i {
        color: #ffc107;
    }

    .type-card h5 {
        font-weight: bold;
        margin-bottom: 5px;
        text-decoration: underline;
        color: #4d87db;
    }

    .type-card p {
        font-size: 0.9rem;
        color: #6c757d;
        margin-bottom: 0;
    }

    .captcha-timer-text {
        display: inline-block;
        font-size: 12px;
        color: #8a8f98 !important;
        line-height: 1.2;
        transition: color 0.2s ease;
    }

    .captcha-timer-text.is-expired {
        color: #999 !important;
    }