.clues-list {
    margin: 30px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 16px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.clue-row {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    transition: transform 0.2s ease;
}

.clue-row:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.clue-row .clue-link {
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.2s ease;
    background: #f8f9fa;
}

.clue-row .clue-link:hover {
    background: #f0f4f8;
    transform: translateX(5px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.clue-number {
    font-weight: 600;
    color: #2271b1;
    font-size: 18px;
    min-width: 35px;
    height: 35px;
    background: #e6f0f7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.clue-text {
    font-family: inherit;
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.clue-text-content {
    font-weight: 500;
}

.clue-dots {
    flex-grow: 1;
    height: 2px;
    background-image: linear-gradient(to right, #ccc 20%, transparent 20%);
    background-position: bottom;
    background-size: 8px 1px;
    background-repeat: repeat-x;
    margin: 0 15px;
}

.letter-count {
    font-weight: 500;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.letter-count i {
    color: #2271b1;
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    .clues-list {
        font-size: 14px;
        padding: 15px;
        margin: 20px 0;
    }
    
    .clue-row {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .clue-row .clue-link {
        padding: 8px 12px;
    }

    .clue-number {
        font-size: 16px;
        min-width: 30px;
        height: 30px;
        margin-right: 10px;
    }

    .clue-dots {
        margin: 0 10px;
    }
} 